-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_db.log
625 lines (623 loc) · 25 KB
/
create_db.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
-------
29/56/2017 00:56:02
-------
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Client : 127.0.0.1
-- Généré le : Ven 28 Avril 2017 à 19:02
-- Version du serveur : 5.7.14
-- Version de PHP : 5.6.25
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"
SET time_zone = "+00:00"
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */
/*!40101 SET NAMES utf8mb4 */
--
-- Base de données : `projets2`
--
-- --------------------------------------------------------
drop database projets2 if exists
create database projets2
use projets2
--
-- Structure de la table `camion`
--
CREATE TABLE `camion` (
`idCamion` int(11) NOT NULL,
`Matricule` varchar(45) NOT NULL,
`idChauffeur` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
--
-- Contenu de la table `camion`
--
INSERT INTO `camion` (`idCamion`, `Matricule`, `idChauffeur`) VALUES
(2, '4545', 4),
(3, '8745', 2),
(4, '54545', 3)
-- --------------------------------------------------------
--
-- Structure de la table `chauffeur`
--
CREATE TABLE `chauffeur` (
`idChauffeur` int(11) NOT NULL,
`nom` varchar(50) DEFAULT NULL,
`numero` int(11) DEFAULT NULL,
`idCamion` int(11) DEFAULT NULL,
`disponible` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
--
-- Contenu de la table `chauffeur`
--
INSERT INTO `chauffeur` (`idChauffeur`, `nom`, `numero`, `idCamion`, `disponible`) VALUES
(1, 'Ammi Said', 662876545, 1, NULL),
(2, 'Ammi Boualem', 550876567, 2, NULL)
-- --------------------------------------------------------
--
-- Structure de la table `chc`
--
CREATE TABLE `chc` (
`idChauffeur` int(11) NOT NULL,
`idCamion` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
-- --------------------------------------------------------
--
-- Structure de la table `client`
--
CREATE TABLE `client` (
`idClient` int(32) NOT NULL,
`nom` varchar(50) NOT NULL,
`typee` varchar(20) DEFAULT NULL,
`partRevenu` double NOT NULL DEFAULT '0',
`frequence` int(32) NOT NULL DEFAULT '1',
`tel` varchar(10) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
`adresse` varchar(50) DEFAULT NULL,
`fixe` varchar(10) DEFAULT NULL,
`faxe` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
--
-- Contenu de la table `client`
--
INSERT INTO `client` (`idClient`, `nom`, `typee`, `partRevenu`, `frequence`, `tel`, `email`, `adresse`, `fixe`, `faxe`) VALUES
(65, 'habib', 'indiv', 0, 1, '12365896', 'fk_kechout@esi.dz', 'niouz_ali', 'null', 'null'),
(66, 'Apple', 'entreprise', 0, 1, '0666666666', 'Apple@email.com', 'California_LA', 'null', 'null'),
(67, 'Kareem', 'indiv', 0, 1, '00123123', 'fk_kar@esi.dz', 'Alger_OuedSmar', 'null', 'null'),
(68, 'Anes', 'entreprise', 11717, 1, '0992421', 'Anes@gmail.com', 'Algerie_kouba', 'null', 'null')
-- --------------------------------------------------------
--
-- Structure de la table `conteneur`
--
CREATE TABLE `conteneur` (
`NMC` varchar(50) NOT NULL,
`idDossier` int(11) DEFAULT NULL,
`numPlomb` int(11) DEFAULT NULL,
`typeTc` int(11) DEFAULT NULL,
`typeMarchandise` varchar(50) DEFAULT NULL,
`chauffeurEntree` varchar(50) DEFAULT NULL,
`camionEntree` int(11) DEFAULT NULL,
`factureAutorise` varchar(20) NOT NULL DEFAULT 'Ok',
`sortieAutorise` tinyint(1) NOT NULL DEFAULT '1',
`nbVisite` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1
--
-- Contenu de la table `conteneur`
--
INSERT INTO `conteneur` (`NMC`, `idDossier`, `numPlomb`, `typeTc`, `typeMarchandise`, `chauffeurEntree`, `camionEntree`, `factureAutorise`, `sortieAutorise`, `nbVisite`) VALUES
('EMD213123', 3, 99984, 20, 'Voiture', 'Aucun', 0, 'OK', 0, 0),
('EMDDV24324', 4, 34504, 40, 'Pcs,Tv', 'Aucun', 0, 'Suspect', 0, 1),
('EXLD2344', 6, 1192334, 20, 'Légumes', 'Ammi Said', 8745, 'OK', 1, 0)
-- --------------------------------------------------------
--
-- Structure de la table `ctfact`
--
CREATE TABLE `ctfact` (
`NMC` varchar(50) NOT NULL,
`idFacture` int(11) DEFAULT NULL,
`chauffeur` varchar(45) DEFAULT NULL,
`camion` varchar(45) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
-- --------------------------------------------------------
--
-- Structure de la table `dossier`
--
CREATE TABLE `dossier` (
`idDossier` int(11) NOT NULL,
`idClient` int(11) DEFAULT NULL,
`typee` varchar(10) DEFAULT NULL,
`provenance` varchar(50) DEFAULT NULL,
`dateEntree` date DEFAULT NULL,
`nbConteneur` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
--
-- Contenu de la table `dossier`
--
INSERT INTO `dossier` (`idDossier`, `idClient`, `typee`, `provenance`, `dateEntree`, `nbConteneur`) VALUES
(3, 65, 'OT', 'Haïti', '2017-04-24', 1),
(4, 65, 'DSTR', 'Allemagne', '2017-04-26', 1),
(6, 68, 'DSTR', 'Antarctique', '2017-04-27', 1)
-- --------------------------------------------------------
--
-- Structure de la table `douane`
--
CREATE TABLE `douane` (
`idAgent` int(11) NOT NULL,
`nom` varchar(50) NOT NULL,
`Badge` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
--
-- Contenu de la table `douane`
--
INSERT INTO `douane` (`idAgent`, `nom`, `Badge`) VALUES
(1, 'Ammi Boulemdayes', 978643),
(2, 'Hadj Bouguerra', 674689)
-- --------------------------------------------------------
--
-- Structure de la table `facture`
--
CREATE TABLE `facture` (
`idFacture` int(11) NOT NULL,
`drph` decimal(12,2) NOT NULL DEFAULT '0.00',
`ot` decimal(12,2) DEFAULT '0.00',
`datefact` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
--
-- Contenu de la table `facture`
--
INSERT INTO `facture` (`idFacture`, `drph`, `ot`, `datefact`) VALUES
(1, '0.00', '11717.00', '2017-04-28'),
(2, '0.00', '11717.00', '2017-04-28'),
(3, '0.00', '11717.00', '2017-04-28')
-- --------------------------------------------------------
--
-- Structure de la table `login`
--
CREATE TABLE `login` (
`username` varchar(50) DEFAULT NULL,
`password` varchar(50) DEFAULT NULL,
`super` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
--
-- Contenu de la table `login`
--
INSERT INTO `login` (`username`, `password`, `super`) VALUES
('root', 'toor', 1),
('karim', 'esi', 0)
-- --------------------------------------------------------
--
-- Structure de la table `pays`
--
CREATE TABLE `pays` (
`id` smallint(5) UNSIGNED NOT NULL,
`code` int(3) NOT NULL,
`alpha2` varchar(2) NOT NULL,
`alpha3` varchar(3) NOT NULL,
`nom_en_gb` varchar(45) NOT NULL,
`nom_fr_fr` varchar(45) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8
--
-- Contenu de la table `pays`
--
INSERT INTO `pays` (`id`, `code`, `alpha2`, `alpha3`, `nom_en_gb`, `nom_fr_fr`) VALUES
(1, 4, 'AF', 'AFG', 'Afghanistan', 'Afghanistan'),
(2, 8, 'AL', 'ALB', 'Albania', 'Albanie'),
(3, 10, 'AQ', 'ATA', 'Antarctica', 'Antarctique'),
(4, 12, 'DZ', 'DZA', 'Algeria', 'Algérie'),
(5, 16, 'AS', 'ASM', 'American Samoa', 'Samoa Américaines'),
(6, 20, 'AD', 'AND', 'Andorra', 'Andorre'),
(7, 24, 'AO', 'AGO', 'Angola', 'Angola'),
(8, 28, 'AG', 'ATG', 'Antigua and Barbuda', 'Antigua-et-Barbuda'),
(9, 31, 'AZ', 'AZE', 'Azerbaijan', 'Azerbaïdjan'),
(10, 32, 'AR', 'ARG', 'Argentina', 'Argentine'),
(11, 36, 'AU', 'AUS', 'Australia', 'Australie'),
(12, 40, 'AT', 'AUT', 'Austria', 'Autriche'),
(13, 44, 'BS', 'BHS', 'Bahamas', 'Bahamas'),
(14, 48, 'BH', 'BHR', 'Bahrain', 'Bahreïn'),
(15, 50, 'BD', 'BGD', 'Bangladesh', 'Bangladesh'),
(16, 51, 'AM', 'ARM', 'Armenia', 'Arménie'),
(17, 52, 'BB', 'BRB', 'Barbados', 'Barbade'),
(18, 56, 'BE', 'BEL', 'Belgium', 'Belgique'),
(19, 60, 'BM', 'BMU', 'Bermuda', 'Bermudes'),
(20, 64, 'BT', 'BTN', 'Bhutan', 'Bhoutan'),
(21, 68, 'BO', 'BOL', 'Bolivia', 'Bolivie'),
(22, 70, 'BA', 'BIH', 'Bosnia and Herzegovina', 'Bosnie-Herzégovine'),
(23, 72, 'BW', 'BWA', 'Botswana', 'Botswana'),
(24, 74, 'BV', 'BVT', 'Bouvet Island', 'Île Bouvet'),
(25, 76, 'BR', 'BRA', 'Brazil', 'Brésil'),
(26, 84, 'BZ', 'BLZ', 'Belize', 'Belize'),
(27, 86, 'IO', 'IOT', 'British Indian Ocean Territory', 'Territoire Britannique de l\'Océan Indien'),
(28, 90, 'SB', 'SLB', 'Solomon Islands', 'Îles Salomon'),
(29, 92, 'VG', 'VGB', 'British Virgin Islands', 'Îles Vierges Britanniques'),
(30, 96, 'BN', 'BRN', 'Brunei Darussalam', 'Brunéi Darussalam'),
(31, 100, 'BG', 'BGR', 'Bulgaria', 'Bulgarie'),
(32, 104, 'MM', 'MMR', 'Myanmar', 'Myanmar'),
(33, 108, 'BI', 'BDI', 'Burundi', 'Burundi'),
(34, 112, 'BY', 'BLR', 'Belarus', 'Bélarus'),
(35, 116, 'KH', 'KHM', 'Cambodia', 'Cambodge'),
(36, 120, 'CM', 'CMR', 'Cameroon', 'Cameroun'),
(37, 124, 'CA', 'CAN', 'Canada', 'Canada'),
(38, 132, 'CV', 'CPV', 'Cape Verde', 'Cap-vert'),
(39, 136, 'KY', 'CYM', 'Cayman Islands', 'Îles Caïmanes'),
(40, 140, 'CF', 'CAF', 'Central African', 'République Centrafricaine'),
(41, 144, 'LK', 'LKA', 'Sri Lanka', 'Sri Lanka'),
(42, 148, 'TD', 'TCD', 'Chad', 'Tchad'),
(43, 152, 'CL', 'CHL', 'Chile', 'Chili'),
(44, 156, 'CN', 'CHN', 'China', 'Chine'),
(45, 158, 'TW', 'TWN', 'Taiwan', 'Taïwan'),
(46, 162, 'CX', 'CXR', 'Christmas Island', 'Île Christmas'),
(47, 166, 'CC', 'CCK', 'Cocos (Keeling) Islands', 'Îles Cocos (Keeling)'),
(48, 170, 'CO', 'COL', 'Colombia', 'Colombie'),
(49, 174, 'KM', 'COM', 'Comoros', 'Comores'),
(50, 175, 'YT', 'MYT', 'Mayotte', 'Mayotte'),
(51, 178, 'CG', 'COG', 'Republic of the Congo', 'République du Congo'),
(52, 180, 'CD', 'COD', 'The Democratic Republic Of The Congo', 'République Démocratique du Congo'),
(53, 184, 'CK', 'COK', 'Cook Islands', 'Îles Cook'),
(54, 188, 'CR', 'CRI', 'Costa Rica', 'Costa Rica'),
(55, 191, 'HR', 'HRV', 'Croatia', 'Croatie'),
(56, 192, 'CU', 'CUB', 'Cuba', 'Cuba'),
(57, 196, 'CY', 'CYP', 'Cyprus', 'Chypre'),
(58, 203, 'CZ', 'CZE', 'Czech Republic', 'République Tchèque'),
(59, 204, 'BJ', 'BEN', 'Benin', 'Bénin'),
(60, 208, 'DK', 'DNK', 'Denmark', 'Danemark'),
(61, 212, 'DM', 'DMA', 'Dominica', 'Dominique'),
(62, 214, 'DO', 'DOM', 'Dominican Republic', 'République Dominicaine'),
(63, 218, 'EC', 'ECU', 'Ecuador', 'Équateur'),
(64, 222, 'SV', 'SLV', 'El Salvador', 'El Salvador'),
(65, 226, 'GQ', 'GNQ', 'Equatorial Guinea', 'Guinée Équatoriale'),
(66, 231, 'ET', 'ETH', 'Ethiopia', 'Éthiopie'),
(67, 232, 'ER', 'ERI', 'Eritrea', 'Érythrée'),
(68, 233, 'EE', 'EST', 'Estonia', 'Estonie'),
(69, 234, 'FO', 'FRO', 'Faroe Islands', 'Îles Féroé'),
(70, 238, 'FK', 'FLK', 'Falkland Islands', 'Îles (malvinas) Falkland'),
(71, 239, 'GS', 'SGS', 'South Georgia and the South Sandwich Islands', 'Géorgie du Sud et les Îles Sandwich du Sud'),
(72, 242, 'FJ', 'FJI', 'Fiji', 'Fidji'),
(73, 246, 'FI', 'FIN', 'Finland', 'Finlande'),
(74, 248, 'AX', 'ALA', 'Åland Islands', 'Îles Åland'),
(75, 250, 'FR', 'FRA', 'France', 'France'),
(76, 254, 'GF', 'GUF', 'French Guiana', 'Guyane Française'),
(77, 258, 'PF', 'PYF', 'French Polynesia', 'Polynésie Française'),
(78, 260, 'TF', 'ATF', 'French Southern Territories', 'Terres Australes Françaises'),
(79, 262, 'DJ', 'DJI', 'Djibouti', 'Djibouti'),
(80, 266, 'GA', 'GAB', 'Gabon', 'Gabon'),
(81, 268, 'GE', 'GEO', 'Georgia', 'Géorgie'),
(82, 270, 'GM', 'GMB', 'Gambia', 'Gambie'),
(83, 275, 'PS', 'PSE', 'Occupied Palestinian Territory', 'Territoire Palestinien Occupé'),
(84, 276, 'DE', 'DEU', 'Germany', 'Allemagne'),
(85, 288, 'GH', 'GHA', 'Ghana', 'Ghana'),
(86, 292, 'GI', 'GIB', 'Gibraltar', 'Gibraltar'),
(87, 296, 'KI', 'KIR', 'Kiribati', 'Kiribati'),
(88, 300, 'GR', 'GRC', 'Greece', 'Grèce'),
(89, 304, 'GL', 'GRL', 'Greenland', 'Groenland'),
(90, 308, 'GD', 'GRD', 'Grenada', 'Grenade'),
(91, 312, 'GP', 'GLP', 'Guadeloupe', 'Guadeloupe'),
(92, 316, 'GU', 'GUM', 'Guam', 'Guam'),
(93, 320, 'GT', 'GTM', 'Guatemala', 'Guatemala'),
(94, 324, 'GN', 'GIN', 'Guinea', 'Guinée'),
(95, 328, 'GY', 'GUY', 'Guyana', 'Guyana'),
(96, 332, 'HT', 'HTI', 'Haiti', 'Haïti'),
(97, 334, 'HM', 'HMD', 'Heard Island and McDonald Islands', 'Îles Heard et Mcdonald'),
(98, 336, 'VA', 'VAT', 'Vatican City State', 'Saint-Siège (état de la Cité du Vatican)'),
(99, 340, 'HN', 'HND', 'Honduras', 'Honduras'),
(100, 344, 'HK', 'HKG', 'Hong Kong', 'Hong-Kong'),
(101, 348, 'HU', 'HUN', 'Hungary', 'Hongrie'),
(102, 352, 'IS', 'ISL', 'Iceland', 'Islande'),
(103, 356, 'IN', 'IND', 'India', 'Inde'),
(104, 360, 'ID', 'IDN', 'Indonesia', 'Indonésie'),
(105, 364, 'IR', 'IRN', 'Islamic Republic of Iran', 'République Islamique d\'Iran'),
(106, 368, 'IQ', 'IRQ', 'Iraq', 'Iraq'),
(107, 372, 'IE', 'IRL', 'Ireland', 'Irlande'),
(108, 376, 'IL', 'ISR', 'Israel', 'Israël'),
(109, 380, 'IT', 'ITA', 'Italy', 'Italie'),
(110, 384, 'CI', 'CIV', 'Côte d\'Ivoire', 'Côte d\'Ivoire'),
(111, 388, 'JM', 'JAM', 'Jamaica', 'Jamaïque'),
(112, 392, 'JP', 'JPN', 'Japan', 'Japon'),
(113, 398, 'KZ', 'KAZ', 'Kazakhstan', 'Kazakhstan'),
(114, 400, 'JO', 'JOR', 'Jordan', 'Jordanie'),
(115, 404, 'KE', 'KEN', 'Kenya', 'Kenya'),
(116, 408, 'KP', 'PRK', 'Democratic People\'s Republic of Korea', 'République Populaire Démocratique de Corée'),
(117, 410, 'KR', 'KOR', 'Republic of Korea', 'République de Corée'),
(118, 414, 'KW', 'KWT', 'Kuwait', 'Koweït'),
(119, 417, 'KG', 'KGZ', 'Kyrgyzstan', 'Kirghizistan'),
(120, 418, 'LA', 'LAO', 'Lao People\'s Democratic Republic', 'République Démocratique Populaire Lao'),
(121, 422, 'LB', 'LBN', 'Lebanon', 'Liban'),
(122, 426, 'LS', 'LSO', 'Lesotho', 'Lesotho'),
(123, 428, 'LV', 'LVA', 'Latvia', 'Lettonie'),
(124, 430, 'LR', 'LBR', 'Liberia', 'Libéria'),
(125, 434, 'LY', 'LBY', 'Libyan Arab Jamahiriya', 'Jamahiriya Arabe Libyenne'),
(126, 438, 'LI', 'LIE', 'Liechtenstein', 'Liechtenstein'),
(127, 440, 'LT', 'LTU', 'Lithuania', 'Lituanie'),
(128, 442, 'LU', 'LUX', 'Luxembourg', 'Luxembourg'),
(129, 446, 'MO', 'MAC', 'Macao', 'Macao'),
(130, 450, 'MG', 'MDG', 'Madagascar', 'Madagascar'),
(131, 454, 'MW', 'MWI', 'Malawi', 'Malawi'),
(132, 458, 'MY', 'MYS', 'Malaysia', 'Malaisie'),
(133, 462, 'MV', 'MDV', 'Maldives', 'Maldives'),
(134, 466, 'ML', 'MLI', 'Mali', 'Mali'),
(135, 470, 'MT', 'MLT', 'Malta', 'Malte'),
(136, 474, 'MQ', 'MTQ', 'Martinique', 'Martinique'),
(137, 478, 'MR', 'MRT', 'Mauritania', 'Mauritanie'),
(138, 480, 'MU', 'MUS', 'Mauritius', 'Maurice'),
(139, 484, 'MX', 'MEX', 'Mexico', 'Mexique'),
(140, 492, 'MC', 'MCO', 'Monaco', 'Monaco'),
(141, 496, 'MN', 'MNG', 'Mongolia', 'Mongolie'),
(142, 498, 'MD', 'MDA', 'Republic of Moldova', 'République de Moldova'),
(143, 500, 'MS', 'MSR', 'Montserrat', 'Montserrat'),
(144, 504, 'MA', 'MAR', 'Morocco', 'Maroc'),
(145, 508, 'MZ', 'MOZ', 'Mozambique', 'Mozambique'),
(146, 512, 'OM', 'OMN', 'Oman', 'Oman'),
(147, 516, 'NA', 'NAM', 'Namibia', 'Namibie'),
(148, 520, 'NR', 'NRU', 'Nauru', 'Nauru'),
(149, 524, 'NP', 'NPL', 'Nepal', 'Népal'),
(150, 528, 'NL', 'NLD', 'Netherlands', 'Pays-Bas'),
(151, 530, 'AN', 'ANT', 'Netherlands Antilles', 'Antilles Néerlandaises'),
(152, 533, 'AW', 'ABW', 'Aruba', 'Aruba'),
(153, 540, 'NC', 'NCL', 'New Caledonia', 'Nouvelle-Calédonie'),
(154, 548, 'VU', 'VUT', 'Vanuatu', 'Vanuatu'),
(155, 554, 'NZ', 'NZL', 'New Zealand', 'Nouvelle-Zélande'),
(156, 558, 'NI', 'NIC', 'Nicaragua', 'Nicaragua'),
(157, 562, 'NE', 'NER', 'Niger', 'Niger'),
(158, 566, 'NG', 'NGA', 'Nigeria', 'Nigéria'),
(159, 570, 'NU', 'NIU', 'Niue', 'Niué'),
(160, 574, 'NF', 'NFK', 'Norfolk Island', 'Île Norfolk'),
(161, 578, 'NO', 'NOR', 'Norway', 'Norvège'),
(162, 580, 'MP', 'MNP', 'Northern Mariana Islands', 'Îles Mariannes du Nord'),
(163, 581, 'UM', 'UMI', 'United States Minor Outlying Islands', 'Îles Mineures Éloignées des États-Unis'),
(164, 583, 'FM', 'FSM', 'Federated States of Micronesia', 'États Fédérés de Micronésie'),
(165, 584, 'MH', 'MHL', 'Marshall Islands', 'Îles Marshall'),
(166, 585, 'PW', 'PLW', 'Palau', 'Palaos'),
(167, 586, 'PK', 'PAK', 'Pakistan', 'Pakistan'),
(168, 591, 'PA', 'PAN', 'Panama', 'Panama'),
(169, 598, 'PG', 'PNG', 'Papua New Guinea', 'Papouasie-Nouvelle-Guinée'),
(170, 600, 'PY', 'PRY', 'Paraguay', 'Paraguay'),
(171, 604, 'PE', 'PER', 'Peru', 'Pérou'),
(172, 608, 'PH', 'PHL', 'Philippines', 'Philippines'),
(173, 612, 'PN', 'PCN', 'Pitcairn', 'Pitcairn'),
(174, 616, 'PL', 'POL', 'Poland', 'Pologne'),
(175, 620, 'PT', 'PRT', 'Portugal', 'Portugal'),
(176, 624, 'GW', 'GNB', 'Guinea-Bissau', 'Guinée-Bissau'),
(177, 626, 'TL', 'TLS', 'Timor-Leste', 'Timor-Leste'),
(178, 630, 'PR', 'PRI', 'Puerto Rico', 'Porto Rico'),
(179, 634, 'QA', 'QAT', 'Qatar', 'Qatar'),
(180, 638, 'RE', 'REU', 'Réunion', 'Réunion'),
(181, 642, 'RO', 'ROU', 'Romania', 'Roumanie'),
(182, 643, 'RU', 'RUS', 'Russian Federation', 'Fédération de Russie'),
(183, 646, 'RW', 'RWA', 'Rwanda', 'Rwanda'),
(184, 654, 'SH', 'SHN', 'Saint Helena', 'Sainte-Hélène'),
(185, 659, 'KN', 'KNA', 'Saint Kitts and Nevis', 'Saint-Kitts-et-Nevis'),
(186, 660, 'AI', 'AIA', 'Anguilla', 'Anguilla'),
(187, 662, 'LC', 'LCA', 'Saint Lucia', 'Sainte-Lucie'),
(188, 666, 'PM', 'SPM', 'Saint-Pierre and Miquelon', 'Saint-Pierre-et-Miquelon'),
(189, 670, 'VC', 'VCT', 'Saint Vincent and the Grenadines', 'Saint-Vincent-et-les Grenadines'),
(190, 674, 'SM', 'SMR', 'San Marino', 'Saint-Marin'),
(191, 678, 'ST', 'STP', 'Sao Tome and Principe', 'Sao Tomé-et-Principe'),
(192, 682, 'SA', 'SAU', 'Saudi Arabia', 'Arabie Saoudite'),
(193, 686, 'SN', 'SEN', 'Senegal', 'Sénégal'),
(194, 690, 'SC', 'SYC', 'Seychelles', 'Seychelles'),
(195, 694, 'SL', 'SLE', 'Sierra Leone', 'Sierra Leone'),
(196, 702, 'SG', 'SGP', 'Singapore', 'Singapour'),
(197, 703, 'SK', 'SVK', 'Slovakia', 'Slovaquie'),
(198, 704, 'VN', 'VNM', 'Vietnam', 'Viet Nam'),
(199, 705, 'SI', 'SVN', 'Slovenia', 'Slovénie'),
(200, 706, 'SO', 'SOM', 'Somalia', 'Somalie'),
(201, 710, 'ZA', 'ZAF', 'South Africa', 'Afrique du Sud'),
(202, 716, 'ZW', 'ZWE', 'Zimbabwe', 'Zimbabwe'),
(203, 724, 'ES', 'ESP', 'Spain', 'Espagne'),
(204, 732, 'EH', 'ESH', 'Western Sahara', 'Sahara Occidental'),
(205, 736, 'SD', 'SDN', 'Sudan', 'Soudan'),
(206, 740, 'SR', 'SUR', 'Suriname', 'Suriname'),
(207, 744, 'SJ', 'SJM', 'Svalbard and Jan Mayen', 'Svalbard etÎle Jan Mayen'),
(208, 748, 'SZ', 'SWZ', 'Swaziland', 'Swaziland'),
(209, 752, 'SE', 'SWE', 'Sweden', 'Suède'),
(210, 756, 'CH', 'CHE', 'Switzerland', 'Suisse'),
(211, 760, 'SY', 'SYR', 'Syrian Arab Republic', 'République Arabe Syrienne'),
(212, 762, 'TJ', 'TJK', 'Tajikistan', 'Tadjikistan'),
(213, 764, 'TH', 'THA', 'Thailand', 'Thaïlande'),
(214, 768, 'TG', 'TGO', 'Togo', 'Togo'),
(215, 772, 'TK', 'TKL', 'Tokelau', 'Tokelau'),
(216, 776, 'TO', 'TON', 'Tonga', 'Tonga'),
(217, 780, 'TT', 'TTO', 'Trinidad and Tobago', 'Trinité-et-Tobago'),
(218, 784, 'AE', 'ARE', 'United Arab Emirates', 'Émirats Arabes Unis'),
(219, 788, 'TN', 'TUN', 'Tunisia', 'Tunisie'),
(220, 792, 'TR', 'TUR', 'Turkey', 'Turquie'),
(221, 795, 'TM', 'TKM', 'Turkmenistan', 'Turkménistan'),
(222, 796, 'TC', 'TCA', 'Turks and Caicos Islands', 'Îles Turks et Caïques'),
(223, 798, 'TV', 'TUV', 'Tuvalu', 'Tuvalu'),
(224, 800, 'UG', 'UGA', 'Uganda', 'Ouganda'),
(225, 804, 'UA', 'UKR', 'Ukraine', 'Ukraine'),
(226, 807, 'MK', 'MKD', 'The Former Yugoslav Republic of Macedonia', 'L\'ex-République Yougoslave de Macédoine'),
(227, 818, 'EG', 'EGY', 'Egypt', 'Égypte'),
(228, 826, 'GB', 'GBR', 'United Kingdom', 'Royaume-Uni'),
(229, 833, 'IM', 'IMN', 'Isle of Man', 'Île de Man'),
(230, 834, 'TZ', 'TZA', 'United Republic Of Tanzania', 'République-Unie de Tanzanie'),
(231, 840, 'US', 'USA', 'United States', 'États-Unis'),
(232, 850, 'VI', 'VIR', 'U.S. Virgin Islands', 'Îles Vierges des États-Unis'),
(233, 854, 'BF', 'BFA', 'Burkina Faso', 'Burkina Faso'),
(234, 858, 'UY', 'URY', 'Uruguay', 'Uruguay'),
(235, 860, 'UZ', 'UZB', 'Uzbekistan', 'Ouzbékistan'),
(236, 862, 'VE', 'VEN', 'Venezuela', 'Venezuela'),
(237, 876, 'WF', 'WLF', 'Wallis and Futuna', 'Wallis et Futuna'),
(238, 882, 'WS', 'WSM', 'Samoa', 'Samoa'),
(239, 887, 'YE', 'YEM', 'Yemen', 'Yémen'),
(240, 891, 'CS', 'SCG', 'Serbia and Montenegro', 'Serbie-et-Monténégro'),
(241, 894, 'ZM', 'ZMB', 'Zambia', 'Zambie')
-- --------------------------------------------------------
--
-- Structure de la table `prixunitaires`
--
CREATE TABLE `prixunitaires` (
`fraisDossier` decimal(10,2) NOT NULL,
`suivi` decimal(10,2) NOT NULL,
`manutention` decimal(10,2) NOT NULL,
`transport` decimal(10,2) NOT NULL,
`immobilisation` decimal(10,2) NOT NULL,
`dechargement20` decimal(10,2) NOT NULL,
`dechargement40` decimal(10,2) NOT NULL,
`accesCamion` decimal(10,2) NOT NULL,
`visite40` decimal(10,2) NOT NULL,
`visite20` decimal(10,2) NOT NULL,
`visDouane40` decimal(10,2) NOT NULL,
`visDouane20` decimal(10,2) NOT NULL,
`char40` decimal(10,2) NOT NULL,
`char20` decimal(10,2) NOT NULL,
`mag140` decimal(10,2) NOT NULL,
`tel` decimal(10,2) NOT NULL,
`fraisExpertise` decimal(10,2) NOT NULL,
`plombage` decimal(10,2) NOT NULL,
`magPort` decimal(10,2) NOT NULL,
`scanner` decimal(10,2) NOT NULL,
`mag120` decimal(10,0) NOT NULL,
`mag220` decimal(10,0) NOT NULL,
`mag240` decimal(10,0) NOT NULL,
`userr` varchar(200) NOT NULL,
`traite` int(4) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1
--
-- Contenu de la table `prixunitaires`
--
INSERT INTO `prixunitaires` (`fraisDossier`, `suivi`, `manutention`, `transport`, `immobilisation`, `dechargement20`, `dechargement40`, `accesCamion`, `visite40`, `visite20`, `visDouane40`, `visDouane20`, `char40`, `char20`, `mag140`, `tel`, `fraisExpertise`, `plombage`, `magPort`, `scanner`, `mag120`, `mag220`, `mag240`, `userr`, `traite`) VALUES
('1000.00', '3200.00', '2000.01', '4000.00', '1500.00', '3000.00', '1400.00', '4005.00', '1520.05', '1420.50', '4500.00', '1500.00', '800.00', '1500.00', '200.00', '500.00', '1200.00', '3000.00', '600.00', '1200.00', '0', '0', '0', 'karim', 1)
-- --------------------------------------------------------
--
-- Structure de la table `visite`
--
CREATE TABLE `visite` (
`NMConteneur` varchar(50) NOT NULL DEFAULT '',
`idAgent` int(11) DEFAULT NULL,
`datee` date NOT NULL,
`heure` time NOT NULL,
`etat` varchar(50) NOT NULL DEFAULT 'ok'
) ENGINE=InnoDB DEFAULT CHARSET=latin1
--
-- Index pour les tables exportées
--
--
-- Index pour la table `camion`
--
ALTER TABLE `camion`
ADD PRIMARY KEY (`idCamion`)
--
-- Index pour la table `chauffeur`
--
ALTER TABLE `chauffeur`
ADD PRIMARY KEY (`idChauffeur`)
--
-- Index pour la table `chc`
--
ALTER TABLE `chc`
ADD KEY `idCamion_idx` (`idCamion`),
ADD KEY `idChaffeur` (`idChauffeur`)
--
-- Index pour la table `client`
--
ALTER TABLE `client`
ADD PRIMARY KEY (`idClient`)
--
-- Index pour la table `conteneur`
--
ALTER TABLE `conteneur`
ADD PRIMARY KEY (`NMC`),
ADD KEY `idDossier_idx` (`idDossier`)
--
-- Index pour la table `ctfact`
--
ALTER TABLE `ctfact`
ADD PRIMARY KEY (`NMC`),
ADD KEY `idFact_idx` (`idFacture`)
--
-- Index pour la table `dossier`
--
ALTER TABLE `dossier`
ADD PRIMARY KEY (`idDossier`),
ADD KEY `idClient_idx` (`idClient`)
--
-- Index pour la table `douane`
--
ALTER TABLE `douane`
ADD PRIMARY KEY (`idAgent`)
--
-- Index pour la table `facture`
--
ALTER TABLE `facture`
ADD PRIMARY KEY (`idFacture`)
--
-- Index pour la table `pays`
--
ALTER TABLE `pays`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `alpha2` (`alpha2`),
ADD UNIQUE KEY `alpha3` (`alpha3`),
ADD UNIQUE KEY `code_unique` (`code`)
--
-- Index pour la table `visite`
--
ALTER TABLE `visite`
ADD PRIMARY KEY (`NMConteneur`),
ADD KEY `NMConteneur` (`NMConteneur`),
ADD KEY `NMConteneur_2` (`NMConteneur`)
--
-- AUTO_INCREMENT pour les tables exportées
--
--
-- AUTO_INCREMENT pour la table `camion`
--
ALTER TABLE `camion`
MODIFY `idCamion` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5
--
-- AUTO_INCREMENT pour la table `chauffeur`
--
ALTER TABLE `chauffeur`
MODIFY `idChauffeur` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3
--
-- AUTO_INCREMENT pour la table `client`
--
ALTER TABLE `client`
MODIFY `idClient` int(32) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=69
--
-- AUTO_INCREMENT pour la table `dossier`
--
ALTER TABLE `dossier`
MODIFY `idDossier` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7
--
-- AUTO_INCREMENT pour la table `douane`
--
ALTER TABLE `douane`
MODIFY `idAgent` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3
--
-- AUTO_INCREMENT pour la table `facture`
--
ALTER TABLE `facture`
MODIFY `idFacture` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4
--
-- AUTO_INCREMENT pour la table `pays`
--
ALTER TABLE `pays`
MODIFY `id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=242
--
-- Contraintes pour les tables exportées
--
--
-- Contraintes pour la table `chc`
--
ALTER TABLE `chc`
ADD CONSTRAINT `idCamion` FOREIGN KEY (`idCamion`) REFERENCES `camion` (`idCamion`),
ADD CONSTRAINT `idChaffeur` FOREIGN KEY (`idChauffeur`) REFERENCES `chauffeur` (`idChauffeur`)
--
-- Contraintes pour la table `conteneur`
--
ALTER TABLE `conteneur`
ADD CONSTRAINT `idDossier` FOREIGN KEY (`idDossier`) REFERENCES `dossier` (`idDossier`) ON DELETE CASCADE ON UPDATE CASCADE
--
-- Contraintes pour la table `ctfact`
--
ALTER TABLE `ctfact`
ADD CONSTRAINT `nmc` FOREIGN KEY (`NMC`) REFERENCES `conteneur` (`NMC`)
--
-- Contraintes pour la table `dossier`
--
ALTER TABLE `dossier`
ADD CONSTRAINT `idClient` FOREIGN KEY (`idClient`) REFERENCES `client` (`idClient`) ON DELETE CASCADE ON UPDATE CASCADE
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */