-
Notifications
You must be signed in to change notification settings - Fork 64
/
laravel9_sales.sql
2611 lines (2216 loc) · 118 KB
/
laravel9_sales.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 5.2.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: May 14, 2023 at 01:38 PM
-- Server version: 10.4.27-MariaDB
-- PHP Version: 8.2.0
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `sales`
--
-- --------------------------------------------------------
--
-- Table structure for table `accounts`
--
CREATE TABLE `accounts` (
`id` bigint(20) NOT NULL,
`name` varchar(225) NOT NULL,
`account_type` int(11) NOT NULL,
`is_parent` tinyint(1) NOT NULL DEFAULT 0,
`parent_account_number` bigint(20) DEFAULT NULL,
`account_number` bigint(20) NOT NULL,
`start_balance_status` tinyint(4) NOT NULL COMMENT 'e 1-credit -2 debit 3-balanced',
`start_balance` decimal(10,2) NOT NULL COMMENT 'دائن او مدين او متزن اول المدة',
`current_balance` decimal(10,2) NOT NULL DEFAULT 0.00,
`other_table_FK` bigint(20) DEFAULT NULL,
`notes` varchar(225) DEFAULT NULL,
`added_by` int(11) NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'هل مفعل',
`com_code` int(11) NOT NULL,
`date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول الشجرة المحاسبية العامة';
--
-- Dumping data for table `accounts`
--
INSERT INTO `accounts` (`id`, `name`, `account_type`, `is_parent`, `parent_account_number`, `account_number`, `start_balance_status`, `start_balance`, `current_balance`, `other_table_FK`, `notes`, `added_by`, `updated_by`, `created_at`, `updated_at`, `active`, `com_code`, `date`) VALUES
(1, 'الحساب الاب للموردين', 9, 1, NULL, 1, 3, '0.00', '0.00', NULL, NULL, 1, NULL, '2023-05-14 11:31:10', '2023-05-14 11:31:10', 1, 1, '2023-05-14'),
(2, 'الحساب الاب للعملاء', 9, 1, NULL, 2, 3, '0.00', '0.00', NULL, NULL, 1, NULL, '2023-05-14 11:31:26', '2023-05-14 11:31:26', 1, 1, '2023-05-14'),
(3, 'الحساب الاب للمناديب', 9, 1, NULL, 3, 3, '0.00', '0.00', NULL, NULL, 1, NULL, '2023-05-14 11:31:42', '2023-05-14 11:31:42', 1, 1, '2023-05-14'),
(4, 'البنك الاهلي المصري حساب 1', 6, 0, 4, 4, 3, '0.00', '-10000.00', NULL, NULL, 1, 1, '2023-05-14 11:32:11', '2023-05-14 13:05:14', 1, 1, '2023-05-14'),
(5, 'فواتير الكهرباء', 7, 0, 8, 5, 3, '0.00', '0.00', NULL, NULL, 1, 1, '2023-05-14 11:32:31', '2023-05-14 13:04:03', 1, 1, '2023-05-14'),
(6, 'فواتير الغاز', 7, 0, 8, 6, 3, '0.00', '0.00', NULL, NULL, 1, 1, '2023-05-14 11:32:43', '2023-05-14 11:33:31', 1, 1, '2023-05-14'),
(7, 'نثريات', 7, 0, 8, 7, 3, '0.00', '0.00', NULL, NULL, 1, 1, '2023-05-14 11:33:00', '2023-05-14 11:33:23', 1, 1, '2023-05-14'),
(8, 'مصروفات', 7, 1, NULL, 8, 3, '0.00', '0.00', NULL, NULL, 1, NULL, '2023-05-14 11:33:15', '2023-05-14 11:33:15', 1, 1, '2023-05-14'),
(9, 'هايبر الرحاب', 3, 0, 3, 9, 3, '0.00', '0.00', 1, NULL, 1, NULL, '2023-05-14 11:34:09', '2023-05-14 13:00:30', 1, 1, '2023-05-14'),
(10, 'هاير الراية', 3, 0, 3, 10, 2, '5000.00', '6500.00', 2, NULL, 1, NULL, '2023-05-14 11:34:44', '2023-05-14 13:01:58', 1, 1, '2023-05-14'),
(11, 'المكتب', 4, 0, 8, 11, 3, '0.00', '0.00', 1, NULL, 1, NULL, '2023-05-14 11:35:19', '2023-05-14 11:35:19', 1, 1, '2023-05-14'),
(12, 'عاطف دياب محمد أحمد', 4, 0, 8, 12, 1, '-500.00', '-505.00', 2, NULL, 1, NULL, '2023-05-14 11:35:42', '2023-05-14 12:54:32', 1, 1, '2023-05-14'),
(13, 'عاطف دياب محمد', 2, 0, 1, 13, 1, '-5000.00', '-14400.00', 1, NULL, 1, NULL, '2023-05-14 11:36:55', '2023-05-14 13:01:30', 1, 1, '2023-05-14'),
(14, 'خط الانتاج رقم 1', 5, 0, 34, 14, 3, '0.00', '90000.00', 1, NULL, 1, NULL, '2023-05-14 11:44:21', '2023-05-14 11:50:35', 1, 1, '2023-05-14'),
(15, 'مذبح المصنع', 2, 0, 1, 15, 3, '0.00', '-1000000.00', 2, NULL, 1, NULL, '2023-05-14 11:48:39', '2023-05-14 13:07:58', 1, 1, '2023-05-14');
-- --------------------------------------------------------
--
-- Table structure for table `account_types`
--
CREATE TABLE `account_types` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) NOT NULL,
`active` tinyint(4) NOT NULL,
`relatediternalaccounts` tinyint(4) NOT NULL COMMENT 'هل الحساب يتم تكويده من شاشته الداخلية ام من خلال الشاشه الرئيسية للحسابات\r\nواحد داخلي - صفر من الشاشه الرئيسية'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `account_types`
--
INSERT INTO `account_types` (`id`, `name`, `active`, `relatediternalaccounts`) VALUES
(1, 'رأس المال', 1, 0),
(2, 'مورد', 1, 1),
(3, 'عميل', 1, 1),
(4, 'مندوب', 1, 1),
(5, 'خط انتاج', 1, 1),
(6, 'بنكي', 1, 0),
(7, 'مصروفات', 1, 0),
(8, 'قسم داخلي', 1, 1),
(9, 'عام', 1, 0);
-- --------------------------------------------------------
--
-- Table structure for table `admins`
--
CREATE TABLE `admins` (
`id` int(11) NOT NULL,
`name` varchar(100) NOT NULL,
`permission_roles_id` int(11) NOT NULL,
`email` varchar(100) NOT NULL,
`username` varchar(100) NOT NULL,
`password` varchar(225) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`added_by` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL,
`com_code` int(11) NOT NULL,
`date` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table `admins`
--
INSERT INTO `admins` (`id`, `name`, `permission_roles_id`, `email`, `username`, `password`, `created_at`, `updated_at`, `added_by`, `updated_by`, `active`, `com_code`, `date`) VALUES
(1, 'الادارة العليا', 1, '[email protected]', 'admin', '$2y$10$qHBrpnmqcJgMX/29x92EA.QbD7T5PWKvYO3p.RH2jclPuE4gEGqBe', '2022-08-27 15:59:31', '2023-04-19 22:22:47', NULL, 1, 1, 1, NULL),
(2, 'محمود علي أحمد السيد', 3, '[email protected]', 'm2023', '$2y$10$YFr.tT3k4SOvDAWO9AeuCemvFlTgm1LrUjQrqpsOHEPn.4reJaVnW', '2023-04-15 01:45:13', '2023-04-26 02:29:39', 1, 1, 1, 1, '2023-04-15');
-- --------------------------------------------------------
--
-- Table structure for table `admins_shifts`
--
CREATE TABLE `admins_shifts` (
`id` bigint(20) NOT NULL,
`shift_code` bigint(20) NOT NULL COMMENT 'كود الشفت المستخدم بالربط مع جدول حركة النقدية',
`admin_id` int(11) NOT NULL,
`treasuries_id` int(11) NOT NULL,
`treasuries_balnce_in_shift_start` decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'رصيد الخزنة في بدايه استلام الشفت للمستخدم',
`start_date` datetime NOT NULL COMMENT 'توقيت بدايه الشفت',
`end_date` datetime DEFAULT NULL,
`is_finished` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'هل تم انتهاء الشفت',
`is_delivered_and_review` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'هل تم مرراجعه واستلام شفت الخزنة',
`delivered_to_admin_id` int(11) DEFAULT NULL COMMENT 'كود المستخدم الذي تسلم هذا الشفت واراجعه',
`delivered_to_admin_sift_id` bigint(20) DEFAULT NULL COMMENT 'كود الشفت الذي تسلم هذا الشفت وارجعه',
`delivered_to_treasuries_id` int(11) DEFAULT NULL COMMENT 'كود الخزنه التي راجعت واستلمت هذا الشفت',
`money_should_deviled` decimal(10,2) DEFAULT NULL COMMENT 'النقدية التي يفترض ان تسلم ',
`what_realy_delivered` decimal(10,2) DEFAULT NULL COMMENT 'المبلغ الفعلي الذي تم تسلمه ',
`money_state` tinyint(1) DEFAULT NULL COMMENT '0-blanced -1-inability 2-extra \r\nصفر متزن - واحد يوجد عز - اثنين يوجد زيادة',
`money_state_value` decimal(10,2) NOT NULL DEFAULT 0.00,
`receive_type` tinyint(1) DEFAULT NULL COMMENT 'واحد استلام علي نفس الخزنة - اثنين استلام علي خزنة اخري',
`review_receive_date` datetime DEFAULT NULL COMMENT 'تاريخ مراجعه واستلام هذا الشفت',
`treasuries_transactions_id` bigint(20) DEFAULT NULL COMMENT 'رقم الايصال بجدول تحصيل النقدية لحركة الخزن',
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`notes` varchar(100) DEFAULT NULL,
`com_code` int(11) NOT NULL,
`date` date NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول شفتات الخزن للمستخدمين ';
--
-- Dumping data for table `admins_shifts`
--
INSERT INTO `admins_shifts` (`id`, `shift_code`, `admin_id`, `treasuries_id`, `treasuries_balnce_in_shift_start`, `start_date`, `end_date`, `is_finished`, `is_delivered_and_review`, `delivered_to_admin_id`, `delivered_to_admin_sift_id`, `delivered_to_treasuries_id`, `money_should_deviled`, `what_realy_delivered`, `money_state`, `money_state_value`, `receive_type`, `review_receive_date`, `treasuries_transactions_id`, `added_by`, `created_at`, `notes`, `com_code`, `date`, `updated_by`, `updated_at`) VALUES
(1, 1, 1, 1, '0.00', '2023-05-14 13:03:39', '2023-05-14 13:03:50', 1, 0, NULL, NULL, NULL, '0.00', NULL, NULL, '0.00', NULL, NULL, NULL, 1, '2023-05-14 13:03:39', NULL, 1, '2023-05-14', 1, '2023-05-14 13:03:50'),
(2, 2, 1, 1, '0.00', '2023-05-14 13:03:54', '2023-05-14 13:05:23', 1, 0, NULL, NULL, NULL, '10000.00', NULL, NULL, '0.00', NULL, NULL, NULL, 1, '2023-05-14 13:03:54', NULL, 1, '2023-05-14', 1, '2023-05-14 13:05:23'),
(3, 3, 1, 1, '0.00', '2023-05-14 13:05:35', NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', NULL, NULL, NULL, 1, '2023-05-14 13:05:35', NULL, 1, '2023-05-14', NULL, '2023-05-14 13:05:35');
-- --------------------------------------------------------
--
-- Table structure for table `admins_stores`
--
CREATE TABLE `admins_stores` (
`id` int(11) NOT NULL,
`admin_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`com_code` int(11) NOT NULL,
`date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='صلاحيات المخازن المستخدمين الخاصة';
--
-- Dumping data for table `admins_stores`
--
INSERT INTO `admins_stores` (`id`, `admin_id`, `store_id`, `active`, `added_by`, `created_at`, `updated_by`, `updated_at`, `com_code`, `date`) VALUES
(1, 1, 2, 1, 1, '2023-05-14 13:03:25', NULL, '2023-05-14 13:03:25', 1, '2023-05-14'),
(2, 1, 1, 1, 1, '2023-05-14 13:03:29', NULL, '2023-05-14 13:03:29', 1, '2023-05-14');
-- --------------------------------------------------------
--
-- Table structure for table `admins_treasuries`
--
CREATE TABLE `admins_treasuries` (
`id` int(11) NOT NULL,
`admin_id` int(11) NOT NULL,
`treasuries_id` int(11) NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`com_code` int(11) NOT NULL,
`date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='صلاحيات خزن المستخدمين الخاصة';
--
-- Dumping data for table `admins_treasuries`
--
INSERT INTO `admins_treasuries` (`id`, `admin_id`, `treasuries_id`, `active`, `added_by`, `created_at`, `updated_by`, `updated_at`, `com_code`, `date`) VALUES
(1, 1, 1, 1, 1, '2023-05-14 13:03:19', NULL, '2023-05-14 13:03:19', 1, '2023-05-14'),
(2, 1, 2, 1, 1, '2023-05-14 13:05:56', NULL, '2023-05-14 13:05:56', 1, '2023-05-14');
-- --------------------------------------------------------
--
-- Table structure for table `admin_panel_settings`
--
CREATE TABLE `admin_panel_settings` (
`id` int(11) NOT NULL,
`system_name` varchar(250) NOT NULL,
`photo` varchar(225) NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`general_alert` varchar(150) DEFAULT NULL,
`address` varchar(250) NOT NULL,
`phone` varchar(100) DEFAULT NULL,
`customer_parent_account_number` bigint(20) NOT NULL COMMENT 'رقم الحساب الاب للعملاء',
`suppliers_parent_account_number` bigint(20) NOT NULL COMMENT 'الحساب الاب للموردين',
`delegate_parent_account_number` bigint(20) NOT NULL COMMENT 'رقم الحساب المالي لحساب الاب للمناديب',
`employees_parent_account_number` bigint(20) NOT NULL COMMENT 'رقم الحساب المالي للموظفين الاب',
`production_lines_parent_account` bigint(20) NOT NULL COMMENT 'كود الحساب الاب لخطوط الانتاج',
`added_by` int(11) DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`com_code` int(11) NOT NULL,
`notes` text DEFAULT NULL,
`is_set_Batches_setting` tinyint(1) NOT NULL DEFAULT 0,
`Batches_setting_type` tinyint(1) DEFAULT NULL COMMENT 'واحد دا يعمل بنظام تعدد الباتشات - اثنين لايعمل بنظام البياتشات فقط باتشه واحده لكل صنف',
`default_unit` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'واحد البيع الالي بالوحده الاب - اثنين البيع الالي بوحده التجزئة الفرعية'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table `admin_panel_settings`
--
INSERT INTO `admin_panel_settings` (`id`, `system_name`, `photo`, `active`, `general_alert`, `address`, `phone`, `customer_parent_account_number`, `suppliers_parent_account_number`, `delegate_parent_account_number`, `employees_parent_account_number`, `production_lines_parent_account`, `added_by`, `updated_by`, `created_at`, `updated_at`, `com_code`, `notes`, `is_set_Batches_setting`, `Batches_setting_type`, `default_unit`) VALUES
(1, 'عاطف سوفت للبرمجيات', '1667938745648.png', 1, NULL, 'سوهاج - كوبري النيل', '012659854', 3, 1, 8, 9, 34, 0, 1, '0000-00-00 00:00:00', '2023-04-18 05:24:05', 1, 'الاضافة بالمبيعات ctrl او enter', 1, 2, 1);
-- --------------------------------------------------------
--
-- Table structure for table `customers`
--
CREATE TABLE `customers` (
`id` bigint(20) NOT NULL,
`customer_code` bigint(20) NOT NULL,
`name` varchar(225) NOT NULL,
`account_number` bigint(20) NOT NULL,
`start_balance_status` tinyint(4) NOT NULL COMMENT 'e 1-credit -2 debit 3-balanced',
`start_balance` decimal(10,2) NOT NULL COMMENT 'دائن او مدين او متزن اول المدة',
`current_balance` decimal(10,2) NOT NULL DEFAULT 0.00,
`notes` varchar(225) DEFAULT NULL,
`added_by` int(11) NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 0,
`com_code` int(11) NOT NULL,
`date` date NOT NULL,
`address` varchar(250) DEFAULT NULL,
`phones` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول الشجرة المحاسبية العامة';
--
-- Dumping data for table `customers`
--
INSERT INTO `customers` (`id`, `customer_code`, `name`, `account_number`, `start_balance_status`, `start_balance`, `current_balance`, `notes`, `added_by`, `updated_by`, `created_at`, `updated_at`, `active`, `com_code`, `date`, `address`, `phones`) VALUES
(1, 1, 'هايبر الرحاب', 9, 3, '0.00', '0.00', NULL, 1, NULL, '2023-05-14 11:34:09', '2023-05-14 13:00:30', 1, 1, '2023-05-14', '16 مصر الجديدة', '0115658527'),
(2, 2, 'هاير الراية', 10, 2, '5000.00', '6500.00', NULL, 1, NULL, '2023-05-14 11:34:44', '2023-05-14 13:01:58', 1, 1, '2023-05-14', '25 شارع النصر الجيزة', '0126552444');
-- --------------------------------------------------------
--
-- Table structure for table `delegates`
--
CREATE TABLE `delegates` (
`id` bigint(20) NOT NULL,
`delegate_code` bigint(20) NOT NULL,
`name` varchar(225) NOT NULL,
`account_number` bigint(20) NOT NULL,
`start_balance_status` tinyint(4) NOT NULL COMMENT 'e 1-credit -2 debit 3-balanced',
`start_balance` decimal(10,2) NOT NULL COMMENT 'دائن او مدين او متزن اول المدة',
`current_balance` decimal(10,2) NOT NULL DEFAULT 0.00,
`notes` varchar(225) DEFAULT NULL,
`added_by` int(11) NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 0,
`com_code` int(11) NOT NULL,
`date` date NOT NULL,
`phones` varchar(50) DEFAULT NULL,
`address` varchar(250) DEFAULT NULL,
`percent_type` tinyint(4) NOT NULL COMMENT 'نوع عمولة المندوب بشكل عام\r\nواحد اجر ثابت لكل فاتورة - لو اتنين نسبة بكل فاتورة ',
`percent_collect_commission` decimal(10,2) NOT NULL COMMENT 'نسبة المندوب بالتحصيل الفواتير الاجل ',
`percent_salaes_commission_kataei` decimal(10,2) NOT NULL COMMENT 'نسبة عمولة المندوب بالمبيعات قطاعلي ',
`percent_salaes_commission_nosjomla` decimal(10,2) NOT NULL COMMENT 'عمول المندوب بمبيعات نص الجملة ',
`percent_salaes_commission_jomla` decimal(10,2) NOT NULL COMMENT 'نسبة عمولة المندوب بالمبيعات بالجملة '
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول المناديب';
--
-- Dumping data for table `delegates`
--
INSERT INTO `delegates` (`id`, `delegate_code`, `name`, `account_number`, `start_balance_status`, `start_balance`, `current_balance`, `notes`, `added_by`, `updated_by`, `created_at`, `updated_at`, `active`, `com_code`, `date`, `phones`, `address`, `percent_type`, `percent_collect_commission`, `percent_salaes_commission_kataei`, `percent_salaes_commission_nosjomla`, `percent_salaes_commission_jomla`) VALUES
(1, 1, 'المكتب', 11, 3, '0.00', '0.00', NULL, 1, NULL, '2023-05-14 11:35:19', '2023-05-14 11:35:19', 1, 1, '2023-05-14', NULL, NULL, 2, '0.00', '2.00', '1.00', '0.50'),
(2, 2, 'عاطف دياب محمد أحمد', 12, 1, '-500.00', '-505.00', NULL, 1, NULL, '2023-05-14 11:35:42', '2023-05-14 12:54:32', 1, 1, '2023-05-14', NULL, NULL, 1, '5.00', '5.00', '5.00', '5.00');
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` varchar(255) NOT NULL,
`connection` text NOT NULL,
`queue` text NOT NULL,
`payload` longtext NOT NULL,
`exception` longtext NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `inv_itemcard`
--
CREATE TABLE `inv_itemcard` (
`id` bigint(20) NOT NULL,
`item_code` bigint(20) NOT NULL,
`barcode` varchar(50) NOT NULL,
`name` varchar(225) NOT NULL,
`item_type` tinyint(1) NOT NULL COMMENT 'واحد مخزني - اتنين استهلاكي - ثلاثه عهده',
`inv_itemcard_categories_id` int(11) NOT NULL,
`parent_inv_itemcard_id` bigint(20) DEFAULT NULL COMMENT 'كود الصنف الاب له',
`does_has_retailunit` tinyint(1) NOT NULL COMMENT 'هل للصنف وحده تجزئة',
`retail_uom_id` int(11) DEFAULT NULL COMMENT 'كود وحده قياس التجزئة ',
`uom_id` int(11) NOT NULL COMMENT 'كود وحده قياس الاب',
`retail_uom_quntToParent` decimal(10,2) DEFAULT NULL,
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`date` date NOT NULL,
`com_code` int(11) NOT NULL,
`price` decimal(10,2) NOT NULL COMMENT 'السعر القطاعي بوحدة القياس الاساسية ',
`nos_gomla_price` decimal(10,2) NOT NULL COMMENT 'سعر النص جملة مع الوحده الاب ',
`gomla_price` decimal(10,2) NOT NULL COMMENT 'السعر جملة بوحدة القياس الاساسية ',
`price_retail` decimal(10,2) DEFAULT NULL COMMENT 'السعر القطاعي بوحدة قياس التجزئة ',
`nos_gomla_price_retail` decimal(10,2) DEFAULT NULL COMMENT 'سعر النص جملة قطاعي مع الوحده التجزئة ',
`gomla_price_retail` decimal(10,2) DEFAULT NULL COMMENT 'السعر الجملة بوحدة قياس التجزئة ',
`cost_price` decimal(10,2) NOT NULL COMMENT 'متوسط التكلفة للصنف بالوحدة الاساسية ',
`cost_price_retail` decimal(10,2) DEFAULT NULL COMMENT 'متوسط التكلفة للصنف بوحدة قياس التجزئة ',
`has_fixced_price` tinyint(1) NOT NULL COMMENT 'هل للصنف سعر ثابت بالفواتير او قابل للتغير بالفواتير',
`All_QUENTITY` decimal(10,2) DEFAULT NULL COMMENT 'كل كمية الصنف بوحده الاب مباشره بدون اي تحويلات',
`QUENTITY` decimal(10,3) DEFAULT NULL COMMENT 'كل الكمية بوحده الاب بدون الفكه في حاله لديه وحده تجزئة',
`QUENTITY_Retail` decimal(10,3) DEFAULT NULL COMMENT 'كمية التجزئة المتبقية من الوحده الاب في حالة وجود وحده تجزئة للصنف',
`QUENTITY_all_Retails` decimal(10,3) DEFAULT NULL COMMENT 'كل الكمية محولة بوحده التجزئة ',
`photo` varchar(225) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table `inv_itemcard`
--
INSERT INTO `inv_itemcard` (`id`, `item_code`, `barcode`, `name`, `item_type`, `inv_itemcard_categories_id`, `parent_inv_itemcard_id`, `does_has_retailunit`, `retail_uom_id`, `uom_id`, `retail_uom_quntToParent`, `added_by`, `created_at`, `updated_at`, `updated_by`, `active`, `date`, `com_code`, `price`, `nos_gomla_price`, `gomla_price`, `price_retail`, `nos_gomla_price_retail`, `gomla_price_retail`, `cost_price`, `cost_price_retail`, `has_fixced_price`, `All_QUENTITY`, `QUENTITY`, `QUENTITY_Retail`, `QUENTITY_all_Retails`, `photo`) VALUES
(1, 1, 'item1', 'فراخ شهد', 2, 2, 0, 1, 2, 1, '10.00', 1, '2023-05-14 11:40:58', '2023-05-14 13:00:27', NULL, 1, '2023-05-14', 1, '1200.00', '1100.00', '1000.00', '120.00', '110.00', '100.00', '1000.00', '100.00', 1, '17.00', '17.000', '0.000', '170.000', '1684057258395.jpg'),
(2, 2, 'item2', 'فراخ مذبوحة', 2, 2, 1, 1, 4, 3, '100.00', 1, '2023-05-14 11:47:52', '2023-05-14 11:49:37', NULL, 1, '2023-05-14', 1, '5000.00', '4500.00', '4000.00', '40.00', '35.00', '30.00', '10000.00', '100.00', 1, '90.00', '90.000', '0.000', '9000.000', '1684057672254.jpg');
-- --------------------------------------------------------
--
-- Table structure for table `inv_itemcard_batches`
--
CREATE TABLE `inv_itemcard_batches` (
`id` bigint(20) NOT NULL,
`store_id` int(11) NOT NULL COMMENT 'كود المخزن',
`item_code` int(11) NOT NULL COMMENT 'كود الصنف الالي ',
`inv_uoms_id` int(11) NOT NULL COMMENT 'كود الوحده الاب ',
`unit_cost_price` decimal(10,2) NOT NULL COMMENT 'سعر الشراء للوحده',
`quantity` decimal(10,2) NOT NULL COMMENT 'الكمية بالوحده الاب',
`total_cost_price` decimal(10,2) NOT NULL COMMENT 'اجمالي سعر شراء الباتش ككل',
`production_date` date DEFAULT NULL,
`expired_date` date DEFAULT NULL,
`com_code` int(11) NOT NULL,
`auto_serial` bigint(20) NOT NULL,
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`is_send_to_archived` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول باتشات الاصناف بالمخازن';
--
-- Dumping data for table `inv_itemcard_batches`
--
INSERT INTO `inv_itemcard_batches` (`id`, `store_id`, `item_code`, `inv_uoms_id`, `unit_cost_price`, `quantity`, `total_cost_price`, `production_date`, `expired_date`, `com_code`, `auto_serial`, `added_by`, `created_at`, `updated_at`, `updated_by`, `is_send_to_archived`) VALUES
(1, 1, 1, 1, '1200.00', '6.00', '7200.00', '2023-03-01', '2023-08-24', 1, 1, 1, '2023-05-14 11:41:42', '2023-05-14 13:00:26', 1, 0),
(2, 2, 1, 1, '1200.00', '1.00', '1200.00', '2023-03-01', '2023-08-24', 1, 2, 1, '2023-05-14 11:43:37', '2023-05-14 11:43:37', NULL, 0),
(3, 1, 2, 3, '10000.00', '90.00', '900000.00', '2023-04-01', '2023-05-14', 1, 3, 1, '2023-05-14 11:49:20', '2023-05-14 11:49:37', 1, 0),
(4, 2, 1, 1, '1000.00', '10.00', '10000.00', '2023-05-01', '2023-05-31', 1, 4, 1, '2023-05-14 11:50:35', '2023-05-14 11:50:35', NULL, 0);
-- --------------------------------------------------------
--
-- Table structure for table `inv_itemcard_categories`
--
CREATE TABLE `inv_itemcard_categories` (
`id` int(11) NOT NULL,
`name` varchar(250) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`added_by` int(11) NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`com_code` int(11) NOT NULL,
`date` date NOT NULL COMMENT 'for search ',
`active` tinyint(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول فئات الاصناف';
--
-- Dumping data for table `inv_itemcard_categories`
--
INSERT INTO `inv_itemcard_categories` (`id`, `name`, `created_at`, `updated_at`, `added_by`, `updated_by`, `com_code`, `date`, `active`) VALUES
(1, 'لحوم', '2023-05-14 11:38:50', '2023-05-14 11:38:50', 1, NULL, 1, '2023-05-14', 1),
(2, 'فراخ', '2023-05-14 11:38:56', '2023-05-14 11:38:56', 1, NULL, 1, '2023-05-14', 1),
(3, 'اسماك', '2023-05-14 11:39:02', '2023-05-14 11:39:02', 1, NULL, 1, '2023-05-14', 1);
-- --------------------------------------------------------
--
-- Table structure for table `inv_itemcard_movements`
--
CREATE TABLE `inv_itemcard_movements` (
`id` bigint(20) NOT NULL,
`inv_itemcard_movements_categories` int(11) NOT NULL,
`item_code` bigint(20) NOT NULL,
`store_id` int(11) NOT NULL COMMENT 'كود المخزن',
`items_movements_types` int(11) NOT NULL,
`FK_table` bigint(20) NOT NULL,
`FK_table_details` bigint(20) NOT NULL,
`byan` varchar(100) NOT NULL,
`quantity_befor_movement` varchar(60) NOT NULL COMMENT 'بكل المخازن',
`quantity_after_move` varchar(60) NOT NULL COMMENT 'بكل المخازن',
`added_by` int(11) NOT NULL,
`date` date NOT NULL,
`created_at` datetime NOT NULL,
`com_code` int(11) NOT NULL,
`quantity_befor_move_store` varchar(60) NOT NULL COMMENT 'كل الكمية للصنف قبل الحركة بالمخزن المحدد مع الحركة',
`quantity_after_move_store` varchar(60) NOT NULL COMMENT 'كل الكمية للصنف بعد الحركة بالمخزن المحدد مع الحركة'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table `inv_itemcard_movements`
--
INSERT INTO `inv_itemcard_movements` (`id`, `inv_itemcard_movements_categories`, `item_code`, `store_id`, `items_movements_types`, `FK_table`, `FK_table_details`, `byan`, `quantity_befor_movement`, `quantity_after_move`, `added_by`, `date`, `created_at`, `com_code`, `quantity_befor_move_store`, `quantity_after_move_store`) VALUES
(1, 1, 1, 1, 1, 1, 1, 'نظير مشتريات من المورد عاطف دياب محمد فاتورة رقم 1', 'عدد 0 كرتونة فراخ شهد', 'عدد 10 كرتونة فراخ شهد', 1, '2023-05-14', '2023-05-14 11:41:42', 1, 'عدد 0 كرتونة فراخ شهد', 'عدد 10 كرتونة فراخ شهد'),
(2, 1, 1, 1, 3, 1, 2, ' نظير مرتجع مشتريات عام الي المورد عاطف دياب محمد فاتورة رقم 1', 'عدد 10 كرتونة فراخ شهد', 'عدد 7 كرتونة فراخ شهد', 1, '2023-05-14', '2023-05-14 11:42:09', 1, 'عدد 10 كرتونة فراخ شهد', 'عدد 7 كرتونة فراخ شهد'),
(3, 3, 1, 1, 20, 1, 1, ' نظير صرف أصناف الي مخزن الاستلام الفرعي بشارع الشهيد أمر تحويل رقم 1', 'عدد 7 كرتونة فراخ شهد', 'عدد 6 كرتونة فراخ شهد', 1, '2023-05-14', '2023-05-14 11:43:30', 1, 'عدد 7 كرتونة فراخ شهد', 'عدد 6 كرتونة فراخ شهد'),
(4, 3, 1, 2, 22, 1, 1, 'نظير اعتماد واستلام امر تحويل وارد من المخزن الرئيسي امر تحويل رقم 1', 'عدد 6 كرتونة فراخ شهد', 'عدد 7 كرتونة فراخ شهد', 1, '2023-05-14', '2023-05-14 11:43:38', 1, 'عدد 0 كرتونة فراخ شهد', 'عدد 1 كرتونة فراخ شهد'),
(5, 3, 1, 1, 6, 1, 1, 'جرد بالمخازن للباتش رقم 1 جرد رقم 1', 'عدد 7 كرتونة فراخ شهد', 'عدد 7 كرتونة فراخ شهد', 1, '2023-05-14', '2023-05-14 11:44:00', 1, 'عدد 6 كرتونة فراخ شهد', 'عدد 6 كرتونة فراخ شهد'),
(6, 4, 1, 1, 17, 1, 1, ' نظير ًرف خامات الي خط انتاج خط الانتاج رقم 1 فاتورة رقم 1', 'عدد 7 كرتونة فراخ شهد', 'عدد 6 كرتونة فراخ شهد', 1, '2023-05-14', '2023-05-14 11:45:14', 1, 'عدد 6 كرتونة فراخ شهد', 'عدد 5 كرتونة فراخ شهد'),
(7, 4, 1, 1, 18, 1, 1, ' نظير حذف سطر الصنف من فاتورة صرف خامات لخط الانتاج خط الانتاج رقم 1 فاتورة رقم 1', 'عدد 6 كرتونة فراخ شهد', 'عدد 7 كرتونة فراخ شهد', 1, '2023-05-14', '2023-05-14 11:45:22', 1, 'عدد 5 كرتونة فراخ شهد', 'عدد 6 كرتونة فراخ شهد'),
(8, 1, 2, 1, 1, 2, 3, 'نظير مشتريات من المورد مذبح المصنع فاتورة رقم 2', 'عدد 0 شكارة', 'عدد 100 شكارة', 1, '2023-05-14', '2023-05-14 11:49:20', 1, 'عدد 0 شكارة', 'عدد 100 شكارة'),
(9, 4, 2, 1, 17, 1, 2, ' نظير ًرف خامات الي خط انتاج خط الانتاج رقم 1 فاتورة رقم 1', 'عدد 100 شكارة', 'عدد 90 شكارة', 1, '2023-05-14', '2023-05-14 11:49:37', 1, 'عدد 100 شكارة', 'عدد 90 شكارة'),
(10, 4, 1, 2, 19, 1, 1, 'نظير فاتورة استلام انتاج تام من خط الانتاج خط الانتاج رقم 1 فاتورة رقم 1', 'عدد 7 كرتونة فراخ شهد', 'عدد 17 كرتونة فراخ شهد', 1, '2023-05-14', '2023-05-14 11:50:36', 1, 'عدد 1 كرتونة فراخ شهد', 'عدد 11 كرتونة فراخ شهد'),
(11, 2, 1, 1, 4, 1, 1, 'نظير مبيعات للعميل هايبر الرحاب فاتورة رقم 1', 'عدد 17 كرتونة فراخ شهد', 'عدد 16 كرتونة فراخ شهد', 1, '2023-05-14', '2023-05-14 12:54:23', 1, 'عدد 6 كرتونة فراخ شهد', 'عدد 5 كرتونة فراخ شهد'),
(12, 2, 1, 1, 5, 1, 1, 'نظير مرتجع مبيعات عام للعميل هايبر الرحاب فاتورة رقم 1', 'عدد 16 كرتونة فراخ شهد', 'عدد 17 كرتونة فراخ شهد', 1, '2023-05-14', '2023-05-14 13:00:26', 1, 'عدد 5 كرتونة فراخ شهد', 'عدد 6 كرتونة فراخ شهد');
-- --------------------------------------------------------
--
-- Table structure for table `inv_itemcard_movements_categories`
--
CREATE TABLE `inv_itemcard_movements_categories` (
`id` int(11) NOT NULL,
`name` varchar(40) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
-- --------------------------------------------------------
--
-- Table structure for table `inv_itemcard_movements_types`
--
CREATE TABLE `inv_itemcard_movements_types` (
`id` int(11) NOT NULL,
`type` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
-- --------------------------------------------------------
--
-- Table structure for table `inv_production_exchange`
--
CREATE TABLE `inv_production_exchange` (
`id` bigint(20) NOT NULL,
`order_type` tinyint(1) NOT NULL COMMENT 'واحد صرف خامات من المخزن للخط - اتنثين مرتجع خامات من الخط للمخزن',
`auto_serial` bigint(20) NOT NULL,
`inv_production_order_auto_serial` bigint(20) DEFAULT NULL,
`order_date` date NOT NULL COMMENT 'تاريخ الفاتورة',
`production_lines_code` bigint(20) NOT NULL,
`is_approved` tinyint(1) NOT NULL DEFAULT 0,
`com_code` int(11) NOT NULL,
`notes` varchar(225) DEFAULT NULL COMMENT 'اجمالي الفاتورة قبل الخصم',
`discount_type` tinyint(1) DEFAULT NULL COMMENT 'نواع الخصم - واحد خصم نسبة - اثنين خصم يدوي قيمة',
`discount_percent` decimal(10,2) DEFAULT 0.00 COMMENT 'قيمة نسبة الخصم',
`discount_value` decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'قيمة الخصم',
`tax_percent` decimal(10,2) DEFAULT 0.00 COMMENT 'نسبة الضريبة ',
`total_cost_items` decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'اجمالي الاصناف فقط',
`tax_value` decimal(10,2) DEFAULT 0.00 COMMENT 'قيمة الضريبة القيمة المضافة',
`total_befor_discount` decimal(10,2) NOT NULL DEFAULT 0.00,
`total_cost` decimal(10,2) DEFAULT 0.00 COMMENT 'القيمة الاجمالية النهائية للفاتورة',
`account_number` bigint(20) NOT NULL,
`money_for_account` decimal(10,2) DEFAULT NULL,
`pill_type` tinyint(1) NOT NULL COMMENT 'نوع الفاتورة - كاش او اجل - واحد واثنين',
`what_paid` decimal(10,2) DEFAULT 0.00,
`what_remain` decimal(10,2) DEFAULT 0.00,
`treasuries_transactions_id` bigint(20) DEFAULT NULL,
`Supplier_balance_befor` decimal(10,2) DEFAULT NULL COMMENT 'حالة رصيد المورد قبل الفاتروة',
`Supplier_balance_after` decimal(10,2) DEFAULT NULL COMMENT 'حالة رصيد المورد بعد الفاتروة',
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`store_id` bigint(20) NOT NULL COMMENT 'كود المخزن المستلم للفاتورة',
`approved_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول مشتريات ومترجعات المودين ';
--
-- Dumping data for table `inv_production_exchange`
--
INSERT INTO `inv_production_exchange` (`id`, `order_type`, `auto_serial`, `inv_production_order_auto_serial`, `order_date`, `production_lines_code`, `is_approved`, `com_code`, `notes`, `discount_type`, `discount_percent`, `discount_value`, `tax_percent`, `total_cost_items`, `tax_value`, `total_befor_discount`, `total_cost`, `account_number`, `money_for_account`, `pill_type`, `what_paid`, `what_remain`, `treasuries_transactions_id`, `Supplier_balance_befor`, `Supplier_balance_after`, `added_by`, `created_at`, `updated_at`, `updated_by`, `store_id`, `approved_by`) VALUES
(1, 1, 1, 1, '2023-05-14', 1, 1, 1, NULL, NULL, '0.00', '0.00', '0.00', '100000.00', '0.00', '100000.00', '100000.00', 14, '100000.00', 2, '0.00', '100000.00', NULL, NULL, NULL, 1, '2023-05-14 11:45:04', '2023-05-14 11:49:42', 1, 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `inv_production_exchange_details`
--
CREATE TABLE `inv_production_exchange_details` (
`id` bigint(20) NOT NULL,
`inv_production_exchange_id` bigint(20) NOT NULL,
`inv_production_exchange_auto_serial` bigint(20) NOT NULL,
`order_type` tinyint(1) NOT NULL,
`com_code` int(11) NOT NULL,
`deliverd_quantity` decimal(10,2) NOT NULL,
`uom_id` int(11) NOT NULL,
`isparentuom` tinyint(1) NOT NULL COMMENT '1-main -0 retail',
`unit_price` decimal(10,2) NOT NULL,
`total_price` decimal(10,2) NOT NULL,
`order_date` date NOT NULL,
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`item_code` bigint(20) NOT NULL,
`batch_auto_serial` bigint(20) DEFAULT NULL COMMENT 'رقم الباتش بالمخزن التي تم تخزنن الصنف بها',
`production_date` date DEFAULT NULL,
`expire_date` date DEFAULT NULL,
`item_card_type` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='تفاصيل اصناف امر الصرف الخامات لخط الانتاج';
--
-- Dumping data for table `inv_production_exchange_details`
--
INSERT INTO `inv_production_exchange_details` (`id`, `inv_production_exchange_id`, `inv_production_exchange_auto_serial`, `order_type`, `com_code`, `deliverd_quantity`, `uom_id`, `isparentuom`, `unit_price`, `total_price`, `order_date`, `added_by`, `created_at`, `updated_by`, `updated_at`, `item_code`, `batch_auto_serial`, `production_date`, `expire_date`, `item_card_type`) VALUES
(2, 1, 1, 1, 1, '10.00', 3, 1, '10000.00', '100000.00', '2023-05-14', 1, '2023-05-14 11:49:37', NULL, '2023-05-14 11:49:37', 2, 3, '2023-04-01', '2023-05-14', 2);
-- --------------------------------------------------------
--
-- Table structure for table `inv_production_lines`
--
CREATE TABLE `inv_production_lines` (
`id` bigint(20) NOT NULL,
`production_lines_code` bigint(20) NOT NULL,
`name` varchar(225) NOT NULL,
`account_number` bigint(20) NOT NULL,
`start_balance_status` tinyint(4) NOT NULL COMMENT 'e 1-credit -2 debit 3-balanced',
`start_balance` decimal(10,2) NOT NULL COMMENT 'دائن او مدين او متزن اول المدة',
`current_balance` decimal(10,2) NOT NULL DEFAULT 0.00,
`notes` varchar(225) DEFAULT NULL,
`added_by` int(11) NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 0,
`com_code` int(11) NOT NULL,
`date` date NOT NULL,
`address` varchar(250) DEFAULT NULL,
`phones` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول خطوط الانتاج الورش';
--
-- Dumping data for table `inv_production_lines`
--
INSERT INTO `inv_production_lines` (`id`, `production_lines_code`, `name`, `account_number`, `start_balance_status`, `start_balance`, `current_balance`, `notes`, `added_by`, `updated_by`, `created_at`, `updated_at`, `active`, `com_code`, `date`, `address`, `phones`) VALUES
(1, 1, 'خط الانتاج رقم 1', 14, 3, '0.00', '90000.00', NULL, 1, NULL, '2023-05-14 11:44:21', '2023-05-14 11:50:35', 1, 1, '2023-05-14', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `inv_production_order`
--
CREATE TABLE `inv_production_order` (
`id` bigint(20) NOT NULL,
`auto_serial` bigint(20) NOT NULL,
`production_plane` text NOT NULL,
`production_plan_date` date NOT NULL,
`is_approved` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'حالة الاعتماد',
`added_by` int(11) NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`com_code` int(11) NOT NULL,
`approved_by` int(11) DEFAULT NULL,
`approved_at` datetime DEFAULT NULL,
`is_closed` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'هل مغلق وتم',
`closed_by` int(11) DEFAULT NULL,
`closed_at` datetime DEFAULT NULL,
`date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='امر التشغيل للانتاج';
--
-- Dumping data for table `inv_production_order`
--
INSERT INTO `inv_production_order` (`id`, `auto_serial`, `production_plane`, `production_plan_date`, `is_approved`, `added_by`, `updated_by`, `created_at`, `updated_at`, `com_code`, `approved_by`, `approved_at`, `is_closed`, `closed_by`, `closed_at`, `date`) VALUES
(1, 1, 'انتاج عدد 1000 كرتونة فراخ شهد', '2023-05-01', 1, 1, NULL, '2023-05-14 11:44:48', '2023-05-14 11:44:52', 1, 1, '2023-05-14 11:44:52', 0, NULL, NULL, '2023-05-14');
-- --------------------------------------------------------
--
-- Table structure for table `inv_production_receive`
--
CREATE TABLE `inv_production_receive` (
`id` bigint(20) NOT NULL,
`order_type` tinyint(1) NOT NULL COMMENT 'واحد استلام منتج تام من خط الانتاج- اتنثين مرتجع منتج تام الي خط الانتاج ',
`auto_serial` bigint(20) NOT NULL,
`inv_production_order_auto_serial` bigint(20) DEFAULT NULL,
`order_date` date NOT NULL COMMENT 'تاريخ الفاتورة',
`production_lines_code` bigint(20) NOT NULL,
`is_approved` tinyint(1) NOT NULL DEFAULT 0,
`com_code` int(11) NOT NULL,
`notes` varchar(225) DEFAULT NULL COMMENT 'اجمالي الفاتورة قبل الخصم',
`discount_type` tinyint(1) DEFAULT NULL COMMENT 'نواع الخصم - واحد خصم نسبة - اثنين خصم يدوي قيمة',
`discount_percent` decimal(10,2) DEFAULT 0.00 COMMENT 'قيمة نسبة الخصم',
`discount_value` decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'قيمة الخصم',
`tax_percent` decimal(10,2) DEFAULT 0.00 COMMENT 'نسبة الضريبة ',
`total_cost_items` decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'اجمالي الاصناف فقط',
`tax_value` decimal(10,2) DEFAULT 0.00 COMMENT 'قيمة الضريبة القيمة المضافة',
`total_befor_discount` decimal(10,2) NOT NULL DEFAULT 0.00,
`total_cost` decimal(10,2) DEFAULT 0.00 COMMENT 'القيمة الاجمالية النهائية للفاتورة',
`account_number` bigint(20) NOT NULL,
`money_for_account` decimal(10,2) DEFAULT NULL,
`pill_type` tinyint(1) NOT NULL COMMENT 'نوع الفاتورة - كاش او اجل - واحد واثنين',
`what_paid` decimal(10,2) DEFAULT 0.00,
`what_remain` decimal(10,2) DEFAULT 0.00,
`treasuries_transactions_id` bigint(20) DEFAULT NULL,
`Supplier_balance_befor` decimal(10,2) DEFAULT NULL COMMENT 'حالة رصيد المورد قبل الفاتروة',
`Supplier_balance_after` decimal(10,2) DEFAULT NULL COMMENT 'حالة رصيد المورد بعد الفاتروة',
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`store_id` bigint(20) NOT NULL COMMENT 'كود المخزن المستلم للفاتورة',
`approved_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول مشتريات ومترجعات المودين ';
--
-- Dumping data for table `inv_production_receive`
--
INSERT INTO `inv_production_receive` (`id`, `order_type`, `auto_serial`, `inv_production_order_auto_serial`, `order_date`, `production_lines_code`, `is_approved`, `com_code`, `notes`, `discount_type`, `discount_percent`, `discount_value`, `tax_percent`, `total_cost_items`, `tax_value`, `total_befor_discount`, `total_cost`, `account_number`, `money_for_account`, `pill_type`, `what_paid`, `what_remain`, `treasuries_transactions_id`, `Supplier_balance_befor`, `Supplier_balance_after`, `added_by`, `created_at`, `updated_at`, `updated_by`, `store_id`, `approved_by`) VALUES
(1, 1, 1, 1, '2023-05-14', 1, 1, 1, NULL, NULL, '0.00', '0.00', '0.00', '10000.00', '0.00', '10000.00', '10000.00', 14, '-10000.00', 2, '0.00', '10000.00', NULL, NULL, NULL, 1, '2023-05-14 11:50:04', '2023-05-14 11:50:35', 1, 2, 1);
-- --------------------------------------------------------
--
-- Table structure for table `inv_production_receive_details`
--
CREATE TABLE `inv_production_receive_details` (
`id` bigint(20) NOT NULL,
`inv_production_receive_id` bigint(20) NOT NULL,
`inv_production_receive_auto_serial` bigint(20) NOT NULL,
`order_type` tinyint(1) NOT NULL,
`com_code` int(11) NOT NULL,
`deliverd_quantity` decimal(10,2) NOT NULL,
`uom_id` int(11) NOT NULL,
`isparentuom` tinyint(1) NOT NULL COMMENT '1-main -0 retail',
`unit_price` decimal(10,2) NOT NULL,
`total_price` decimal(10,2) NOT NULL,
`order_date` date NOT NULL,
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`item_code` bigint(20) NOT NULL,
`batch_auto_serial` bigint(20) DEFAULT NULL COMMENT 'رقم الباتش بالمخزن التي تم تخزنن الصنف بها',
`production_date` date DEFAULT NULL,
`expire_date` date DEFAULT NULL,
`item_card_type` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='تفاصيل اصناف امر الصرف الخامات لخط الانتاج';
--
-- Dumping data for table `inv_production_receive_details`
--
INSERT INTO `inv_production_receive_details` (`id`, `inv_production_receive_id`, `inv_production_receive_auto_serial`, `order_type`, `com_code`, `deliverd_quantity`, `uom_id`, `isparentuom`, `unit_price`, `total_price`, `order_date`, `added_by`, `created_at`, `updated_by`, `updated_at`, `item_code`, `batch_auto_serial`, `production_date`, `expire_date`, `item_card_type`) VALUES
(1, 1, 1, 1, 1, '10.00', 1, 1, '1000.00', '10000.00', '2023-05-14', 1, '2023-05-14 11:50:31', NULL, '2023-05-14 11:50:31', 1, NULL, '2023-05-01', '2023-05-31', 2);
-- --------------------------------------------------------
--
-- Table structure for table `inv_stores_inventory`
--
CREATE TABLE `inv_stores_inventory` (
`id` bigint(20) NOT NULL,
`store_id` int(11) NOT NULL COMMENT 'مخزن الجرد',
`inventory_date` date NOT NULL,
`inventory_type` tinyint(1) NOT NULL COMMENT 'واحد جرد يومي - اثنين جرد اسبوعي - ثلاثه جرد شهري - اربعه جرد سنوي ',
`auto_serial` bigint(20) NOT NULL,
`is_closed` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'هل امر الجرد مغلق ومرحل',
`total_cost_batches` decimal(10,2) NOT NULL DEFAULT 0.00,
`notes` varchar(225) DEFAULT NULL,
`added_by` int(11) NOT NULL,
`date` date NOT NULL,
`created_at` datetime NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`com_code` int(11) NOT NULL,
`cloased_by` int(11) DEFAULT NULL,
`closed_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول جرد المخازن';
--
-- Dumping data for table `inv_stores_inventory`
--
INSERT INTO `inv_stores_inventory` (`id`, `store_id`, `inventory_date`, `inventory_type`, `auto_serial`, `is_closed`, `total_cost_batches`, `notes`, `added_by`, `date`, `created_at`, `updated_by`, `updated_at`, `com_code`, `cloased_by`, `closed_at`) VALUES
(1, 1, '2023-05-14', 1, 1, 1, '7200.00', NULL, 1, '2023-05-14', '2023-05-14 11:43:47', NULL, '2023-05-14 11:44:00', 1, 1, '2023-05-14 11:44:00');
-- --------------------------------------------------------
--
-- Table structure for table `inv_stores_inventory_details`
--
CREATE TABLE `inv_stores_inventory_details` (
`id` bigint(20) NOT NULL,
`inv_stores_inventory_id` bigint(20) NOT NULL,
`inv_stores_inventory_auto_serial` bigint(20) NOT NULL,
`item_code` bigint(20) NOT NULL,
`inv_uoms_id` int(11) NOT NULL,
`batch_auto_serial` bigint(20) NOT NULL,
`old_quantity` decimal(10,2) NOT NULL,
`new_quantity` decimal(10,2) NOT NULL,
`diffrent_quantity` decimal(10,2) NOT NULL DEFAULT 0.00,
`unit_cost_price` decimal(10,2) NOT NULL,
`total_cost_price` decimal(10,2) NOT NULL,
`production_date` date DEFAULT NULL,
`expired_date` date DEFAULT NULL,
`notes` varchar(225) DEFAULT NULL,
`is_closed` tinyint(1) NOT NULL DEFAULT 0,
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`cloased_by` int(11) DEFAULT NULL,
`closed_at` datetime DEFAULT NULL,
`com_code` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='تفاصيل امر الجرد';
--
-- Dumping data for table `inv_stores_inventory_details`
--
INSERT INTO `inv_stores_inventory_details` (`id`, `inv_stores_inventory_id`, `inv_stores_inventory_auto_serial`, `item_code`, `inv_uoms_id`, `batch_auto_serial`, `old_quantity`, `new_quantity`, `diffrent_quantity`, `unit_cost_price`, `total_cost_price`, `production_date`, `expired_date`, `notes`, `is_closed`, `added_by`, `created_at`, `updated_by`, `updated_at`, `cloased_by`, `closed_at`, `com_code`) VALUES
(1, 1, 1, 1, 1, 1, '6.00', '6.00', '0.00', '1200.00', '7200.00', '2023-03-01', '2023-08-24', NULL, 1, 1, '2023-05-14 11:43:55', NULL, '2023-05-14 11:44:00', 1, '2023-05-14 11:44:00', 1);
-- --------------------------------------------------------
--
-- Table structure for table `inv_stores_transfer`
--
CREATE TABLE `inv_stores_transfer` (
`id` bigint(20) NOT NULL,
`auto_serial` bigint(20) NOT NULL,
`transfer_from_store_id` int(11) NOT NULL COMMENT 'مخزن التحويل',
`transfer_to_store_id` int(11) NOT NULL COMMENT 'مخزن الاستلام',
`order_date` date NOT NULL COMMENT 'تاريخ التحويل',
`is_approved` tinyint(1) NOT NULL DEFAULT 0,
`com_code` int(11) NOT NULL,
`notes` varchar(225) DEFAULT NULL COMMENT 'اجمالي الفاتورة قبل الخصم',
`items_counter` decimal(10,2) NOT NULL DEFAULT 0.00,
`total_cost_items` decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT 'اجمالي الاصناف فقط',
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`updated_by` int(11) DEFAULT NULL,
`approved_by` int(11) DEFAULT NULL,
`approved_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول مشتريات ومترجعات المودين ';
--
-- Dumping data for table `inv_stores_transfer`
--
INSERT INTO `inv_stores_transfer` (`id`, `auto_serial`, `transfer_from_store_id`, `transfer_to_store_id`, `order_date`, `is_approved`, `com_code`, `notes`, `items_counter`, `total_cost_items`, `added_by`, `created_at`, `updated_at`, `updated_by`, `approved_by`, `approved_at`) VALUES
(1, 1, 1, 2, '2023-05-14', 0, 1, NULL, '1.00', '1200.00', 1, '2023-05-14 11:43:14', '2023-05-14 11:43:30', 1, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `inv_stores_transfer_details`
--
CREATE TABLE `inv_stores_transfer_details` (
`id` bigint(20) NOT NULL,
`inv_stores_transfer_id` bigint(20) NOT NULL,
`inv_stores_transfer_auto_serial` bigint(20) NOT NULL,
`com_code` int(11) NOT NULL,
`deliverd_quantity` decimal(10,2) NOT NULL,
`uom_id` int(11) NOT NULL,
`isparentuom` tinyint(1) NOT NULL COMMENT '1-main -0 retail',
`unit_price` decimal(10,2) NOT NULL,
`total_price` decimal(10,2) NOT NULL,
`order_date` date NOT NULL,
`added_by` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`item_code` bigint(20) NOT NULL,
`production_date` date DEFAULT NULL,
`expire_date` date DEFAULT NULL,
`item_card_type` tinyint(1) NOT NULL,
`transfer_from_batch_id` bigint(20) NOT NULL,
`transfer_to_batch_id` bigint(20) DEFAULT NULL,
`is_approved` tinyint(1) DEFAULT 0,
`approved_by` int(11) DEFAULT NULL,
`approved_at` datetime DEFAULT NULL,
`is_canceld_receive` tinyint(1) DEFAULT 0,
`canceld_by` int(11) DEFAULT NULL,
`canceld_at` datetime DEFAULT NULL,
`canceld_cause` varchar(300) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='تفاصيل اصناف امر الصرف الخامات لخط الانتاج';
--
-- Dumping data for table `inv_stores_transfer_details`
--
INSERT INTO `inv_stores_transfer_details` (`id`, `inv_stores_transfer_id`, `inv_stores_transfer_auto_serial`, `com_code`, `deliverd_quantity`, `uom_id`, `isparentuom`, `unit_price`, `total_price`, `order_date`, `added_by`, `created_at`, `updated_by`, `updated_at`, `item_code`, `production_date`, `expire_date`, `item_card_type`, `transfer_from_batch_id`, `transfer_to_batch_id`, `is_approved`, `approved_by`, `approved_at`, `is_canceld_receive`, `canceld_by`, `canceld_at`, `canceld_cause`) VALUES
(1, 1, 1, 1, '1.00', 1, 1, '1200.00', '1200.00', '2023-05-14', 1, '2023-05-14 11:43:30', NULL, '2023-05-14 11:43:38', 1, '2023-03-01', '2023-08-24', 2, 1, NULL, 1, 1, '2023-05-14 11:43:38', 0, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `inv_uoms`
--
CREATE TABLE `inv_uoms` (
`id` int(11) NOT NULL,
`name` varchar(250) NOT NULL,
`is_master` tinyint(1) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
`added_by` int(11) NOT NULL,
`updated_by` int(11) DEFAULT NULL,
`com_code` int(11) NOT NULL,
`date` date NOT NULL COMMENT 'for search ',
`active` tinyint(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='جدول الوحدات';
--
-- Dumping data for table `inv_uoms`
--
INSERT INTO `inv_uoms` (`id`, `name`, `is_master`, `created_at`, `updated_at`, `added_by`, `updated_by`, `com_code`, `date`, `active`) VALUES
(1, 'كرتونة فراخ شهد', 1, '2023-05-14 11:38:15', '2023-05-14 11:38:15', 1, NULL, 1, '2023-05-14', 1),
(2, 'كيلوا 90 جرام فراخ شهد', 0, '2023-05-14 11:38:37', '2023-05-14 11:38:37', 1, NULL, 1, '2023-05-14', 1),
(3, 'شكارة', 1, '2023-05-14 11:46:23', '2023-05-14 11:46:23', 1, NULL, 1, '2023-05-14', 1),
(4, 'فرخة', 0, '2023-05-14 11:46:35', '2023-05-14 11:46:35', 1, NULL, 1, '2023-05-14', 1);
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_08_19_000000_create_failed_jobs_table', 1),
(4, '2019_12_14_000001_create_personal_access_tokens_table', 1),
(5, '2022_09_08_135041_account_types', 1);
-- --------------------------------------------------------
--
-- Table structure for table `mov_type`
--
CREATE TABLE `mov_type` (
`id` int(11) NOT NULL,
`name` varchar(100) NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`in_screen` tinyint(1) NOT NULL COMMENT '1-dissmissal 2-collect',
`is_private_internal` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='الحركة علي الخزنة';
--
-- Dumping data for table `mov_type`
--
INSERT INTO `mov_type` (`id`, `name`, `active`, `in_screen`, `is_private_internal`) VALUES
(1, 'مراجعة واستلام نقدية شفت خزنة مستخدم', 1, 2, 1),
(3, 'صرف مبلغ لحساب مالي', 1, 1, 0),
(4, 'تحصيل مبلغ من حساب مالي', 1, 2, 0),
(5, 'تحصيل ايراد مبيعات', 1, 2, 0),
(6, 'صرف نظير مرتجع مبيعات', 1, 1, 0),
(8, 'صرف سلفة علي راتب موظف', 1, 1, 1),
(9, 'صرف نظير مشتريات من مورد', 1, 1, 0),
(10, 'تحصيل نظير مرتجع مشتريات الي مورد', 1, 2, 0),
(16, 'ايراد زيادة راس المال', 1, 2, 0),
(17, 'مصاريف شراء مثل النولون', 1, 1, 0),
(18, 'صرف للإيداع البنكي', 1, 1, 0),
(21, 'رد سلفة علي راتب موظف', 1, 2, 1),
(22, 'تحصيل خصومات موظفين', 1, 2, 1),
(24, 'صرف مرتب لموظف', 1, 1, 1),
(25, 'سحب من البنك\r\n', 1, 2, 0),
(26, 'صرف لرد رأس المال', 1, 1, 0),
(27, 'صرف بفاتورة خدمات مقدمة لنا', 1, 1, 0),
(28, 'تحصيل بفاتورة خدمات نقدمها للغير', 1, 2, 0);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--