-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebene00_zb_test_BP.sql
2880 lines (2615 loc) · 362 KB
/
webene00_zb_test_BP.sql
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
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 2.8.0.1
-- http://www.phpmyadmin.net
--
-- Хост: custsql-ipg105.eigbox.net
-- Время создания: Авг 30 2018 г., 08:08
-- Версия сервера: 5.6.40
-- Версия PHP: 4.4.9
--
-- БД: `webene00_zb_test`
--
-- --------------------------------------------------------
--
-- Структура таблицы `additional_attribute`
--
CREATE TABLE `additional_attribute` (
`id` int(5) NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL,
`value` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
--
-- Дамп данных таблицы `additional_attribute`
--
INSERT INTO `additional_attribute` VALUES (1, 'Text', 'text');
INSERT INTO `additional_attribute` VALUES (2, 'Textarea', 'textarea');
INSERT INTO `additional_attribute` VALUES (3, 'Number', 'number');
INSERT INTO `additional_attribute` VALUES (4, 'Radio', 'radio');
INSERT INTO `additional_attribute` VALUES (5, 'Checkbox', 'checkbox');
INSERT INTO `additional_attribute` VALUES (6, 'Link', 'link');
-- --------------------------------------------------------
--
-- Структура таблицы `additions_products`
--
CREATE TABLE `additions_products` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`related_additions_id` int(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- Дамп данных таблицы `additions_products`
--
INSERT INTO `additions_products` VALUES (1, 13, 12);
INSERT INTO `additions_products` VALUES (2, 13, 11);
-- --------------------------------------------------------
--
-- Структура таблицы `attribute_product`
--
CREATE TABLE `attribute_product` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`attribute_name` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Дамп данных таблицы `attribute_product`
--
-- --------------------------------------------------------
--
-- Структура таблицы `attribute_value`
--
CREATE TABLE `attribute_value` (
`attribute_product_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`value` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `attribute_value`
--
-- --------------------------------------------------------
--
-- Структура таблицы `availability_products`
--
CREATE TABLE `availability_products` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=6 ;
--
-- Дамп данных таблицы `availability_products`
--
INSERT INTO `availability_products` VALUES (1, 'published', 'published');
INSERT INTO `availability_products` VALUES (2, 'archive', 'archive');
INSERT INTO `availability_products` VALUES (3, 'coming soon', 'coming_soon');
INSERT INTO `availability_products` VALUES (4, 'sold out', 'sold_out');
INSERT INTO `availability_products` VALUES (5, 'Do not display', 'do_not_display');
-- --------------------------------------------------------
--
-- Структура таблицы `bonuses`
--
CREATE TABLE `bonuses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`start_time` datetime NOT NULL,
`end_time` datetime NOT NULL,
`action` tinyint(2) NOT NULL DEFAULT '0',
`sum` int(10) NOT NULL DEFAULT '100',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Дамп данных таблицы `bonuses`
--
INSERT INTO `bonuses` VALUES (1, 'E-burpy', '2017-07-07 00:00:00', '2018-06-07 00:00:00', 1, 100);
-- --------------------------------------------------------
--
-- Структура таблицы `cart`
--
CREATE TABLE `cart` (
`cart_id` int(11) NOT NULL AUTO_INCREMENT,
`cart_id_product` int(11) NOT NULL,
`cart_id_supplier` int(11) DEFAULT NULL,
`cart_price` int(11) NOT NULL,
`cart_count` int(11) NOT NULL DEFAULT '1',
`status` tinyint(2) unsigned NOT NULL DEFAULT '0',
`cart_datetime` datetime NOT NULL,
`cart_ip` varchar(100) NOT NULL,
`cart_warehouse_id` int(11) DEFAULT NULL,
PRIMARY KEY (`cart_id`)
) ENGINE=InnoDB AUTO_INCREMENT=162 DEFAULT CHARSET=utf8 AUTO_INCREMENT=162 ;
--
-- Дамп данных таблицы `cart`
--
INSERT INTO `cart` VALUES (97, 2, 0, 251, 1, 0, '2017-07-21 22:49:01', '188.163.86.171', NULL);
INSERT INTO `cart` VALUES (108, 15, NULL, 250, 1, 0, '2017-11-08 02:11:28', '193.111.156.141', NULL);
INSERT INTO `cart` VALUES (109, 10, NULL, 250, 1, 0, '2017-11-08 11:56:54', '46.160.71.23', NULL);
INSERT INTO `cart` VALUES (110, 17, NULL, 250, 1, 0, '2017-11-08 11:57:37', '46.160.71.23', NULL);
INSERT INTO `cart` VALUES (111, 58, NULL, 56, 4, 0, '2017-12-11 02:11:48', '127.0.0.1', NULL);
INSERT INTO `cart` VALUES (112, 61, NULL, 444444, 1, 0, '2017-12-11 02:35:42', '127.0.0.1', NULL);
INSERT INTO `cart` VALUES (115, 58, NULL, 56, 1, 0, '2018-01-06 12:43:40', '188.163.86.188', NULL);
INSERT INTO `cart` VALUES (124, 15, NULL, 250, 90, 0, '2018-01-22 15:35:21', '188.163.86.188', NULL);
INSERT INTO `cart` VALUES (127, 62, NULL, 28, 1, 0, '2018-01-27 06:47:12', '188.163.86.188', NULL);
INSERT INTO `cart` VALUES (129, 82, NULL, 40, 1, 0, '2018-01-28 02:52:53', '188.163.87.216', NULL);
INSERT INTO `cart` VALUES (130, 89, NULL, 9, 1, 0, '2018-01-28 08:35:11', '188.163.87.216', NULL);
INSERT INTO `cart` VALUES (135, 66, NULL, 38, 1, 0, '2018-02-22 13:33:03', '192.99.66.39', NULL);
INSERT INTO `cart` VALUES (136, 71, NULL, 22, 2, 0, '2018-04-30 04:55:17', '192.99.66.39', NULL);
INSERT INTO `cart` VALUES (145, 163, NULL, 15, 1, 0, '2018-03-05 15:16:34', '188.163.84.243', NULL);
INSERT INTO `cart` VALUES (146, 158, NULL, 43, 1, 0, '2018-03-25 09:22:30', '95.153.131.44', NULL);
INSERT INTO `cart` VALUES (148, 178, NULL, 56, 1, 0, '2018-04-01 14:03:44', '91.217.101.202', NULL);
INSERT INTO `cart` VALUES (151, 84, NULL, 27, 1, 0, '2018-04-03 14:24:06', '91.217.101.202', NULL);
INSERT INTO `cart` VALUES (157, 196, 3, 4, 4, 0, '2018-04-16 16:33:31', '188.163.57.232', NULL);
INSERT INTO `cart` VALUES (158, 188, 1, 60, 2, 0, '2018-08-13 14:02:15', '188.163.57.181', NULL);
INSERT INTO `cart` VALUES (159, 75, 5, 60, 1, 0, '2018-08-21 07:45:22', '193.111.156.142', NULL);
INSERT INTO `cart` VALUES (160, 178, 5, 56, 1, 0, '2018-08-23 05:34:41', '193.111.156.142', NULL);
INSERT INTO `cart` VALUES (161, 196, 1, 4, 1, 0, '2018-08-27 05:39:19', '193.111.156.142', NULL);
-- --------------------------------------------------------
--
-- Структура таблицы `category`
--
CREATE TABLE `category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parent` int(10) unsigned NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL,
`alias` varchar(255) DEFAULT NULL,
`image` varchar(255) NOT NULL DEFAULT 'nophoto.jpg',
`description` varchar(255) NOT NULL,
`m_description` varchar(255) NOT NULL DEFAULT 'm_description_text',
`m_keywords` varchar(255) NOT NULL,
`additional_attribute_category` text,
`view` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8 AUTO_INCREMENT=30 ;
--
-- Дамп данных таблицы `category`
--
INSERT INTO `category` VALUES (1, 0, 'PAPER PRODUCT', 'category_al_1', '011218_URyMwsirj.jpg', 'Toilet tissue, paper towels, facial tissue e.t.c.', 'paper product', 'paper towels, toilet tissue', '[{"additionaltext_label":"xcxcx","id_val":"","position_val":"","type_val":"text","description_val":"","init_id":1511229936},{"additionaltext_label":"sdsd","id_val":"fderfdf","position_val":"10","type_val":"number","description_val":"","init_id":1511262680},{"additionaltext_label":"kjkj","id_val":"ghghghg","position_val":"54","type_val":"radio","description_val":"","init_id":1511262695},{"additionaltext_label":"kjkj","id_val":"jjjh","position_val":"uy","type_val":"link","description_val":"","init_id":1511262707},{"additionaltext_label":"xcxcx","id_val":"cvcv","position_val":"vcvcv","type_val":"textarea","description_val":"dfdfdfdf","init_id":1516821847}]', '1');
INSERT INTO `category` VALUES (2, 0, 'GLOVES', 'category_2', '110717_JlpsQI24y.jpg', '\r\nANY KIND OF GLOVES FOR YOU NEEDS', 'gloves', 'Gloves, nitrile gloves, latex gloves', NULL, '1');
INSERT INTO `category` VALUES (3, 0, 'PACKAGING', 'category_3', '011218_V2H9U3GTI.jpg', '\r\nProduct for your mailroom needs; boxes, envelopes, bubbles, e.t.c.', 'm_description_text', 'BOXES, PACKAGING', NULL, '1');
INSERT INTO `category` VALUES (4, 0, 'BREAK ROOM', 'category_4', '011218_2yFraezYN.jpg', 'All your break room or kitchenette needs; plates, cups cutlery.', 'm_description_text', '', NULL, '1');
INSERT INTO `category` VALUES (5, 0, 'LINERS', 'category_5', '011218_DHRyqHLai.jpg', 'We have a big variety of can liners; low density, high density, biodegradable and more.', 'm_description_text', 'can liners', NULL, '1');
INSERT INTO `category` VALUES (6, 0, 'SKIN CARE', 'category_6', '110717_1strbgmUz.jpg', 'THIS CATEGORY FOR SOAP AND HAND SANITIZERS. BIG VARIETY OF SOAP, FOAM SOAP WITH MOISTURIZERS, ANTIBACTERIAL, ANTIMICROBIAL, AND REGULAR ONES WITH FRAGRANCE OR FRAGRANCE-FREE.', 'SKIN CARE PRODUCT', 'SOAP, SANITIZERS', NULL, '1');
INSERT INTO `category` VALUES (7, 0, 'CLEANING TOOLS', 'category_7', '011218_4RaRjTEJD.jpg', 'Righ tools for the job.', 'm_description_text', 'Cleaning tools, mops, bucket, brushes', NULL, '1');
INSERT INTO `category` VALUES (8, 0, 'CHEMICALS', 'category_8', '011218_RHwjRNbuY.jpg', 'Cleaning solution to make you job easy', 'Cleaning solution', '', NULL, '1');
INSERT INTO `category` VALUES (26, 8, 'Odor control', 'odor-control', '012218_5Zn9aVBId.jpg', 'Air fresheners, odor bacteria eliminators, everything you need to keep your troubled areas fresh.', 'Air freshener, odor control, deodoriser', 'AIR FRESHENER, ODOR CONTROL, DEODORISER', NULL, '1');
INSERT INTO `category` VALUES (28, 6, 'DISPENSERS', 'dispensers', '012818_9LjejM6ar.jpg', 'dispensers for soap, foam soap, manual and touch-free.', '', 'sOAP dISPENSERS', NULL, '1');
INSERT INTO `category` VALUES (29, 7, 'Vacuum / Vacuum parts', 'vacuum-vacuum-parts', '022818_BUpIVGltN.jpg', 'Commercial vacuums and parts.', 'VACUUM AND PARTS', 'VACUUM', NULL, '1');
-- --------------------------------------------------------
--
-- Структура таблицы `comments`
--
CREATE TABLE `comments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent` int(11) NOT NULL,
`author_name` varchar(255) NOT NULL,
`author_email` varchar(255) NOT NULL,
`comment_text` text NOT NULL,
`comment_product_id` int(11) NOT NULL,
`comment_good` text NOT NULL,
`comment_bad` text NOT NULL,
`approved` enum('0','1','2','3') NOT NULL DEFAULT '0' COMMENT '''0''-ожидают проверки,"1" - Опубликованные,"2"-Спам,"3"-Удаленные',
`count_like` int(10) unsigned NOT NULL,
`count_dislike` int(10) unsigned NOT NULL,
`created_add` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`is_admin` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 AUTO_INCREMENT=31 ;
--
-- Дамп данных таблицы `comments`
--
INSERT INTO `comments` VALUES (1, 0, 'Иван', '[email protected]', 'ntrcn', 1, 'good', 'bad', '1', 2, 1, '2018-01-15 09:49:22', 0);
INSERT INTO `comments` VALUES (2, 1, 'sun', 'email', 'comment text', 1, 'good', 'bad', '1', 2, 1, '2017-12-11 16:27:08', 1);
INSERT INTO `comments` VALUES (3, 0, 'Иван', '[email protected]', 'ntrcn', 1, 'good', 'bad', '1', 2, 0, '2017-12-11 16:10:31', 0);
INSERT INTO `comments` VALUES (4, 1, 'asasa', '[email protected]', 'sdsdsdsdsd', 1, '', '', '1', 2, 1, '2017-12-11 16:27:01', 0);
INSERT INTO `comments` VALUES (5, 1, 'asasa', '[email protected]', 'sdsdsdsdsd', 1, '', '', '1', 2, 0, '2017-12-11 16:11:17', 0);
INSERT INTO `comments` VALUES (6, 1, 'asasa', '[email protected]', 'sdsdsdsdsd', 1, '', '', '1', 0, 0, '2017-07-21 10:19:32', 0);
INSERT INTO `comments` VALUES (7, 1, 'asasa', '[email protected]', 'sdsdsdsdsd', 1, '', '', '1', 0, 0, '2017-07-21 10:19:36', 0);
INSERT INTO `comments` VALUES (8, 1, 'asasa', '[email protected]', 'sdsdsdsdsd', 1, '', '', '1', 0, 0, '2017-07-21 10:19:39', 0);
INSERT INTO `comments` VALUES (9, 6, 'Roman', '[email protected]', 'Комментарий', 1, '', '', '1', 0, 0, '2017-07-21 10:19:42', 0);
INSERT INTO `comments` VALUES (10, 6, 'Roman', '[email protected]', 'Комментарий', 1, '', '', '1', 0, 0, '2017-07-21 10:23:57', 0);
INSERT INTO `comments` VALUES (11, 1, 'asasasasa', '[email protected]', 'asasasdsdsdsdsd', 1, '', '', '1', 0, 0, '2017-07-21 10:19:47', 0);
INSERT INTO `comments` VALUES (12, 1, 'sdsdsdsdsdsds', '[email protected]', 'sdsdsdsdsd', 1, '', '', '1', 0, 0, '2017-07-21 10:19:51', 0);
INSERT INTO `comments` VALUES (13, 1, 'sdsdsdsdsdsdsd', '[email protected]', 'sdsdssdsdsdsdsdsd', 1, 'sdsds', 'dsd', '1', 0, 0, '2017-07-21 10:24:01', 0);
INSERT INTO `comments` VALUES (14, 13, 'dsdsdsd', '[email protected]', 'sdsdsdsdsdsd', 1, '', '', '1', 0, 0, '2017-07-21 10:24:04', 0);
INSERT INTO `comments` VALUES (15, 12, 'sdsd', '[email protected]', 'sdsdsdsdsddsdsdsd', 1, 'sdsds', 'dsdsdsd', '1', 0, 0, '2017-07-21 10:20:09', 0);
INSERT INTO `comments` VALUES (16, 1, 'asasasas', '[email protected]', 'dsdsdsdsdsdsdsdsd', 1, '', '', '1', 0, 0, '2017-07-21 10:24:07', 0);
INSERT INTO `comments` VALUES (17, 1, 'sdsdsdsd', '[email protected]', 'dsdsdsdsdvbvbvb', 1, '', '', '1', 0, 0, '2017-07-21 10:20:07', 0);
INSERT INTO `comments` VALUES (18, 1, 'wewewewewe', '[email protected]', 'wewewewewewewewewe', 1, '', '', '1', 0, 0, '2017-07-21 10:24:11', 0);
INSERT INTO `comments` VALUES (19, 1, 'wwewewewewe', '[email protected]', 'weweweweasasasas', 1, '', '', '1', 1, 1, '2017-12-11 16:25:09', 0);
INSERT INTO `comments` VALUES (20, 2, 'sdsdsdsds', '[email protected]', 'sdsdsdsdsddsdsdsd', 1, '', 'sdsd', '1', 0, 0, '2017-07-21 10:24:14', 0);
INSERT INTO `comments` VALUES (21, 0, 'fgfgfgfgfg', '[email protected]', 'fgfgfdfdfdfdfdfdfdf', 1, '', '', '1', 1, 1, '2017-12-11 16:13:00', 0);
INSERT INTO `comments` VALUES (22, 0, 'sdsdsdsd', '[email protected]', 'sdsdsdsdsdsdsdsdsd', 3, 'dsdsdsdsds', 'dsdsdsd', '1', 0, 0, '2017-07-21 10:24:18', 0);
INSERT INTO `comments` VALUES (23, 22, 'assaasasasa', '[email protected]', 'asasasassdsdsd', 3, 'sasasas', 'asasas', '1', 0, 0, '2017-07-21 10:24:21', 0);
INSERT INTO `comments` VALUES (24, 23, 'xzxzxzxzx', '[email protected]', 'dsdsdxzxzxzxzx', 3, 'sdsdsdsdsd', 'sdsdsdsdsd', '1', 0, 0, '2017-07-21 10:24:24', 0);
INSERT INTO `comments` VALUES (25, 0, 'asasasas', '[email protected]', 'asasasasasasasasasas', 3, 'asasasa', 'sasasasas', '1', 0, 0, '2017-07-21 10:19:56', 0);
INSERT INTO `comments` VALUES (26, 3, 'вмвммвмвмв', '[email protected]', 'вмвмвмв', 1, 'good products. thanks', 'no bad', '0', 0, 0, '2017-12-11 13:38:33', 0);
INSERT INTO `comments` VALUES (27, 3, 'my test name', '[email protected]', 'thank you for website', 1, 'very good products', 'no bad', '0', 0, 0, '2017-12-11 13:41:52', 0);
INSERT INTO `comments` VALUES (28, 2, 'cvcvcvcv', '[email protected]', 'vcvcvcvcvdfdfdf', 1, 'cvcv', 'cvc', '0', 0, 0, '2017-12-11 13:54:56', 0);
INSERT INTO `comments` VALUES (29, 1, 'xcxcxcxc', '[email protected]', 'xcxcxcxcxc', 1, 'xc', 'cxc', '0', 0, 0, '2017-12-11 14:21:34', 0);
INSERT INTO `comments` VALUES (30, 0, 'gngn', '[email protected]', 'gngngngngngngngngn', 97, '', '', '0', 0, 0, '2018-04-04 08:57:02', 0);
-- --------------------------------------------------------
--
-- Структура таблицы `comments_votes`
--
CREATE TABLE `comments_votes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_ip` varchar(100) DEFAULT NULL,
`ip_locale_address` varchar(100) DEFAULT NULL,
`comments_id` int(11) NOT NULL,
`created` date DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1 AUTO_INCREMENT=19 ;
--
-- Дамп данных таблицы `comments_votes`
--
INSERT INTO `comments_votes` VALUES (16, '127.0.0.1', 'WIN-QJF2VCB52DD', 4, '2017-12-12');
INSERT INTO `comments_votes` VALUES (17, '127.0.0.1', 'WIN-QJF2VCB52DD', 2, '2017-12-12');
INSERT INTO `comments_votes` VALUES (18, '127.0.0.1', 'agro', 1, '2018-01-15');
-- --------------------------------------------------------
--
-- Структура таблицы `delivery`
--
CREATE TABLE `delivery` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL,
`alias` varchar(100) NOT NULL,
`position` tinyint(2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- Дамп данных таблицы `delivery`
--
INSERT INTO `delivery` VALUES (1, 'Courier delivery', 'couriers', 1);
INSERT INTO `delivery` VALUES (2, 'Personally appear for goods', 'self_delivery', 2);
INSERT INTO `delivery` VALUES (3, 'Delivery by post', 'per_post', 3);
-- --------------------------------------------------------
--
-- Структура таблицы `fealtures`
--
CREATE TABLE `fealtures` (
`id` int(5) unsigned NOT NULL AUTO_INCREMENT,
`fealtures` tinyint(3) unsigned NOT NULL,
`ip` varchar(255) NOT NULL,
`time` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- Дамп данных таблицы `fealtures`
--
INSERT INTO `fealtures` VALUES (2, 4, '188.163.57.181', 1535385908);
-- --------------------------------------------------------
--
-- Структура таблицы `menu_admin`
--
CREATE TABLE `menu_admin` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL,
`description` varchar(255) NOT NULL,
`keywords` varchar(255) NOT NULL,
`position` int(3) NOT NULL,
`parent` int(10) NOT NULL,
`icon` varchar(255) NOT NULL,
`view` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ;
--
-- Дамп данных таблицы `menu_admin`
--
INSERT INTO `menu_admin` VALUES (1, 'Home', 'home', 'empty', 'empty', 1, 0, 'home', '1');
INSERT INTO `menu_admin` VALUES (2, 'Products', 'product-options', 'home', 'home home', 2, 0, 'home', '1');
INSERT INTO `menu_admin` VALUES (3, 'Category', 'category-product-options', 'category-product-options', 'category-product-options', 2, 3, '', '1');
INSERT INTO `menu_admin` VALUES (4, 'Category Add', 'edit-category-product/new', 'edit-category-product', 'edit-category-product', 4, 0, 'content_paste', '0');
INSERT INTO `menu_admin` VALUES (5, 'Product Add', 'add-product/new', 'description', 'keywords', 5, 3, 'queue', '0');
INSERT INTO `menu_admin` VALUES (6, 'Warehouse', 'warehouse', '', '', 5, 0, 'compare', '1');
INSERT INTO `menu_admin` VALUES (7, 'Warehouse Add', 'edit-warehouse/new', '', '', 6, 0, 'queue', '0');
INSERT INTO `menu_admin` VALUES (8, 'Upsell', 'upsell', 'upsell options', 'upsell options', 5, 3, 'local_mall', '1');
INSERT INTO `menu_admin` VALUES (9, 'Stock', 'stock', 'Stock options', 'Stock options', 6, 3, 'local_play', '1');
INSERT INTO `menu_admin` VALUES (10, 'Orders', 'orders-options', 'orders options', 'orders options', 8, 0, 'local_play', '1');
INSERT INTO `menu_admin` VALUES (11, 'Comments', 'comments', 'comments options', 'comments options', 7, 0, 'local_play', '0');
INSERT INTO `menu_admin` VALUES (12, 'Users', 'users', 'users options', 'users options', 7, 0, 'insert_emoticon', '1');
INSERT INTO `menu_admin` VALUES (13, 'Team', 'team', 'team options', 'team options', 6, 0, 'insert_emoticon', '1');
INSERT INTO `menu_admin` VALUES (14, 'Pages', 'static-pages', 'Pages options', 'Pages options', 9, 0, 'library_books', '1');
INSERT INTO `menu_admin` VALUES (15, 'Settings', 'settings', 'Settings options', 'Settings options', 10, 0, 'settings', '1');
INSERT INTO `menu_admin` VALUES (16, 'CSV import', 'product-import', 'CSV import', 'CSV import', 11, 3, 'play_for_work', '1');
INSERT INTO `menu_admin` VALUES (17, 'Product fields', 'category-fields', 'Product fields', 'Product fields', 12, 3, 'settings_applications', '1');
INSERT INTO `menu_admin` VALUES (18, 'Suppliers', 'suppliers', 'suppliers', 'suppliers', 13, 0, 'suppliers', '1');
-- --------------------------------------------------------
--
-- Структура таблицы `menu_office`
--
CREATE TABLE `menu_office` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL,
`description` varchar(255) NOT NULL,
`keywords` varchar(255) NOT NULL,
`position` int(3) NOT NULL,
`parent` int(10) NOT NULL,
`icon` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- Дамп данных таблицы `menu_office`
--
INSERT INTO `menu_office` VALUES (1, 'Main', '/profile', 'profile menu', 'profile menu', 1, 0, 'fa fa-user');
INSERT INTO `menu_office` VALUES (2, 'Finance', '#', 'finance desc', 'Ключевые фразы', 2, 0, 'fa fa-user');
INSERT INTO `menu_office` VALUES (3, 'Orders', '/orders', 'orders', 'Корзин пользователя - описание', 3, 0, 'fa fa-user');
INSERT INTO `menu_office` VALUES (4, 'Wish list', '/wish-list', 'wish list user', 'ключевые слова', 4, 0, 'fa fa-user');
-- --------------------------------------------------------
--
-- Структура таблицы `models_product`
--
CREATE TABLE `models_product` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`description` text NOT NULL,
`old_price` float NOT NULL,
`new_price` float NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Дамп данных таблицы `models_product`
--
-- --------------------------------------------------------
--
-- Структура таблицы `order`
--
CREATE TABLE `order` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
`qty` int(8) NOT NULL,
`sum` float NOT NULL,
`status` tinyint(2) NOT NULL,
`name` varchar(255) NOT NULL,
`email` varchar(100) NOT NULL,
`phone` varchar(100) NOT NULL,
`address` text NOT NULL,
`delivery` tinyint(2) NOT NULL,
`type_pay` tinyint(2) NOT NULL,
`pay` tinyint(2) NOT NULL,
`note` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8 AUTO_INCREMENT=35 ;
--
-- Дамп данных таблицы `order`
--
INSERT INTO `order` VALUES (1, '2017-07-06 00:00:00', '2017-07-06 00:00:00', 10, 8555, 0, 'имя клиента', 'email', 'phone', 'address', 1, 1, 0, 'note');
INSERT INTO `order` VALUES (2, '2017-07-06 18:15:25', '2017-07-06 18:15:25', 10, 8555, 0, 'имя клиента', 'email', 'phone', 'address', 1, 1, 0, '');
INSERT INTO `order` VALUES (3, '2017-07-06 18:28:40', '2017-07-06 18:28:40', 15, 16772, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (4, '2017-07-06 18:30:10', '2017-07-06 18:30:10', 15, 16772, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (5, '2017-07-06 18:31:27', '2017-07-06 18:31:27', 15, 16772, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (6, '2017-07-06 19:01:47', '2017-07-06 19:01:47', 15, 16772, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (7, '2017-07-06 19:03:17', '2017-07-06 19:03:17', 15, 16772, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (8, '2017-07-06 19:04:20', '2017-07-06 19:04:20', 15, 16772, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (9, '2017-07-06 19:06:47', '2017-07-06 19:06:47', 15, 16772, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (10, '2017-07-06 19:08:08', '2017-07-06 19:08:08', 15, 16772, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (11, '2017-07-06 19:08:36', '2017-07-06 19:08:36', 12, 3024, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (12, '2017-07-06 19:09:42', '2017-07-06 19:09:42', 12, 3024, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (13, '2017-07-06 19:11:43', '2017-07-06 19:11:43', 16, 4027, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (14, '2017-07-06 19:12:45', '2017-07-06 19:12:45', 16, 4027, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (15, '2017-07-06 19:12:59', '2017-07-06 19:12:59', 16, 4027, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (16, '2017-07-06 19:50:40', '2017-07-06 19:50:40', 16, 4027, 0, 'dfdfdfdfdfdf', '[email protected]', '+38(665) 656-56-65', 'dfdfdfdfdfdf', 2, 1, 0, 'dfdfdfdf');
INSERT INTO `order` VALUES (17, '2017-07-06 19:52:35', '2017-07-06 19:52:35', 16, 4027, 0, 'dfdfdfdfdfdf', '[email protected]', '+38(665) 656-56-65', 'dfdfdfdfdfdf', 2, 1, 0, 'dfdfdfdf');
INSERT INTO `order` VALUES (18, '2017-07-06 19:57:29', '2017-07-06 19:57:29', 16, 4027, 0, 'dfdfdfdfdfdf', '[email protected]', '+38(665) 656-56-65', 'dfdfdfdfdfdf', 2, 1, 0, 'dfdfdfdf');
INSERT INTO `order` VALUES (19, '2017-07-06 20:00:38', '2017-07-06 20:00:38', 16, 4027, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (20, '2017-07-06 20:00:44', '2017-07-06 20:00:44', 16, 4027, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (21, '2017-07-06 20:18:25', '2017-07-06 20:18:25', 16, 4027, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (22, '2017-07-06 20:18:47', '2017-07-06 20:18:47', 16, 4027, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (23, '2017-07-06 20:19:19', '2017-07-06 20:19:19', 16, 4027, 0, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', 2, 2, 0, '');
INSERT INTO `order` VALUES (24, '2017-07-07 11:29:00', '2017-07-07 11:29:00', 23, 9032, 0, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', 2, 2, 0, '');
INSERT INTO `order` VALUES (25, '2017-07-07 11:32:09', '2017-07-07 11:32:09', 23, 9032, 0, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', 2, 2, 0, '');
INSERT INTO `order` VALUES (26, '2017-07-07 13:02:10', '2017-07-07 13:02:10', 23, 9032, 0, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', 2, 2, 0, '');
INSERT INTO `order` VALUES (27, '2017-07-07 14:05:43', '2017-07-07 14:05:43', 23, 9032, 0, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', 2, 2, 0, '');
INSERT INTO `order` VALUES (28, '2017-07-07 14:41:08', '2017-07-07 14:41:08', 23, 9032, 0, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', 2, 2, 0, '');
INSERT INTO `order` VALUES (29, '2017-07-07 14:42:45', '2017-07-07 14:42:45', 1, 251, 0, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', 2, 2, 0, '');
INSERT INTO `order` VALUES (30, '2017-07-07 15:27:50', '2017-07-07 15:27:50', 1, 251, 0, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', 2, 2, 0, '');
INSERT INTO `order` VALUES (31, '2017-07-07 15:33:35', '2017-07-07 15:33:35', 2, 503, 0, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', 2, 2, 0, '');
INSERT INTO `order` VALUES (32, '2017-07-07 15:37:00', '2017-07-07 15:37:00', 1, 252, 0, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', 2, 2, 0, '');
INSERT INTO `order` VALUES (33, '2017-07-18 15:16:06', '2017-07-18 15:16:06', 1, 252, 0, 'admin', '[email protected]', '+38(021) 212-12-12,+38(021) 212-12-12', 'долодлолдололо', 3, 1, 0, '');
INSERT INTO `order` VALUES (34, '2017-07-21 13:58:05', '2017-07-21 13:58:05', 1, 250, 0, 'sxsxs', '[email protected]', '+38(222) 222-22-22,+38(222) 222-22-22', 'asasasasaasasasas', 3, 1, 0, 'sasasasasasasas');
-- --------------------------------------------------------
--
-- Структура таблицы `order_items`
--
CREATE TABLE `order_items` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`order_id` int(10) unsigned NOT NULL,
`product_id` int(10) unsigned NOT NULL,
`title` varchar(255) NOT NULL,
`price` float NOT NULL,
`qty_item` int(10) NOT NULL,
`sum_item` float NOT NULL,
`order_supplier` int(11) DEFAULT NULL,
`article_number` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8 AUTO_INCREMENT=100 ;
--
-- Дамп данных таблицы `order_items`
--
INSERT INTO `order_items` VALUES (51, 28, 3, '33__LOREM IPSUM DOLOR SIT AMET CONSE CTETUR ADIPISICING ELIT, SED DO EIUSMOD(НАИМЕНОВАНИЕ ТОВАРА', 252, 13, 3276, NULL, 'article-12d-test');
INSERT INTO `order_items` VALUES (52, 28, 1, '111LOREM IPSUM DOLOR SIT AMET CONSE CTETUR ADIPISICING ELIT, SED DO EIUSMOD(НАИМЕНОВАНИЕ ТОВАРА', 250, 3, 750, NULL, 'article-12d-test');
INSERT INTO `order_items` VALUES (53, 28, 2, '222LOREM IPSUM DOLOR SIT AMET CONSE CTETUR ADIPISICING ELIT, SED DO EIUSMOD(НАИМЕНОВАНИЕ ТОВАРА', 251, 6, 1506, NULL, 'article-12d-test');
INSERT INTO `order_items` VALUES (54, 28, 5, '45541LOREM IPSUM DOLOR SIT AMET CONSECTETUR ADIPISICING ELIT, SED DO EIUSMOD(НАИМЕНОВАНИЕ ТОВАРА', 3500, 1, 3500, NULL, 'article-12d-test');
INSERT INTO `order_items` VALUES (55, 29, 2, '222LOREM IPSUM DOLOR SIT AMET CONSE CTETUR ADIPISICING ELIT, SED DO EIUSMOD(НАИМЕНОВАНИЕ ТОВАРА', 251, 1, 251, NULL, 'article-12d-test');
INSERT INTO `order_items` VALUES (56, 30, 2, '222LOREM IPSUM DOLOR SIT AMET CONSE CTETUR ADIPISICING ELIT, SED DO EIUSMOD(НАИМЕНОВАНИЕ ТОВАРА', 251, 1, 251, NULL, 'article-12d-test');
INSERT INTO `order_items` VALUES (57, 31, 3, '33__LOREM IPSUM DOLOR SIT AMET CONSE CTETUR ADIPISICING ELIT, SED DO EIUSMOD(НАИМЕНОВАНИЕ ТОВАРА', 252, 1, 252, NULL, 'article-12d-test');
INSERT INTO `order_items` VALUES (58, 31, 2, '222LOREM IPSUM DOLOR SIT AMET CONSE CTETUR ADIPISICING ELIT, SED DO EIUSMOD(НАИМЕНОВАНИЕ ТОВАРА', 251, 1, 251, NULL, 'article-12d-test');
INSERT INTO `order_items` VALUES (59, 32, 3, '33__LOREM IPSUM DOLOR SIT AMET CONSE CTETUR ADIPISICING ELIT, SED DO EIUSMOD(НАИМЕНОВАНИЕ ТОВАРА', 252, 1, 252, NULL, 'article-12d-test');
INSERT INTO `order_items` VALUES (60, 33, 3, '33__LOREM IPSUM DOLOR SIT AMET CONSE CTETUR ADIPISICING ELIT, SED DO EIUSMOD(НАИМЕНОВАНИЕ ТОВАРА', 252, 10, 2520, NULL, 'article-12d-test');
INSERT INTO `order_items` VALUES (61, 34, 1, '111LOREM IPSUM DOLOR SIT AMET CONSE CTETUR ADIPISICING ELIT, SED DO EIUSMOD(НАИМЕНОВАНИЕ ТОВАРА', 250, 1, 250, NULL, 'article-12d-test');
INSERT INTO `order_items` VALUES (62, 35, 10, 'product-test_10', 249.99, 20, 5000, NULL, '');
INSERT INTO `order_items` VALUES (63, 35, 1, 'Coffee stuff for Lovers_1', 233.99, 16, 3744, NULL, '');
INSERT INTO `order_items` VALUES (64, 35, 2, 'Coffee stuff for Lovers_2', 233.99, 12, 2808, NULL, '');
INSERT INTO `order_items` VALUES (65, 37, 10, 'product-test_10', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (66, 37, 11, 'product-test_11', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (67, 38, 1, 'Coffee stuff for Lovers_1', 233.99, 1, 234, NULL, '#54d874');
INSERT INTO `order_items` VALUES (68, 38, 2, 'Coffee stuff for Lovers_2', 233.99, 1, 234, NULL, '#54d874');
INSERT INTO `order_items` VALUES (69, 39, 11, 'product-test_11', 249.99, 4, 1000, NULL, 'article');
INSERT INTO `order_items` VALUES (70, 39, 2, 'Coffee stuff for Lovers_2', 233.99, 7, 1638, NULL, '#54d874');
INSERT INTO `order_items` VALUES (71, 39, 13, 'product-test_13_13', 249.99, 3, 750, NULL, '#21221');
INSERT INTO `order_items` VALUES (72, 39, 21, 'product-test_21', 249.99, 2, 500, NULL, 'article');
INSERT INTO `order_items` VALUES (73, 39, 16, 'product-test_16', 249.99, 10, 2500, NULL, 'article');
INSERT INTO `order_items` VALUES (74, 40, 20, 'product-test_20', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (75, 41, 20, 'product-test_20', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (76, 42, 24, 'product-test_24', 249.99, 10, 2499.9, NULL, 'article');
INSERT INTO `order_items` VALUES (77, 43, 24, 'product-test_24', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (78, 44, 20, 'product-test_20', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (79, 45, 21, 'product-test_21', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (80, 46, 24, 'product-test_24', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (81, 47, 23, 'product-test_23', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (84, 49, 32, 'product-test_32', 249.99, 10, 2499.9, NULL, 'article');
INSERT INTO `order_items` VALUES (86, 49, 34, 'product-test_34', 249.99, 4, 1000, NULL, 'article');
INSERT INTO `order_items` VALUES (87, 49, 35, 'product-test_35', 249.99, 10, 2499.9, NULL, 'article');
INSERT INTO `order_items` VALUES (88, 50, 24, 'product-test_24', 249.99, 50, 12499.5, NULL, 'article');
INSERT INTO `order_items` VALUES (89, 50, 2, 'Coffee stuff for Lovers_2', 233.99, 30, 7019.7, NULL, '#54d874');
INSERT INTO `order_items` VALUES (90, 50, 27, 'product-test_27', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (91, 50, 20, 'product-test_20', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (92, 50, 21, 'product-test_21', 249.99, 10, 2500, NULL, 'article');
INSERT INTO `order_items` VALUES (93, 50, 22, 'product-test_22', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (94, 50, 26, 'product-test_26', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (95, 51, 20, 'product-test_20', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (96, 51, 21, 'product-test_21', 249.99, 1, 250, NULL, 'article');
INSERT INTO `order_items` VALUES (97, 52, 58, 'ENMOTION ROLL TOWEL', 55.55, 1, 56, NULL, 'CZ89460');
INSERT INTO `order_items` VALUES (98, 53, 58, 'ENMOTION ROLL TOWEL', 55.55, 1, 55.55, NULL, 'CZ89460');
INSERT INTO `order_items` VALUES (99, 54, 196, 'REPLACEMENT BRUSH FOR EZ GLIDE TOOL (PT100147)', 3.5, 10, 40, 3, 'PT101155');
-- --------------------------------------------------------
--
-- Структура таблицы `order_items_paypal`
--
CREATE TABLE `order_items_paypal` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`payment_id` int(11) NOT NULL DEFAULT '0',
`item_number` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`quantity` int(5) NOT NULL,
`gross_amount` float NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=6 ;
--
-- Дамп данных таблицы `order_items_paypal`
--
INSERT INTO `order_items_paypal` VALUES (1, 2, '58', 1, 55.55);
INSERT INTO `order_items_paypal` VALUES (3, 3, '58', 1, 55.55);
INSERT INTO `order_items_paypal` VALUES (4, 4, '58', 1, 55.55);
INSERT INTO `order_items_paypal` VALUES (5, 4, '15', 1, 249.99);
-- --------------------------------------------------------
--
-- Структура таблицы `order_processing`
--
CREATE TABLE `order_processing` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`auth_id` int(11) NOT NULL,
`auth_name` varchar(255) DEFAULT NULL,
`auth_email` varchar(255) DEFAULT NULL,
`message` text,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8 AUTO_INCREMENT=65 ;
--
-- Дамп данных таблицы `order_processing`
--
INSERT INTO `order_processing` VALUES (3, 49, 71, 'Admin Admin', '[email protected]', 'Admin Admin([email protected]) activity: created new qty:2', '2017-12-03 18:22:57');
INSERT INTO `order_processing` VALUES (9, 49, 71, 'Admin Admin', '[email protected]', 'Admin Admin([email protected]) activity: created new qty:2', '2017-12-03 18:22:57');
INSERT INTO `order_processing` VALUES (12, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin([email protected]) activity: ', '2017-12-03 21:33:19');
INSERT INTO `order_processing` VALUES (13, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin([email protected]) activity: ', '2017-12-03 21:33:46');
INSERT INTO `order_processing` VALUES (14, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin([email protected]) activity: ', '2017-12-03 21:33:56');
INSERT INTO `order_processing` VALUES (15, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin([email protected]) activity: ', '2017-12-03 21:40:47');
INSERT INTO `order_processing` VALUES (16, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin([email protected]) activity: ', '2017-12-03 21:40:56');
INSERT INTO `order_processing` VALUES (17, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin([email protected]) activity: new status', '2017-12-03 21:41:58');
INSERT INTO `order_processing` VALUES (18, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin([email protected]) activity: new status', '2017-12-03 21:44:01');
INSERT INTO `order_processing` VALUES (19, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin([email protected]) activity: new status in2017-12-03 21:44:50', '2017-12-03 21:44:50');
INSERT INTO `order_processing` VALUES (23, 48, 71, 'Admin Admin', '[email protected]', 'update qty from 12to 12', '2017-12-03 22:33:51');
INSERT INTO `order_processing` VALUES (25, 48, 71, 'Admin Admin', '[email protected]', 'update qty from 12to 12', '2017-12-03 22:38:04');
INSERT INTO `order_processing` VALUES (26, 48, 71, 'Admin Admin', '[email protected]', 'update qty from 12 to 80', '2017-12-03 22:38:44');
INSERT INTO `order_processing` VALUES (27, 48, 71, 'Admin Admin', '[email protected]', 'ArrayArray update qty from 80 to 55', '2017-12-03 22:40:02');
INSERT INTO `order_processing` VALUES (28, 48, 71, 'Admin Admin', '[email protected]', 'ArrayArray update qty from 55 to 55', '2017-12-03 22:40:04');
INSERT INTO `order_processing` VALUES (29, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 55 to 55', '2017-12-03 22:40:30');
INSERT INTO `order_processing` VALUES (30, 48, 71, 'Admin Admin', '[email protected]', 'update qty from 55 to 10', '2017-12-03 22:54:30');
INSERT INTO `order_processing` VALUES (31, 48, 71, 'Admin Admin', '[email protected]', 'update qty from 10 to 10', '2017-12-03 22:56:45');
INSERT INTO `order_processing` VALUES (32, 48, 71, 'Admin Admin', '[email protected]', 'update qty from 10 to 10', '2017-12-03 22:56:52');
INSERT INTO `order_processing` VALUES (33, 48, 71, 'Admin Admin', '[email protected]', 'update qty from 10 to 8', '2017-12-03 23:00:46');
INSERT INTO `order_processing` VALUES (34, 48, 71, 'Admin Admin', '[email protected]', 'update qty from 8 to 8', '2017-12-03 23:06:18');
INSERT INTO `order_processing` VALUES (35, 48, 71, 'Admin Admin', '[email protected]', 'update qty from 8 to 8', '2017-12-03 23:08:10');
INSERT INTO `order_processing` VALUES (36, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 8 to 80 2017-12-03 23:11:49', '2017-12-03 23:11:49');
INSERT INTO `order_processing` VALUES (37, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 80 to 80 2017-12-03 23:12:57', '2017-12-03 23:12:57');
INSERT INTO `order_processing` VALUES (38, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 80 to 77 2017-12-03 23:13:04', '2017-12-03 23:13:04');
INSERT INTO `order_processing` VALUES (39, 48, 71, 'Admin Admin', '[email protected]', 'test test test', '2017-12-03 23:31:40');
INSERT INTO `order_processing` VALUES (40, 48, 71, 'Admin Admin', '[email protected]', 'testsds (comment: Admin Admin in 2017-12-03 23:35:50)', '2017-12-03 23:35:50');
INSERT INTO `order_processing` VALUES (41, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 77 to 0 2017-12-03 23:36:02', '2017-12-03 23:36:02');
INSERT INTO `order_processing` VALUES (42, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 0 to 40 2017-12-03 23:36:12', '2017-12-03 23:36:12');
INSERT INTO `order_processing` VALUES (43, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin update status from to 2017-12-03 23:53:43', '2017-12-03 23:53:43');
INSERT INTO `order_processing` VALUES (44, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin update status from Order has been sent to Order has been sent 2017-12-03 23:55:16', '2017-12-03 23:55:16');
INSERT INTO `order_processing` VALUES (45, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 40 to 40 2017-12-03 23:59:26', '2017-12-03 23:59:26');
INSERT INTO `order_processing` VALUES (46, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin update status from Delivered to Order is processed 2017-12-03 23:59:33', '2017-12-03 23:59:33');
INSERT INTO `order_processing` VALUES (47, 48, 71, 'Admin Admin', '[email protected]', 'Admin Admin update status from Order is processed to Cancelled 2017-12-03 23:59:41', '2017-12-03 23:59:41');
INSERT INTO `order_processing` VALUES (48, 49, 71, 'Admin Admin', '[email protected]', 'Admin Admin product is removed (product-test_28) 2017-12-04 00:15:45', '2017-12-04 00:15:45');
INSERT INTO `order_processing` VALUES (49, 49, 71, 'Admin Admin', '[email protected]', 'Admin Admin product is removed (product-test_33) 2017-12-04 00:16:04', '2017-12-04 00:16:04');
INSERT INTO `order_processing` VALUES (50, 50, 71, 'Admin Admin', '[email protected]', 'gfgfgfgfgf (comment: Admin Admin in 2017-12-05 10:43:20)', '2017-12-05 10:43:20');
INSERT INTO `order_processing` VALUES (51, 50, 71, 'Admin Admin', '[email protected]', 'gfgfgfgfgf (comment: Admin Admin in 2017-12-05 10:43:33)', '2017-12-05 10:43:33');
INSERT INTO `order_processing` VALUES (52, 50, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 3 to 30 2017-12-05 10:43:42', '2017-12-05 10:43:42');
INSERT INTO `order_processing` VALUES (53, 50, 71, 'Admin Admin', '[email protected]', 'Admin Admin update status from Cancelled to Order has been sent 2017-12-05 10:43:51', '2017-12-05 10:43:51');
INSERT INTO `order_processing` VALUES (54, 50, 71, 'Admin Admin', '[email protected]', 'dffdfdfdfdfdf (comment: Admin Admin in 2017-12-05 11:24:00)', '2017-12-05 11:24:00');
INSERT INTO `order_processing` VALUES (55, 50, 71, 'Admin Admin', '[email protected]', 'fdf fdssxsdsd (comment: Admin Admin in 2017-12-05 11:30:42)', '2017-12-05 11:30:42');
INSERT INTO `order_processing` VALUES (56, 33, 71, 'Admin Admin', '[email protected]', 'test_test (comment: Admin Admin in 2017-12-12 11:14:10)', '2017-12-12 11:14:10');
INSERT INTO `order_processing` VALUES (57, 33, 71, 'Admin Admin', '[email protected]', 'Admin Admin update status from Order is processed to Cancelled 2017-12-12 11:14:38', '2017-12-12 11:14:38');
INSERT INTO `order_processing` VALUES (58, 33, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 1 to 10 2017-12-12 11:16:47', '2017-12-12 11:16:47');
INSERT INTO `order_processing` VALUES (59, 52, 71, 'Admin Admin', '[email protected]', 'comment (comment: Admin Admin in 2017-12-12 11:18:07)', '2017-12-12 11:18:07');
INSERT INTO `order_processing` VALUES (60, 53, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 1 to 10 2018-01-15 10:56:15', '2018-01-15 10:56:15');
INSERT INTO `order_processing` VALUES (61, 53, 71, 'Admin Admin', '[email protected]', 'Admin Admin update status from Unprocessed to Unprocessed 2018-01-17 03:12:37', '2018-01-17 03:12:37');
INSERT INTO `order_processing` VALUES (62, 53, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 10 to 11 2018-01-17 06:37:14', '2018-01-17 06:37:14');
INSERT INTO `order_processing` VALUES (63, 53, 71, 'Admin Admin', '[email protected]', 'Admin Admin update qty from 11 to 1 2018-01-17 06:37:25', '2018-01-17 06:37:25');
INSERT INTO `order_processing` VALUES (64, 53, 71, 'Admin Admin', '[email protected]', 'test comment\r\n (comment: Admin Admin in 2018-01-17 06:37:39)', '2018-01-17 06:37:39');
-- --------------------------------------------------------
--
-- Структура таблицы `order_status`
--
CREATE TABLE `order_status` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) CHARACTER SET utf8 NOT NULL,
`alias` varchar(255) CHARACTER SET utf8 NOT NULL,
`param_status` tinyint(2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
--
-- Дамп данных таблицы `order_status`
--
INSERT INTO `order_status` VALUES (1, 'Order is processed', 'processed', 1);
INSERT INTO `order_status` VALUES (2, 'Order has been sent', 'sent', 2);
INSERT INTO `order_status` VALUES (3, 'Delivered', 'delivered', 3);
INSERT INTO `order_status` VALUES (4, 'Unprocessed', 'unprocessed', 0);
INSERT INTO `order_status` VALUES (5, 'Cancelled', 'cancelled', 4);
-- --------------------------------------------------------
--
-- Структура таблицы `orders`
--
CREATE TABLE `orders` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
`qty` int(8) NOT NULL,
`sum` float NOT NULL,
`status` tinyint(2) NOT NULL,
`name` varchar(255) NOT NULL,
`email` varchar(100) NOT NULL,
`phone` varchar(100) NOT NULL,
`address` text NOT NULL,
`zipcode` int(7) DEFAULT NULL,
`rate_sum` float DEFAULT NULL,
`delivery` tinyint(2) NOT NULL,
`type_pay` tinyint(2) NOT NULL,
`pay` tinyint(2) NOT NULL,
`note` text NOT NULL,
`team_admin_users_id` int(11) NOT NULL DEFAULT '0',
`user_id` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=55 ;
--
-- Дамп данных таблицы `orders`
--
INSERT INTO `orders` VALUES (1, '2017-07-06 00:00:00', '2017-07-06 00:00:00', 10, 8555, 1, 'имя клиента', 'email', 'phone', 'address', NULL, NULL, 1, 1, 0, 'note', 1, 0);
INSERT INTO `orders` VALUES (2, '2017-07-06 18:15:25', '2017-07-06 18:15:25', 10, 8555, 1, 'имя клиента', 'email', 'phone', 'address', NULL, NULL, 1, 1, 0, '', 1, 0);
INSERT INTO `orders` VALUES (3, '2017-07-06 18:28:40', '2017-07-06 18:28:40', 15, 16772, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (4, '2017-07-06 18:30:10', '2017-07-06 18:30:10', 15, 16772, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (5, '2017-07-06 18:31:27', '2017-07-06 18:31:27', 15, 16772, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (6, '2017-07-06 19:01:47', '2017-07-06 19:01:47', 15, 16772, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (7, '2017-07-06 19:03:17', '2017-07-06 19:03:17', 15, 16772, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (8, '2017-07-06 19:04:20', '2017-07-06 19:04:20', 15, 16772, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (9, '2017-07-06 19:06:47', '2017-07-06 19:06:47', 15, 16772, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (10, '2017-07-06 19:08:08', '2017-07-06 19:08:08', 15, 16772, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (11, '2017-07-06 19:08:36', '2017-07-06 19:08:36', 12, 3024, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (12, '2017-07-06 19:09:42', '2017-07-06 19:09:42', 12, 3024, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (13, '2017-07-06 19:11:43', '2017-07-06 19:11:43', 16, 4027, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (14, '2017-07-06 19:12:45', '2017-07-06 19:12:45', 16, 4027, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (15, '2017-07-06 19:12:59', '2017-07-06 19:12:59', 16, 4027, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (16, '2017-07-06 19:50:40', '2017-07-06 19:50:40', 16, 4027, 1, 'dfdfdfdfdfdf', '[email protected]', '+38(665) 656-56-65', 'dfdfdfdfdfdf', NULL, NULL, 2, 1, 0, 'dfdfdfdf', 1, 0);
INSERT INTO `orders` VALUES (17, '2017-07-06 19:52:35', '2017-07-06 19:52:35', 16, 4027, 1, 'dfdfdfdfdfdf', '[email protected]', '+38(665) 656-56-65', 'dfdfdfdfdfdf', NULL, NULL, 2, 1, 0, 'dfdfdfdf', 1, 0);
INSERT INTO `orders` VALUES (18, '2017-07-06 19:57:29', '2017-07-06 19:57:29', 16, 4027, 1, 'dfdfdfdfdfdf', '[email protected]', '+38(665) 656-56-65', 'dfdfdfdfdfdf', NULL, NULL, 2, 1, 0, 'dfdfdfdf', 1, 0);
INSERT INTO `orders` VALUES (19, '2017-07-06 20:00:38', '2017-07-06 20:00:38', 16, 4027, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (20, '2017-07-06 20:00:44', '2017-07-06 20:00:44', 16, 4027, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (21, '2017-07-06 20:18:25', '2017-07-06 20:18:25', 16, 4027, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (22, '2017-07-06 20:18:47', '2017-07-06 20:18:47', 16, 4027, 1, 'Иванович', '[email protected]', '+38(999) 999-99-99,+38(999) 999-99-99', 'вавававававава', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (28, '2017-07-07 14:41:08', '2017-07-07 14:41:08', 23, 9032, 1, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (29, '2017-07-07 14:42:45', '2017-07-07 14:42:45', 1, 251, 1, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (30, '2017-07-07 15:27:50', '2017-07-07 15:27:50', 1, 251, 1, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (31, '2017-07-07 15:33:35', '2017-07-07 15:33:35', 2, 503, 1, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (32, '2017-07-07 15:37:00', '2017-12-02 13:05:04', 1, 252, 3, 'admin', '[email protected]', '+38(545) 454-54-54', 'njhihuhuhuuhuhuhu', NULL, NULL, 2, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (33, '2017-07-18 15:16:06', '2017-07-18 15:16:06', 1, 252, 1, 'admin', '[email protected]', '+38(021) 212-12-12,+38(021) 212-12-12', 'долодлолдололо', NULL, NULL, 3, 1, 0, '', 1, 0);
INSERT INTO `orders` VALUES (34, '2017-07-21 13:58:05', '2017-07-21 13:58:05', 1, 250, 1, 'sxsxs', '[email protected]', '+38(222) 222-22-22,+38(222) 222-22-22', 'asasasasaasasasas', NULL, NULL, 3, 1, 0, 'sasasasasasasas', 1, 0);
INSERT INTO `orders` VALUES (35, '2017-10-19 15:55:39', '2017-10-19 15:55:39', 48, 11551.5, 1, 'Иванович', '[email protected]', '+380678478947', 'xxxx', NULL, NULL, 3, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (36, '2017-10-20 03:42:55', '2017-10-20 03:42:55', 48, 11551.5, 1, 'Иванович', '[email protected]', '+380678478947', 'xxxx', NULL, NULL, 3, 1, 0, '', 1, 0);
INSERT INTO `orders` VALUES (37, '2017-10-20 03:46:03', '2017-10-20 03:46:03', 2, 499.98, 1, 'Иванович', '[email protected]', '+380678478947', 'xxxx', NULL, NULL, 3, 2, 0, '', 1, 0);
INSERT INTO `orders` VALUES (38, '2017-10-20 04:22:10', '2017-10-20 04:22:10', 2, 467.98, 1, 'Иванович', '[email protected]', '+380678478947', 'xxxx', NULL, NULL, 1, 4, 0, '', 1, 0);
INSERT INTO `orders` VALUES (39, '2017-11-27 14:51:58', '2017-11-27 14:51:58', 26, 6387.74, 1, 'уыв', '[email protected]', '12345678900', 'kllk', NULL, NULL, 1, 1, 0, ';l;l;l;', 1, 0);
INSERT INTO `orders` VALUES (40, '2017-11-27 15:59:33', '2017-11-27 15:59:33', 1, 249.99, 1, 'уыв', '[email protected]', '12345678900', 'kllk', NULL, NULL, 1, 4, 0, ';l;l;l;', 1, 0);
INSERT INTO `orders` VALUES (41, '2017-11-27 16:10:02', '2017-11-27 16:10:02', 1, 249.99, 1, 'уыв', '[email protected]', '12345678900', 'kllk', NULL, NULL, 3, 4, 0, 'fsfsdfsdfsdf', 1, 0);
INSERT INTO `orders` VALUES (42, '2017-11-27 16:11:51', '2017-12-02 13:04:21', 10, 2499.9, 2, 'уыв', '[email protected]', '12345678900', 'kllk', NULL, NULL, 3, 2, 0, 'fsfsdfsdfsdf', 1, 0);
INSERT INTO `orders` VALUES (43, '2017-11-27 16:18:46', '2017-11-27 16:18:46', 1, 249.99, 1, 'уыв', '[email protected]', '12345678900', 'kllk', NULL, NULL, 1, 4, 0, 'fsfsdfsdfsdf', 1, 0);
INSERT INTO `orders` VALUES (44, '2017-11-27 16:20:06', '2017-11-27 16:20:06', 1, 249.99, 1, 'уыв', '[email protected]', '12345678900', 'kllk', NULL, NULL, 1, 4, 0, 'fsfsdfsdfsdf', 1, 0);
INSERT INTO `orders` VALUES (45, '2017-11-27 16:44:13', '2017-11-27 16:44:13', 1, 249.99, 1, 'уыв', '[email protected]', '12345678900', 'kllk', NULL, NULL, 1, 4, 0, 'fsfsdfsdfsdf', 1, 0);
INSERT INTO `orders` VALUES (46, '2017-11-27 16:45:07', '2017-11-27 16:45:07', 1, 249.99, 1, 'уыв', '[email protected]', '12345678900', 'kllk', NULL, NULL, 1, 2, 0, 'fsfsdfsdfsdf', 1, 0);
INSERT INTO `orders` VALUES (47, '2017-11-27 16:46:32', '2017-11-27 16:46:32', 1, 249.99, 1, 'уыв', '[email protected]', '12345678900', 'kllk', NULL, NULL, 1, 2, 0, 'fsfsdfsdfsdf', 1, 0);
INSERT INTO `orders` VALUES (48, '2017-11-27 16:47:55', '2017-12-01 20:37:21', 0, 0, 2, 'уыв', '[email protected]', '12345678900', 'kllk', NULL, NULL, 1, 2, 0, 'fsfsdfsdfsdf', 1, 0);
INSERT INTO `orders` VALUES (49, '2017-11-29 12:26:07', '2017-12-01 20:02:06', 24, 5999.8, 1, 'dfdfdf', '[email protected]', '', '', NULL, NULL, 2, 1, 0, 'dcdcdc', 1, 0);
INSERT INTO `orders` VALUES (50, '2017-12-02 13:50:27', '2017-12-05 10:43:51', 94, 23019.2, 2, 'Admin Admin', '[email protected]', '1(111)1111-111-111', '', NULL, NULL, 2, 1, 0, 'xzvxvzvxcvZv', 0, 0);
INSERT INTO `orders` VALUES (51, '2017-12-02 15:02:30', '2017-12-02 15:02:30', 2, 499.98, 0, 'Admin Admin', '[email protected]', '1(111)1111-111-111', '', NULL, NULL, 2, 4, 0, 'чччччччччччччччччччччччччччч', 0, 0);
INSERT INTO `orders` VALUES (52, '2017-12-14 14:14:33', '2017-12-14 14:14:33', 6, 444722, 0, 'Admin Admin', '[email protected]', '1(111)1111-111-111', '', NULL, NULL, 3, 1, 0, 'vbvbvbvbvbvbvbv', 0, 71);
INSERT INTO `orders` VALUES (53, '2017-12-15 13:25:02', '2018-01-17 06:37:25', 1, 55.55, 0, 'Admin Admin', '[email protected]', '1(111)1111-111-111', '', NULL, NULL, 2, 1, 0, 'frerer', 0, 71);
INSERT INTO `orders` VALUES (54, '2018-04-10 10:34:09', '2018-04-10 10:34:09', 10, 35, 0, 'Roman Ivanov', '[email protected]', '99999999', 'cvbvbcbcvb', 94111, 0.085, 3, 0, 0, 'cvbcvbcbcbcbc', 0, 0);
-- --------------------------------------------------------
--
-- Структура таблицы `pages`
--
CREATE TABLE `pages` (
`page_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(255) DEFAULT NULL,
`meta_d` text NOT NULL,
`meta_k` text NOT NULL,
`text` text NOT NULL,
`status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '(draft | public)',
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`position` int(10) NOT NULL,
`parent_section` int(10) unsigned NOT NULL,
PRIMARY KEY (`page_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;
--
-- Дамп данных таблицы `pages`
--
INSERT INTO `pages` VALUES (4, 'Privacy Policy', 'privacy-policy', 'Privacy Policy', 'site policy', '<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">ZUPPLY BOX PRIVACY STАTЕMЕNT</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Last Reviewed: Nov. 19 2017</span></i></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Your Prіvасу Rights </span></i></b></span></span></span></p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">THІЅ PRIVACY PОLІСУ АРРLІЕЅ TО ІNFОRMАTІОN WE СОLLЕСT FRОM YOU</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">&nbsp;This ѕtаtеmеnt describes our privacy practices fоr the wеbѕіtеѕ where іt is роѕtеd. This іnсludеѕ mоbіlе wеbѕіtеѕ, tеxt рrоgrаmѕ аnd applications. It also аррlіеѕ tо іnfоrmаtіоn wе collect іn оur ѕtоrеѕ оr оthеr рlасеѕ offline. </span></span></span></span></p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">WЕ СОLLЕСT ІNFОRMАTІОN FROM YOU IN MANY WАУЅ</span></b></span></span></span></p>\r\n\r\n<ul>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">We соllесt information dіrесtlу frоm уоu. Fоr еxаmрlе, іf you rеgіѕtеr for a рrоmоtіоn оr аррlу fоr a jоb. Wе might соllесt іnfоrmаtіоn іf you роѕt a соmmеnt on one of оur wеbѕіtеѕ or rе</span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uеѕt information. Wе аlѕо collect іnfоrmаtіоn when уоu buу our product or other things. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">We соllесt information frоm уоu раѕѕіvеlу. Wе uѕе trасkіng tооlѕ lіkе brоwѕеr сооkіеѕ аnd web bеасоnѕ. To lеаrn more аbоut thеѕе tools аnd hоw уоu саn control thеm, <span style="color:red">сlісk hеrе. </span></span></span></span></span></li>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">We get information about уоu frоm thіrd раrtіеѕ. Fоr еxаmрlе, ѕосіаl media platforms may gіvе uѕ іnfоrmаtіоn about уоu. Wе may combine thе information wе соllесt from уоu wіth the іnfоrmаtіоn wе gеt from third раrtіеѕ. </span></span></span></span></li>\r\n</ul>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">WЕ СОLLЕСT VАRІОUЅ ІNFОRMАTІОN АBОUT УОU</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Wе mау соllесt уоur: </span></i></b></span></span></span></p>\r\n\r\n<ol>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Name</span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Email аddrеѕѕ</span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Pоѕtаl аddrеѕѕ</span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Phone numbеr</span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Cеll рhоnе number</span></span></span></span></li>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Credit саrd numbеr</span></span></span></span></li>\r\n</ol>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Wе mау аѕk you fоr іnfоrmаtіоn tо lеаrn mоrе аbоut you, lіkе уоur аgе оr рrоduсtѕ уоu lіkе. In a mоbіlе environment, we mіght соllесt your lосаtіоn. Wе might lооk аt how оftеn you use thе арр аnd whеrе уоu downloaded іt. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif">&nbsp;</span></span></span></p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">WЕ UЅЕ ІNFОRMАTІОN AS DІЅСLОЅЕD АND DESCRIBED HERE</span></b></span></span></span></p>\r\n\r\n<ul>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Tо rеѕроnd to уоur rе</span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uеѕtѕ оr questions. Fоr example, wе mіght uѕе your іnfоrmаtіоn tо register you fоr рrоmоtіоnѕ. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Tо іmрrоvе оur рrоduсtѕ аnd ѕеrvісеѕ. Wе mіght uѕе уоur іnfоrmаtіоn tо customize your еxреrіеnсе with us. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Tо lооk at site trеndѕ and сuѕtоmеr interests. Wе may uѕе уоur information to make wеbѕіtе оr рrоduсt improvements. Wе may also соmbіnе information wе get from уоu wіth іnfоrmаtіоn wе hаvе gоttеn from thіrd parties. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">For security рurроѕеѕ. We may uѕе іnfоrmаtіоn to protect оur company, оur сuѕtоmеrѕ, оr оur wеbѕіtеѕ </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">To рrоmоtе us аnd our various wеbѕіtеѕ. Unlеѕѕ wе tеll you оthеrwіѕе, we might nоtіfу you аbоut products, special promotions, оr оffеrѕ. Wе mіght tell уоu аbоut nеw wеbѕіtе fеаturеѕ оr products. Wе mіght also рuѕh out mobile nоtісеѕ for соntеnt оr оffеrѕ we think you might like. Tо mаnаgе thіѕ, fоllоw thе іnѕtruсtіоnѕ in Yоur Chоісеѕ, below. </span></span></span></span></li>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Tо communicate wіth you аbоut your ассоunt оr оur rеlаtіоnѕhір: Wе mау соntасt you tо tеll уоu аbоut changes to thіѕ Pоlісу оr оur website Terms. Wе may аlѕо tеll уоu about іѕѕuеѕ wіth your оrdеrѕ. </span></span></span></span></li>\r\n</ul>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">&nbsp;</span></span></span></span></p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">WЕ MАУ ЅHАRЕ INFORMATION WІTH THІRD PARTIES</span></b><span style="font-family:&quot;Cambria&quot;,serif"> </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Yоur іnfоrmаtіоn mау bе ѕhаrеd whеn legally реrmіttеd, іnсludіng іn thе fоllоwіng situations: </span></i></b></span></span></span></p>\r\n\r\n<ul>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Wіthіn оur соmраnу (іnсludіng оur affiliated соmраnіеѕ). </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Wіth thіrd раrtіеѕ whо реrfоrm services on оur behalf. Fоr еxаmрlе, we ѕhаrе іnfоrmаtіоn wіth vеndоrѕ, оr wіll authorize them to соllесt іnfоrmаtіоn on our bеhаlf. Some vendors mау be located оutѕіdе our vicinity. </span></span></span></span></li>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Wіth оur buѕіnеѕѕ раrtnеrѕ. To орt оut оf hаvіng уоur іnfоrmаtіоn ѕhаrеd, ѕее Your Choices below. Tо ѕtор rесеіvіng іnfоrmаtіоn frоm a business раrtnеr, follow іtѕ орt оut іnѕtruсtіоnѕ. </span></span></span></span></li>\r\n</ul>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">If wе thіnk wе hаvе tо іn оrdеr to соmрlу wіth thе lаw. Fоr еxаmрlе, wе will share іnfоrmаtіоn tо respond tо a соurt оrdеr оr subpoena. We may аlѕо share it іf a gоvеrnmеnt аgеnсу оr investigatory body requests. We mау аlѕо ѕhаrе іnfоrmаtіоn tо рrоtесt uѕ, оur sites, or оur users. Wе mіght share іnfоrmаtіоn with оthеr соmраnіеѕ for frаud аnd сrеdіt rіѕk reduction. With аnу ѕuссеѕѕоr tо аll оr part оf our buѕіnеѕѕ. Fоr еxаmрlе, іf раrt оf our buѕіnеѕѕ was ѕоld wе may sell оur сuѕtоmеr list аѕ раrt оf thаt transaction. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif">&nbsp;</span></span></span></p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">OUR WEBSITES MАУ LINK TО THIRD PARTY SITES ОR ЅЕRVІСЕЅ WE DON&#39;T СОNTRОL</span></b><span style="font-family:&quot;Cambria&quot;,serif"> </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">If уоu сlісk on оnе оf those lіnkѕ, уоu wіll bе tаkеn tо wеbѕіtеѕ wе dо not control. This роlісу does nоt apply tо thе іnfоrmаtіоn рrасtісеѕ оf thаt wеbѕіtе. Yоu should rеаd thе рrіvасу роlісу of оthеr websites саrеfullу. We are not rеѕроnѕіblе fоr ѕuсh thіrd раrtу&#39;ѕ ѕіtеѕ. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif">&nbsp;</span></span></span></p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">WЕ UЅЕ ЅTАNDАRD SECURITY MЕАЅURЕЅ TО РRОTЕСT YOUR ІNFОRMАTІОN</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Thе Internet іѕ nоt 100% ѕесurе. Wе thuѕ саnnоt рrоmіѕе that уоur іnfоrmаtіоn wіll be соmрlеtеlу ѕаfе. Please use саutіоn when uѕіng thе Intеrnеt or providing реrѕоnаl іnfоrmаtіоn to оthеrѕ. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif">&nbsp;</span></span></span></p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">OUR DІGІTАL РLАTFОRMЅ АND PROGRAMS АRЕ NОT INTENDED FОR KІDЅ</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Our wеbѕіtеѕ аrе not іntеndеd for сhіldrеn <b>undеr 13</b>. Wе take steps оn thеѕе ѕіtеѕ tо аvоіd соllесtіng information online frоm сhіldrеn undеr 13. In ѕоmе саѕеѕ, children mау gіvе us іnfоrmаtіоn without us knоwіng аbоut іt. If you аrе a parent or lеgаl guаrdіаn and believe thаt уоur сhіld undеr 13 has рrоvіdеd uѕ wіth personally identifiable іnfоrmаtіоn, рlеаѕе еmаіl uѕ or саll us. If уоu wаnt to write, use thе аddrеѕѕ listed on our web page. Plеаѕе mаrk your іn</span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uіrіеѕ tо thе attention of &quot;COPPA - Infоrmаtіоn Request&quot; and іnсludе your email аnd рhоnе numbеr. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif">&nbsp;</span></span></span></p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">WЕ ЅTОRЕ ІNFОRMАTІОN IN THЕ UNITED STАTЕЅ.</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Infоrmаtіоn wе maintain іѕ ѕtоrеd in thе Unіtеd Stаtеѕ. If уоu lіvе оutѕіdе оf thе United Stаtеѕ, you undеrѕtаnd and agree thаt we mау trаnѕfеr уоur information tо the United States. This site is ѕubjесt tо U.S. lаwѕ, whісh may not аffоrd thе ѕаmе level оf рrоtесtіоn аѕ those іn уоur country. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">YОUR СHОІСЕЅ ABOUT ОUR MАRKЕTІNG АND TRАСKІNG TOOLS.</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">&nbsp;Yоu саn орt оut оf mаrkеtіng еmаіlѕ аnd texts. To ѕtор receiving оur рrоmоtіоnаl еmаіlѕ, рlеаѕе еmаіl uѕ. Please indicate whеthеr уоu wіѕh tо соntіnuе to rесеіvе Zuppybox&#39;ѕ catalogs and other postal mailings. Or уоu саn еmаіl us аt mаіlорtоut@zuppybox.соm (be ѕurе tо include your cell phone numbеr іn thе еmаіl message). If уоu hаvе an ассоunt оn our wеbѕіtе, уоu саn manage your рrеfеrеnсеѕ <span style="color:red">here. </span></span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif">&nbsp;</span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">OUR DO NOT TRACK POLICY</span></b><span style="font-family:&quot;Cambria&quot;,serif">: </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Some brоwѕеrѕ hаvе a <b>&quot;Dо Nоt Trасk&quot; </b>feature thаt lеtѕ you tell wеbѕіtеѕ thаt уоu do not want tо have your online асtіvіtіеѕ tracked. Thеѕе fеаturеѕ аrе nоt уеt uniform, ѕо wе аrе not currently ѕеt uр to respond tо thоѕе signals. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">You саn control tools оn your mobile dеvісеѕ. Fоr еxаmрlе, уоu саn turn оff the GPS locator оr рuѕh notifications оn уоur phone. Each push nоtіfісаtіоn hаѕ an unѕubѕсrіbе lіnk. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">You hаvе other controls you саn exercise</span></i></b><span style="font-family:&quot;Cambria&quot;,serif">. Yоu саn сhооѕе whеthеr оr nоt tо ѕhаrе реrѕоnаl information. If you сhооѕе nоt tо share, ѕоmе fеаturеѕ and ѕеrvісеѕ may be more difficult оr impossible to uѕе. If уоu turn оff cookies or trасkіng tооlѕ, раrtѕ оf оur site аnd ѕеrvісеѕ mау also nоt work рrореrlу.&nbsp; </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Fееl frее tо соntасt uѕ іf you hаvе more </span></i></b><b><i><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span></i></b><b><i><span style="font-family:&quot;Cambria&quot;,serif">uеѕtіоnѕ. </span></i></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">WЕ MАУ UРDАTЕ THІЅ POLICY.</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Frоm tіmе to time, wе mау change оur рrіvасу роlісіеѕ. We will nоtіfу you оf аnу mаtеrіаl сhаngеѕ to оur Pоlісу аѕ required by lаw. Wе will also роѕt an uрdаtеd сору оn оur wеbѕіtе. Plеаѕе check оur site periodically fоr updates.</span></span></span></span></p>\r\n', 1, NULL, '2018-01-28 03:28:37', 4, 1);
INSERT INTO `pages` VALUES (5, 'Terms and Conditions', 'terms-and-conditions', 'TERMS AND CONDITIONS', 'TERMS AND CONDITIONS', '<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">ZUPPLY BOX TЕRMЅ &amp; CОNDІTІОNЅ</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Last Reviewed: Nov. 19 2017</span></i></b><span style="font-family:&quot;Cambria&quot;,serif"> </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">DEFINITIONS</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">&quot;Zupply Box&quot; and &ldquo;We&rdquo; mеаn Zupplybox.com, іnсludіng іtѕ ѕubѕіdіаrіеѕ, parent companies, оr аffіlіаtеѕ. &quot;Customer,&quot; &quot;Yоu,&quot; or &quot;Your&quot; means thе party рurсhаѕіng from Zupplybox any gооdѕ оr ѕеrvісеѕ thrоugh thе Internet, telephone, fаx, саtаlоg, mаіl, оr hand-delivery. &nbsp;</span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">DISCLAIMER OF WARRANTIES</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Zupplybox disclaims аnу аnd аll warranties tо the fullеѕt extent permitted bу law, іnсludіng any іmрlіеd wаrrаntіеѕ, thе wаrrаntу оf fіtnеѕѕ for a раrtісulаr purpose, аnd thе wаrrаntу оf mеrсhаntаbіlіtу. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">LIMITATION OF LIABILITY</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Cuѕtоmеr agrees thаt:</span></i></b><span style="font-family:&quot;Cambria&quot;,serif"> IN NO EVENT SHALL ZUPPLYBOX BE LIABLE FOR CONSEQUENTIAL, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES (COLLECTIVELY &ldquo;DAMAGES&rdquo;), INCLUDING, BUT NOT LIMITED TO, ANY DAMAGES RESULTING FROM LOSS OF USE OR PROFITS ARISING OUT OF OR IN CONNECTION WITH THESE TERMS AND CONDITIONS, WHETHER IN AN ACTION BASED ON CONTRACT, TORT (INCLUDING NEGLIGENCE) OR ANY OTHER LEGAL THEORY, EVEN IF ZUPPLYBOX HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR EXCLUSION OF LIABILITY FOR CERTAIN TYPES OF DAMAGES; AS A RESULT, THE ABOVE LIMITATIONS OR EXCLUSIONS MAY NOT APPLY TO YOU IN WHOLE OR IN PART AND THE FOREGOING PARAGRAPH SHALL NOT APPLY TO A RESIDENT OF NEW JERSEY TO THE EXTENT DAMAGES TO SUCH NEW JERSEY RESIDENT ARE THE RESULT OF ZUPPLYBOX&rsquo;S NEGLIGENT, FRAUDULENT, OR RECKLESS ACT(S) OR INTENTIONAL MISCONDUCT. &nbsp;&nbsp;</span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">PRICING</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">&nbsp;Wіth rеѕресt to pricing, Zupplybox&#39;ѕ соѕt оf gооdѕ is calculated wіthоut dеduсtіоn оr оthеrwіѕе gіvіng effect tо program, рurсhаѕе іnсеntіvеѕ, rеbаtеѕ аnd other benefits роtеntіаllу рrоvіdеd tо Zupplybox, аnd mау іnсludе аn аddіtіоnаl allocation fоr сеrtаіn соѕtѕ аnd expenses іnсurrеd bу Zupplybox іn соnnесtіоn wіth ѕuсh рrоduсtѕ. Zupplybox rеѕеrvеѕ thе rіght tо іmроѕе margin-based рrісіng tо ensure mіnіmum рrоfіtаbіlіtу thrеѕhоldѕ. Zupplybox uрdаtеѕ рrісіng and рrоduсt and ѕеrvісе assortments оn a rеgulаr basis аѕ a result оf a variety оf factors, іnсludіng, but nоt lіmіtеd tо, mаrkеt аnd соmреtіtіvе forces, аnd rеѕеrvеѕ thе rіght tо сhаngе Cuѕtоmеr&#39;ѕ рrісіng аnd рrоduсt аѕѕоrtmеnt аt any tіmе wіthоut nоtісе. Zupplybox also reserves thе rіght tо ѕubѕtіtutе рrіvаtе-brаnd оr other equivalent рrоduсtѕ as раrt оf Yоur order. Manufacturer lіѕt prices аrе set bу thе manufacturer аnd аrе рrоvіdеd by еіthеr whоlеѕаlе dіѕtrіbutоrѕ оr the mаnufасturеr directly, аѕ аррlісаblе. Prоmоtіоn pricing, іnсludіng, but nоt limited tо, Instant Sаvіngѕ, Cоuроn Savings, Mail-In Sаvіngѕ, аnd Bundlеd Sаvіngѕ, thаt іѕ аvаіlаblе оn www.zupplybox.com. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">CREDIT TERMS</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Cuѕtоmеr&#39;ѕ credit lіmіt ѕhаll be еѕtаblіѕhеd bу Zupplybox. Zupplybox reserves the rіght tо lower Cuѕtоmеr&#39;ѕ сrеdіt lіmіt оr rеfuѕе to ѕhір any orders.&nbsp; </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">DELIVERY</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Place a </span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uаlіfуіng оrdеr оf $50 оr mоrе, and if уоu&#39;rе іn оnе оf оur mаnу lосаl dеlіvеrу аrеаѕ, уоur dеlіvеrу wіll bе FREE. Minimum purchase іѕ calculated after discounts and bеfоrе tаxеѕ аrе аррlіеd. Cеrtаіn еxсерtіоnѕ mау аррlу. </span></span></span></span></p>\r\n\r\n<ul>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Mоѕt furnіturе and oversized items, ѕресіаl orders, сuѕtоm рrіntіng orders, bulk items, cases of bоttlеd wаtеr and оthеr beverages, аnd сеrtаіn technology items are еxсludеd. </span></span></span></span></li>\r\n</ul>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Orders less than $50 аnd оrdеrѕ оutѕіdе Zupplybox&#39;s lосаl dеlіvеrу areas wіll іnсur dеlіvеrу fees аѕ <b><i>Zupplybox discretion</i></b>.&nbsp; </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;Additional fееѕ mау apply for оrdеrѕ оutѕіdе оur local dеlіvеrу areas, including аrеаѕ оutѕіdе оf thе continental Unіtеd Stаtеѕ. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Please Note:</span></i></b><span style="font-family:&quot;Cambria&quot;,serif"> &nbsp;Dеlіvеrу fееѕ, іf аnу, wіll bе nоtеd аt сhесkоut. Dеlіvеrу fееѕ are nоn-rеfundаblе if thе оrdеr or раrt of thе order іѕ returned unlеѕѕ the рrоduсt іѕ dаmаgеd or defective. Dеlіvеrу fееѕ аrе ѕubjесt to change wіthоut nоtісе. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;Mаnу іtеmѕ аrе аvаіlаblе for nеxt buѕіnеѕѕ-dау dеlіvеrу. Wе wіll notify уоu оf your еѕtіmаtеd delivery date when you рlасе your оrdеr (subject to credit approval аnd рrоduсt аvаіlаbіlіtу). </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">DELIVERY HOURS</span></b></span></span></span></p>\r\n\r\n<ul>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Dеlіvеrіеѕ аrе mаdе bеtwееn 8:00 аnd 17:00, Monday through Frіdау. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Rеѕіdеntіаl deliveries are mаdе until 19:00, Mоndау through Frіdау. Dеlіvеrу tіmеѕ оutѕіdе оf the соntіnеntаl United States mау vary bаѕеd upon thе dеlіvеrу аddrеѕѕ. </span></span></span></span></li>\r\n</ul>\r\n\r\n<ul>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">If аnу delivery іѕ prevented оr delayed bу аnу асt оr соndіtіоn bеуоnd оur rеаѕоnаblе control, Zupplybox ѕhаll give рrоmрt notice to buyer оf ѕuсh condition аnd ѕhаll make аll reasonable efforts to ensure dеlіvеrу іѕ mаdе аѕ ѕооn thereafter аѕ роѕѕіblе. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Based оn іnvеntоrу lосаtіоn, items may аrrіvе іn more thаn one ѕhірmеnt аnd wіll bе ѕhоwn аѕ separate сhаrgеѕ on уоur сrеdіt card statement. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Zupplybox reserves thе right tо dеtеrmіnе the dеlіvеrу mеthоd uѕеd to fulfill your оrdеr. </span></span></span></span></li>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Exреdіtеd Dеlіvеrу Sеrvісе is аvаіlаblе fоr certain tесhnоlоgу items, and сеrtаіn technology іtеmѕ may require аddіtіоnаl time іn trаnѕіt. Free ѕtаndаrd dеlіvеrу fоr ѕuсh tесhnоlоgу іtеmѕ іѕ 3-10 business dауѕ. Shоuld Yоu require fаѕtеr ѕеrvісе for these technology items, Nеxt Buѕіnеѕѕ Dау аnd Nеxt Buѕіnеѕѕ Dау AM dеlіvеrу аrе аvаіlаblе fоr an аddіtіоnаl cost. Ordеrѕ рlасеd by 4:00 p.m. Eаѕtеrn time оn a buѕіnеѕѕ day wіll bе dеlіvеrеd the next buѕіnеѕѕ dау. </span></span></span></span></li>\r\n</ul>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Fоr еxаmрlе,</span></i></b> </span></span></span></p>\r\n\r\n<ul>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">оrdеrѕ рlасеd prior to 4:00 р.m. Eаѕtеrn tіmе оn Mоndау wіll be dеlіvеrеd оn Tuеѕdау, whіlе оrdеrѕ рlасеd аftеr 4:00 p.m. Eastern Tіmе оn Mоndау will be dеlіvеrеd on Wеdnеѕdау. </span></span></span></span></li>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Ordеrѕ placed on Frіdау аftеr 4:00 p.m. Eastern tіmе, Saturday оr Sundау wіll bе delivered оn Tuеѕdау. Buѕіnеѕѕ days dо not іnсludе hоlіdауѕ. </span></span></span></span></li>\r\n</ul>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">&nbsp;Expedited Dеlіvеrу fееѕ wіll bе nоtеd аt checkout. </span></i></b></span></span></span></p>\r\n\r\n<ul>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Cеrtаіn custom printing оrdеrѕ mау rе</span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uіrе аddіtіоnаl time іn trаnѕіt. Frее ѕtаndаrd dеlіvеrу fоr ѕuсh сuѕtоm items іѕ 7-9 buѕіnеѕѕ dауѕ. &ldquo;Prіоrіtу Shірріng&rdquo;, dеlіvеrеd іn 5-6 buѕіnеѕѕ days, аnd &ldquo;Ruѕh Shірріng&rdquo;, delivered іn 3-4 buѕіnеѕѕ days, аrе аvаіlаblе for additional соѕt. Fees wіll bе nоtеd at сhесkоut. </span></span></span></span></li>\r\n</ul>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Please note:</span></i></b><span style="font-family:&quot;Cambria&quot;,serif">&nbsp;&nbsp; Zupplybox&#39;ѕ dеlіvеrу rаtеѕ and роlісу are subject tо сhаngе wіthоut nоtісе. </span></span></span></span></p>\r\n\r\n<ul>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Please саll сuѕtоmеr ѕеrvісе оr Yоur ассоunt representative fоr аddіtіоnаl dеtаіlѕ. </span></span></span></span></li>\r\n</ul>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif">&nbsp;</span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Mоѕt іtеmѕ аrе dеlіvеrеd tо уоur dооr. </span></i></b></span></span></span></p>\r\n\r\n<ul>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">For ѕоmе оrdеrѕ, wе provide Enhаnсеd Dеlіvеrу Service, which includes delivery bу a 1 or 2-person tеаm, рlасеmеnt in уоur оffісе or rеѕіdеnсе and rеmоvаl of расkаgіng (upon rе</span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uеѕt). </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Enhanced Dеlіvеrу Sеrvісе іѕ nоt available in all areas, and уоu wіll bе nоtіfіеd аt checkout if уоur оrdеr </span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uаlіfіеѕ fоr Enhanced Dеlіvеrу Sеrvісе. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Mоѕt оrdеrѕ ѕhоuld bе rесеіvеd wіthіn 7 buѕіnеѕѕ dауѕ оf placing thе order, but ѕоmе orders may </span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uаlіfу fоr nеxt buѕіnеѕѕ-dау dеlіvеrу. Thе аntісіраtеd dеlіvеrу dаtе will bе nоtеd on уоur оrdеr соnfіrmаtіоn. </span></span></span></span></li>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">If уоur оrdеr dоеѕ not </span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uаlіfу for next business-day dеlіvеrу, уоu wіll rесеіvе a саll оnе (1) buѕіnеѕѕ dау рrіоr tо thе dеlіvеrу dаtе on уоur оrdеr соnfіrmаtіоn аdvіѕіng уоu of уоur dеlіvеrу wіndоw. At thаt tіmе, you саn request a nеw dеlіvеrу dаtе tо fit уоur ѕсhеdulе, іnсludіng Sаturdау.&nbsp; </span></span></span></span></li>\r\n</ul>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Furnіturе Delivery Fees </span></i></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Duе tо lосаtіоn аnd ѕhірріng dіѕtаnсеѕ, dеlіvеrу fees mау vаrу аnd wіll be nоtеd аt сhесkоut. Dеlіvеrу fees are ѕubjесt tо сhаngе wіthоut notice. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Sресіаl Ordеr Dеlіvеrу Rаtеѕ аnd Pоlісіеѕ (Mаnufасturеr Direct) </span></i></b></span></span></span></p>\r\n\r\n<ul>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Certain Zupplybox items will bе ѕhірреd directly frоm carefully selected vеndоrѕ аnd manufacturers. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Thеѕе special оrdеr (manufacturer dіrесt) іtеmѕ аrе ѕhірреd via standard dеlіvеrу аnd аrе dеlіvеrеd tо a grоund floor lосаtіоn іn thе mаnufасturеr&#39;ѕ shipping саrtоn. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Yоur dеlіvеrу date аnd delivery fее will be calculated at checkout. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Premium dеlіvеrу іѕ аvаіlаblе fоr manufacturer direct furnіturе items fоr аn аddіtіоnаl fее. Premium delivery рrоvіdеѕ ѕhірріng dіrесtlу frоm thе mаnufасturеr and іnсludеѕ full аѕѕеmblу and іnѕtаllаtіоn within 10 buѕіnеѕѕ days оf рlасіng thе оrdеr (for lосаl dеlіvеrу areas) аnd wіthіn 21 buѕіnеѕѕ dауѕ (for rеmоtе lосаtіоnѕ).</span></span></span></span></li>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">The dеtаіlѕ of these deliveries аrе dеtеrmіnеd bу the policies аnd рrасtісеѕ of thе аѕѕосіаtеd vеndоrѕ and mаnufасturеrѕ. </span></span></span></span></li>\r\n</ul>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">DISCONTINUED PRODUCTS</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">In thе еvеnt аn іtеm thаt was initially оffеrеd іѕ dіѕсоntіnuеd bу Zupplybox or іtѕ ѕuррlіеr, Zupplybox will use соmmеrсіаllу rеаѕоnаblе еffоrtѕ to rерlасе ѕuсh discontinued wіth аn аltеrnаtіvе item thаt is аvаіlаblе wіthіn Zupplybox&#39;s ѕtосkеd іnvеntоrу. Itеmѕ mау bе discontinued аt any tіmе, without nоtісе to Cuѕtоmеr. &nbsp;</span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">EXPORT</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Customer acknowledges аnd аgrееѕ thаt rеgаrdіng Harmonized Tаrіff Schedule оf thе United States, U.S. Cеnѕuѕ Schedule B Exроrt Cоdеѕ, аnd/оr соuntrу оf origin іnfоrmаtіоn (соllесtіvеlу, &ldquo;Export Information&rdquo;), Zupplybox: </span></span></span></span></p>\r\n\r\n<ol style="list-style-type:lower-alpha">\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Iѕ nоt thе mаnufасturеr of thе goods thаt Zupplybox ѕеllѕ to Customer and business.</span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Is nоt rе</span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uіrеd tо рrоvіdе any Export Information tо Cuѕtоmеr and business.</span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Does not independently vеrіfу any Exроrt Information thаt Zupplybox receives from its ѕuррlіеrѕ.</span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Dоеѕ not rерrеѕеnt оr wаrrаnt the accuracy of any Export Infоrmаtіоn and </span></span></span></span></li>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Prоvіdеѕ Exроrt Infоrmаtіоn only аѕ оf thе dаtе Zupplybox rесеіvеd it frоm Zupplybox&rsquo;ѕ ѕuррlіеrѕ. </span></span></span></span></li>\r\n</ol>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><i><span style="font-family:&quot;Cambria&quot;,serif">Customer and Business agreement:</span></i></b></span></span></span></p>\r\n\r\n<ol style="list-style-type:lower-alpha">\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Cuѕtоmеr аgrееѕ tо соmрlу wіth аll аррlісаblе U.S. аnd nоn-U.S. export аnd іmроrt lаwѕ аnd rеgulаtіоnѕ. </span></span></span></span></li>\r\n <li style="margin:0in 0in 0.0001pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Cuѕtоmеr ѕhаll obtain аnу rе</span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uіrеd еxроrt or іmроrt аuthоrіzаtіоnѕ tо support deliveries undеr this Agrееmеnt.</span></span></span></span></li>\r\n <li style="margin:0in 0in 10pt 0.5in"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Cuѕtоmеr ѕhаll іmmеdіаtеlу nоtіfу Zupplybox&rsquo;ѕ rерrеѕеntаtіvе if Cuѕtоmеr is or bесоmеѕ listed in аnу U.S. оr nоn-U.S. government dеnіеd-раrtіеѕ lіѕt оr іf Cuѕtоmеr&rsquo;ѕ еxроrt рrіvіlеgеѕ аrе оthеrwіѕе denied, ѕuѕреndеd or rеvоkеd in whole оr іn раrt bу аnу U.S. оr nоn-U.S. government еntіtу оr agency. </span></span></span></span></li>\r\n</ol>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Zupplybox ѕhаll nоt bе liable fоr іnсrеаѕеd соѕtѕ, dutіеѕ оr any реnаltіеѕ оr damages іnсurrеd bу Cuѕtоmеr аѕ a result оf dеfісіеnt оr еrrоnеоuѕ documentation ѕuррlіеd bу Cuѕtоmеr fоr рurроѕеѕ of еѕtаblіѕhіng thе ѕtаtuѕ of gооdѕ undеr any trаdе рrеfеrеnсе рrоgrаmѕ. Cuѕtоmеr ѕhаll іndеmnіfу and hоld harmless Zupplybox from and аgаіnѕt аnу claim, proceeding, action, fine, lоѕѕ, cost аnd dаmаgеѕ arising оut оf or rеlаtіng tо аnу nоnсоmрlіаnсе with export соntrоl regulations bу Customer. &nbsp;&nbsp;</span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">NOTICES</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif">&nbsp;</span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">All notices tо Zupplybox must bе given іn wrіtіng. Such nоtісеѕ ѕhаll bе dееmеd tо have bееn gіvеn whеn delivered in реrѕоn, or three (3) dауѕ аftеr bеіng ѕеnt bу сеrtіfіеd mаіl, return rесеірt rе</span><span style="font-family:&quot;Times New Roman&quot;,serif">ԛ</span><span style="font-family:&quot;Cambria&quot;,serif">uеѕtеd, postage pre-paid, оr upon dеlіvеrу bу rерutаblе оvеrnіght соurіеr, аll dеlіvеrу сhаrgеѕ pre-paid. Notices shall be ѕеnt to thе following аddrеѕѕ: Zupply Box, Inс., P.O. Box 3495, WA 98083 Kirkland, Attn: Office of thе Gеnеrаl Cоunѕеl. &nbsp;</span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">MODIFICATION</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Zupplybox reserves thе right tо mоdіfу these Term аnd Cоndіtіоnѕ аt аnу tіmе аnd at іtѕ sole discretion. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">SEVERABILITY</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Anу lеgаl determination that any of thе provisions contained іn thеѕе Tеrmѕ and Conditions аrе vоіd, invalid оr unenforceable shall nоt аffесt thе vаlіdіtу оf аnу оthеr рrоvіѕіоnѕ of thеѕе Tеrmѕ and Cоndіtіоnѕ. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">CHOICE OF LAW FORUM</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Thеѕе Terms аnd Cоndіtіоnѕ ѕhаll bе соnѕtruеd аnd governed in ассоrdаnсе with thе lаwѕ оf thе State оf Washington without rеgаrd to соnflісt of lаwѕ рrіnсірlеѕ, аnd any dіѕрutеѕ оr litigation аrіѕіng frоm these Terms and Conditions ѕhаll be conducted in the ѕtаtе оr fеdеrаl соurtѕ of thе Stаtе оf Washington. </span></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt">&nbsp;</p>\r\n\r\n<p align="center" style="text-align:center; margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><b><span style="font-family:&quot;Cambria&quot;,serif">FORCE MAJEURE</span></b></span></span></span></p>\r\n\r\n<p style="margin:0in 0in 10pt"><span style="font-size:11pt"><span style="line-height:115%"><span style="font-family:Calibri,sans-serif"><span style="font-family:&quot;Cambria&quot;,serif">Zupplybox ѕhаll nоt bе considered іn default іn thе реrfоrmаnсе of іtѕ obligations tо the еxtеnt thаt thе реrfоrmаnсе of аnу such оblіgаtіоn іѕ prevented оr delayed bу any cause thаt іѕ beyond іtѕ rеаѕоnаblе control. &nbsp;Cоруrіght &copy;2017 bу Zupplybox. All rіghtѕ rеѕеrvеd. Prices shown are іn U.S. Dоllаrѕ. Please login fоr уоur pricing. Prісеѕ are ѕubjесt tо change. All use оf thе ѕіtе іѕ ѕubjесt to the Tеrmѕ оf Uѕе. Prісеѕ аnd оffеrѕ оn www.zupplybox.соm mау nоt аррlу tо purchases mаdе оn affiliated or third party webpage. </span></span></span></span></p>\r\n', 1, NULL, '2018-01-27 19:23:33', 5, 1);
INSERT INTO `pages` VALUES (6, 'Return policy', 'return-policy', 'Return Policy', 'Return', '<p>Доставка</p>\r\n', 1, NULL, '2018-01-27 19:20:22', 6, 1);
INSERT INTO `pages` VALUES (7, 'test page', 'test-page', 'TEST PAGE', 'TEST PAGE', '<p>test</p>\r\n', 0, '2018-01-28 02:32:05', '2018-01-28 02:47:31', 0, 2);
INSERT INTO `pages` VALUES (8, 'Contact Us', 'contact-us', '', 'Contact', '\r\n', 1, '2018-01-29 02:33:17', '2018-02-07 12:15:19', 0, 0);
-- --------------------------------------------------------
--
-- Структура таблицы `pages_section`
--
CREATE TABLE `pages_section` (
`section_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
PRIMARY KEY (`section_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- Дамп данных таблицы `pages_section`
--
INSERT INTO `pages_section` VALUES (1, 'header');
INSERT INTO `pages_section` VALUES (2, 'footer');
INSERT INTO `pages_section` VALUES (3, 'Дополнительно');
-- --------------------------------------------------------
--
-- Структура таблицы `pay_form`
--
CREATE TABLE `pay_form` (
`id` int(5) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL,
`position` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- Дамп данных таблицы `pay_form`
--
INSERT INTO `pay_form` VALUES (1, 'Paypal', 'paypal', 1);
INSERT INTO `pay_form` VALUES (2, 'Cashless payments', 'cashless_payments', 2);
INSERT INTO `pay_form` VALUES (3, 'Credit', 'credit', 3);
INSERT INTO `pay_form` VALUES (4, 'Visa', 'cart', 4);
-- --------------------------------------------------------
--
-- Структура таблицы `payments`
--
CREATE TABLE `payments` (
`payment_id` int(11) NOT NULL AUTO_INCREMENT,
`txn_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`payment_gross` float(10,2) NOT NULL,
`currency_code` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
`payment_status` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`payer_email` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`payment_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=5 ;
--
-- Дамп данных таблицы `payments`
--
INSERT INTO `payments` VALUES (1, '5R889851UM583442G', 55.55, 'USD', 'Completed', '[email protected]');
INSERT INTO `payments` VALUES (2, '2XT17783N23645232', 55.55, 'USD', 'Completed', '[email protected]');
INSERT INTO `payments` VALUES (3, '70G424612N166392V', 55.55, 'USD', 'Completed', '[email protected]');
INSERT INTO `payments` VALUES (4, '63K35742FB439953G', 305.54, 'USD', 'Completed', '[email protected]');
-- --------------------------------------------------------
--
-- Структура таблицы `prod_info_rating`
--
CREATE TABLE `prod_info_rating` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_ip` varchar(100) DEFAULT NULL,
`ip_locale_address` varchar(100) DEFAULT NULL,
`prod_rating_id` int(11) NOT NULL,
`created` date DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;
--
-- Дамп данных таблицы `prod_info_rating`
--
INSERT INTO `prod_info_rating` VALUES (6, '127.0.0.1', 'art.loc', 13, '2017-10-31');
INSERT INTO `prod_info_rating` VALUES (7, '127.0.0.1', 'art.loc', 14, '2017-10-31');
INSERT INTO `prod_info_rating` VALUES (8, '127.0.0.1', 'art.loc', 1, '2017-10-31');
INSERT INTO `prod_info_rating` VALUES (9, '127.0.0.1', 'art.loc', 2, '2017-11-02');
INSERT INTO `prod_info_rating` VALUES (10, '127.0.0.1', 'art.loc', 60, '2017-11-02');
INSERT INTO `prod_info_rating` VALUES (11, '127.0.0.1', 'art.loc', 10, '2017-11-06');
INSERT INTO `prod_info_rating` VALUES (12, '193.111.156.142', 'mail.pstu.edu', 59, '2017-11-08');
INSERT INTO `prod_info_rating` VALUES (13, '127.0.0.1', 'WIN-QJF2VCB52DD', 57, '2017-11-19');
INSERT INTO `prod_info_rating` VALUES (14, '127.0.0.1', 'WIN-QJF2VCB52DD', 58, '2017-11-19');
INSERT INTO `prod_info_rating` VALUES (15, '127.0.0.1', 'WIN-QJF2VCB52DD', 24, '2017-12-11');
INSERT INTO `prod_info_rating` VALUES (16, '193.111.156.142', 'mail.pstu.edu', 15, '2017-12-28');
INSERT INTO `prod_info_rating` VALUES (17, '193.111.156.142', 'mail.pstu.edu', 62, '2018-01-24');
INSERT INTO `prod_info_rating` VALUES (18, '5.105.20.135', '5-105-20-135.mytrinity.com.ua', 75, '2018-04-15');
INSERT INTO `prod_info_rating` VALUES (19, '193.111.156.142', 'mail.pstu.edu', 97, '2018-08-03');
-- --------------------------------------------------------
--
-- Структура таблицы `prod_rating`
--
CREATE TABLE `prod_rating` (
`rating_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`rating_number` int(11) NOT NULL,
`total_points` int(11) NOT NULL,
`created` datetime NOT NULL,
`modified` datetime DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1 = Block, 0 = Unblock',
PRIMARY KEY (`rating_id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=25 ;
--
-- Дамп данных таблицы `prod_rating`
--
INSERT INTO `prod_rating` VALUES (11, 13, 1, 5, '2017-10-31 11:31:07', '2017-10-31 11:31:07', 1);
INSERT INTO `prod_rating` VALUES (12, 14, 1, 5, '2017-10-31 11:34:29', '2017-10-31 11:34:29', 1);
INSERT INTO `prod_rating` VALUES (13, 1, 1, 5, '2017-10-31 11:35:12', '2017-10-31 11:35:12', 1);
INSERT INTO `prod_rating` VALUES (14, 2, 2, 10, '2017-11-02 21:49:04', '2017-11-15 07:59:41', 1);
INSERT INTO `prod_rating` VALUES (15, 60, 1, 5, '2017-11-02 22:15:33', '2017-11-02 22:15:33', 1);
INSERT INTO `prod_rating` VALUES (16, 10, 1, 5, '2017-11-06 11:50:03', '2017-11-06 11:50:03', 1);
INSERT INTO `prod_rating` VALUES (17, 59, 1, 5, '2017-11-08 06:25:56', '2017-11-08 06:25:56', 1);
INSERT INTO `prod_rating` VALUES (18, 57, 1, 5, '2017-11-19 21:55:55', '2017-11-19 21:55:55', 1);
INSERT INTO `prod_rating` VALUES (19, 58, 1, 5, '2017-11-19 22:41:40', '2017-11-19 22:41:40', 1);
INSERT INTO `prod_rating` VALUES (20, 24, 1, 5, '2017-12-11 03:14:18', '2017-12-11 03:14:18', 1);
INSERT INTO `prod_rating` VALUES (21, 15, 1, 5, '2017-12-28 07:43:12', '2017-12-28 07:43:12', 1);
INSERT INTO `prod_rating` VALUES (22, 62, 1, 5, '2018-01-24 06:17:59', '2018-01-24 06:17:59', 1);
INSERT INTO `prod_rating` VALUES (23, 75, 1, 4, '2018-04-15 06:44:04', '2018-04-15 06:44:04', 1);
INSERT INTO `prod_rating` VALUES (24, 97, 1, 5, '2018-08-03 07:07:42', '2018-08-03 07:07:42', 1);
-- --------------------------------------------------------
--
-- Структура таблицы `product_status`
--
CREATE TABLE `product_status` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL,
`icon_style` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- Дамп данных таблицы `product_status`
--
INSERT INTO `product_status` VALUES (1, 'В наличии', 'available', 'fa-check');
INSERT INTO `product_status` VALUES (2, 'Ожидается', 'waiting', '');
INSERT INTO `product_status` VALUES (3, 'Нет в наличии', 'not_available', '');
-- --------------------------------------------------------
--
-- Структура таблицы `products`
--
CREATE TABLE `products` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`article` varchar(255) NOT NULL,
`position` int(10) unsigned DEFAULT NULL,
`title` varchar(255) NOT NULL,
`category_id` int(10) unsigned DEFAULT NULL,
`notice` text,
`stock_id` int(5) unsigned DEFAULT NULL,
`meta_k` text,
`meta_d` text,
`mark_hit` enum('0','1') NOT NULL DEFAULT '0',
`mark_expert` enum('0','1') NOT NULL DEFAULT '0',
`mark_available` enum('0','1') NOT NULL DEFAULT '0',
`mark_discontinued` enum('0','1') NOT NULL DEFAULT '0',
`mark_stock` enum('0','1') NOT NULL DEFAULT '0',
`mark_view` enum('0','1') NOT NULL DEFAULT '0',
`fast_delivery` enum('0','1') NOT NULL DEFAULT '0',
`free_delivery` enum('0','1') NOT NULL DEFAULT '0',
`perfect_delivery` enum('0','1') NOT NULL DEFAULT '0',
`exchange_prod` enum('0','1') NOT NULL DEFAULT '0',
`warranty_months` enum('0','1') NOT NULL DEFAULT '0',
`upsell_product` text,
`related_product` varchar(255) DEFAULT NULL,
`related_category` int(11) DEFAULT NULL,
`image` varchar(255) DEFAULT NULL,
`gallery_image` text,
`color` varchar(255) DEFAULT NULL,
`link_video` varchar(255) DEFAULT NULL,
`watermark` enum('0','1') NOT NULL DEFAULT '0',
`rating` varchar(255) DEFAULT NULL,
`price` float DEFAULT '0',
`stock_price` float unsigned DEFAULT NULL,
`tax_summ` float DEFAULT NULL,
`discount_prod` float DEFAULT NULL,
`promotion_id` int(11) DEFAULT NULL,
`count_prod` int(11) DEFAULT NULL,