-
Notifications
You must be signed in to change notification settings - Fork 0
/
servisler.html
1349 lines (1247 loc) · 90.8 KB
/
servisler.html
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
<!DOCTYPE html>
<html lang="tr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Ritma Flex İş Yönetim Platformu</title>
<link href="assets/css/fontawesome.min.css" rel="stylesheet" />
<link href="assets/css/ionicons.min.css" rel="stylesheet" />
<link href="assets/css/jqvmap.min.css" rel="stylesheet" />
<link href="assets/js/quill/css/quill.snow.css" rel="stylesheet" />
<link href="assets/js/quill/css/quill.core.css" rel="stylesheet" />
<link href="assets/js/quill/css/quill.bubble.css" rel="stylesheet" />
<link href="assets/js/select2/css/select2.min.css" rel="stylesheet" />
<link href="assets/css/dashforge.css" rel="stylesheet" />
<link href="assets/css/dashforge.profile.css" rel="stylesheet" />
<link href="assets/css/dashforge.filemgr.css" rel="stylesheet" />
<link href="assets/css/dashforge.mail.css" rel="stylesheet" />
<link href="assets/css/animate.min.css" rel="stylesheet" />
<link href="assets/css/skin.light.css" rel="stylesheet" />
<link href="assets/css/customs.css" rel="stylesheet" />
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon" />
<script src="https://kit-pro.fontawesome.com/releases/v5.10.1/js/pro.min.js" data-auto-fetch-svg></script>
</head>
<body class="df-roboto">
<header class="navbar navbar-header navbar-header-fixed">
<div class="d-none align-items-center pos-fixed t-0 z-index-50 w-100 ht-40 tx-white tx-12 justify-content-center bg-dark pd-y-5 pd-x-20 alert-dismissible" role="alert">
<i data-feather="info" class="wd-16 ht-16"></i> Aylık aboneliğinizin bitimine 3 gün kaldı. Yenilemek için
<button type="button" class="btn btn-xs btn-warning lh--9 mg-l-10">Yenile</button>
<button type="button" class="close">
<span aria-hidden="true">×</span>
</button>
</div>
<a href="" id="mainMenuOpen" class="burger-menu"><i data-feather="menu"></i></a>
<div class="navbar-brand wd-sm-auto-f">
<a href="index.html" class="df-logo"><img src="assets/logo_ritmaflex.svg" class="ht-25" /></a>
<div class="dropdown tx-12 mg-l-40">
<button class="btn btn-xs btn-outline-light dropdown-toggle pd-x-3 pd-y-3" type="button" id="companies" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<div class="d-inline-flex align-items-center justify-content-start">
<div class="wd-35"><div class="avatar avatar-xs"><img src="http://via.placeholder.com/30" class="rounded" alt=""></div></div>
<div class="tx-left lh-0 pd-r-10">ZY Elektrikli Traktör</div>
</div>
</button>
<div class="dropdown-menu mn-wd-100p tx-12" aria-labelledby="companies">
<a class="dropdown-item" href="#">ZY Elektrikli Traktör</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item tx-primary" href="#modal_ritmafirma" data-toggle="modal">Bölge Müdürlüğü</a>
<a class="dropdown-item tx-primary" href="#modal_ritmafirma" data-toggle="modal">Bayii</a>
</div>
</div>
</div>
<div id="navbarMenu" class="navbar-menu-wrapper">
<div class="navbar-menu-header">
<a href="index.html" class="df-logo"><img src="assets/logo_ritmaflex.svg" class="ht-25" /></a>
<a id="mainMenuClose" href="#"><i data-feather="x"></i></a>
</div>
<ul class="nav navbar-menu">
<li class="nav-label pd-l-20 pd-lg-l-25 d-lg-none">Menü</li>
<li class="nav-item with-sub">
<a href="" class="nav-link">Kontaklar</a>
<div class="navbar-menu-sub">
<div class="d-lg-flex">
<ul>
<li class="nav-label">Kontak Türleri</li>
<li class="nav-sub-item"><a href="profiller.html" class="nav-sub-link">Müşteri</a></li>
<li class="nav-sub-item"><a href="profiller.html" class="nav-sub-link">Tedarikçi</a></li>
<li class="nav-sub-item"><a href="profiller.html" class="nav-sub-link">Bölge Müdürlüğü</a></li>
<li class="nav-sub-item"><a href="profiller.html" class="nav-sub-link">Bayii</a></li>
<li class="nav-sub-item"><a href="profiller.html" class="nav-sub-link">Rakip</a></li>
</ul>
<ul>
<li class="nav-label">Yeni</li>
<li class="nav-sub-item"><a href="profiller.html#yeni1" class="nav-sub-link"><i class="far fa-plus"></i>Yeni Müşteri</a></li>
<li class="nav-sub-item"><a href="profiller.html#yeni2" class="nav-sub-link"><i class="far fa-plus"></i>Yeni Tedarikçi</a></li>
<li class="nav-sub-item"><a href="profiller.html#yeni3" class="nav-sub-link"><i class="far fa-plus"></i>Yeni Bölge Müdürlüğü</a></li>
<li class="nav-sub-item"><a href="profiller.html#yeni4" class="nav-sub-link"><i class="far fa-plus"></i>Yeni Bayi</a></li>
<li class="nav-sub-item"><a href="profiller.html#yeni5" class="nav-sub-link"><i class="far fa-plus"></i>Yeni Rakip</a></li>
</ul>
</div>
</div>
</li>
<li class="nav-item"><a href="urunler.html" class="nav-link">Ürünler</a></li>
<li class="nav-item"><a href="servisler.html" class="nav-link">Servis</a></li>
<!--<li class="nav-item with-sub">
<a href="" class="nav-link">CRM</a>
<div class="navbar-menu-sub">
<div class="d-lg-flex">
<ul>
<li class="nav-label">Pazarlama</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-activity"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12" /></svg>
Fırsat
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-message-square"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path></svg>
Görüşme
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-plus"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" /><polyline points="14 2 14 8 20 8" /><line x1="12" y1="18" x2="12" y2="12" /><line x1="9" y1="15" x2="15" y2="15" /></svg>
Teklif
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-phone-incoming"><polyline points="16 2 16 8 22 8"></polyline><line x1="23" y1="1" x2="16" y2="8"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>
Şikayet Yönetimi
</a>
</li>
<li class="nav-label mg-t-20">Ürün Yönetimi </li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<i class="fas fa-barcode mg-r-15"></i>
Ürünler
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-tag"><path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" /><line x1="7" y1="7" x2="7.01" y2="7" /></svg>
Fiyatlar
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-package"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21" /><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z" /><polyline points="3.27 6.96 12 12.01 20.73 6.96" /><line x1="12" y1="22.08" x2="12" y2="12" /></svg>
Müşteri Ürünleri
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round"
class="feather feather-users">
<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path>
<circle cx="9" cy="7" r="4"></circle>
<path d="M23 21v-2a4 4 0 0 0-3-3.87"></path>
<path d="M16 3.13a4 4 0 0 1 0 7.75"></path>
</svg> Kategoriler
</a>
</li>
</ul>
<ul>
<li class="nav-label">Satış </li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-circle"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>
Sipariş
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-star"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
Satış
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-target"><circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="6"></circle><circle cx="12" cy="12" r="2"></circle></svg>
Hedef Kota
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-pie-chart"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
Dashboard
</a>
</li>
<li class="nav-label mg-t-20">Müşteri</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round"
class="feather feather-file-text">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<polyline points="10 9 9 9 8 9"></polyline>
</svg> Kontak Kişiler
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round"
class="feather feather-file-text">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<polyline points="10 9 9 9 8 9"></polyline>
</svg> Potansiyel Kayıtlar
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round"
class="feather feather-file-text">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<polyline points="10 9 9 9 8 9"></polyline>
</svg> Harita Görünümü
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round"
class="feather feather-file-text">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<polyline points="10 9 9 9 8 9"></polyline>
</svg> Müşteri Dağılımı
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="nav-item with-sub">
<a href="" class="nav-link">Servis</a>
<ul class="navbar-menu-sub">
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-tool"><path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z" /></svg>
Servis
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-paperclip"><path d="M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48" /></svg>
Bakım Sözleşmesi
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-box"><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
Müşteri Ürünü
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-phone-incoming"><polyline points="16 2 16 8 22 8"></polyline><line x1="23" y1="1" x2="16" y2="8"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>
Ticket - Müşteri Destek
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-bar-chart"><line x1="12" y1="20" x2="12" y2="10"></line><line x1="18" y1="20" x2="18" y2="4"></line><line x1="6" y1="20" x2="6" y2="16"></line></svg>
Servis Dağılımı
</a>
</li>
</ul>
</li>
<li class="nav-item with-sub">
<a href="" class="nav-link">Stok</a>
<div class="navbar-menu-sub">
<div class="d-lg-flex">
<ul>
<li class="nav-label">Stok Hareketleri</li>
<li class="nav-sub-item">
<a href="page-signin.html" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-download"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="7 10 12 15 17 10"></polyline><line x1="12" y1="15" x2="12" y2="3"></line></svg>
Stok Giriş
</a>
</li>
<li class="nav-sub-item">
<a href="page-signup.html" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-upload"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="17 8 12 3 7 8"></polyline><line x1="12" y1="3" x2="12" y2="15"></line></svg>
Stok Çıkış
</a>
<li class="nav-sub-item">
<a href="page-verify.html" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-truck"><rect x="1" y="3" width="15" height="13"></rect><polygon points="16 8 20 8 23 11 23 16 16 16 16 8"></polygon><circle cx="5.5" cy="18.5" r="2.5"></circle><circle cx="18.5" cy="18.5" r="2.5"></circle></svg>
Depo Transferi
</a>
</li>
</ul>
<ul>
<li class="nav-label">Kayıtlar</li>
<li class="nav-sub-item">
<a href="page-500.html" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path>
<polyline points="13 2 13 9 20 9"></polyline>
</svg>Stok Takibi
</a>
</li>
<li class="nav-sub-item">
<a href="page-404.html" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path>
<polyline points="13 2 13 9 20 9"></polyline>
</svg>Stok Hareketleri
</a>
</li>
<li class="nav-sub-item">
<a href="page-500.html" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path>
<polyline points="13 2 13 9 20 9"></polyline>
</svg> Ürün Stok Geçmişi
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="nav-item with-sub">
<a href="" class="nav-link">Demirbaş</a>
<div class="navbar-menu-sub">
<div class="d-lg-flex">
<ul>
<li class="nav-label">Kurumsal Envanter</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-download"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="7 10 12 15 17 10"></polyline><line x1="12" y1="15" x2="12" y2="3"></line></svg>
Demirbaş
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-upload"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="17 8 12 3 7 8"></polyline><line x1="12" y1="3" x2="12" y2="15"></line></svg>
Zimmet Kaydı
</a>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-square"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
Zimmet Teslimi
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-repeat"><polyline points="17 1 21 5 17 9"></polyline><path d="M3 11V9a4 4 0 0 1 4-4h14"></path><polyline points="7 23 3 19 7 15"></polyline><path d="M21 13v2a4 4 0 0 1-4 4H3"></path></svg>
Zimmet Transfer
</a>
</li>
</ul>
<ul>
<li class="nav-label">Kayıtlar</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path>
<polyline points="13 2 13 9 20 9"></polyline>
</svg>Demirbaş Envanteri
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path>
<polyline points="13 2 13 9 20 9"></polyline>
</svg>Demirbaş Geçmişi
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path>
<polyline points="13 2 13 9 20 9"></polyline>
</svg> Demirbaş Hareket Geçmişi
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="nav-item with-sub">
<a href="" class="nav-link">Satınalma</a>
<div class="navbar-menu-sub">
<div class="d-lg-flex">
<ul>
<li class="nav-label">Süreç Takibi</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-send"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
Ürün Talebi
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-clock"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>
Satınalma Süreci
</a>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-circle"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>
Satınalma Siparişleri
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-flag"><path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"></path><line x1="4" y1="22" x2="4" y2="15"></line></svg>
Satınalmalar
</a>
</li>
</ul>
<ul>
<li class="nav-label">Kayıtlar</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path>
<polyline points="13 2 13 9 20 9"></polyline>
</svg>Ürün Talep Havuzu
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path>
<polyline points="13 2 13 9 20 9"></polyline>
</svg>Tedarikçiler
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path>
<polyline points="13 2 13 9 20 9"></polyline>
</svg> Dashboard
</a>
</li>
</ul>
</div>
</div>
</li>
<li class="nav-item with-sub">
<a href="" class="nav-link">Ön Muhasebe</a>
<div class="navbar-menu-sub">
<div class="d-lg-flex">
<ul>
<li class="nav-label">Faturalar</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-minus"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="9" y1="15" x2="15" y2="15"></line></svg>
Alış Faturası
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-plus"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="12" y1="18" x2="12" y2="12"></line><line x1="9" y1="15" x2="15" y2="15"></line></svg>
Satış Faturası
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x-circle"><circle cx="12" cy="12" r="10" /><line x1="15" y1="9" x2="9" y2="15" /><line x1="9" y1="9" x2="15" y2="15" /></svg>
İade Faturaları
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
Masraf Merkezi
</a>
</li>
<li class="nav-label mg-t-20">Finans Takip</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-calendar"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>
Finans Ajandası
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-archive"><polyline points="21 8 21 21 3 21 3 8"></polyline><rect x="1" y="3" width="22" height="5"></rect><line x1="10" y1="12" x2="14" y2="12"></line></svg>
Çek - Senet
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-anchor"><circle cx="12" cy="5" r="3"></circle><line x1="12" y1="22" x2="12" y2="8"></line><path d="M5 12H2a10 10 0 0 0 20 0h-3"></path></svg>
Banka - Kasa
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-message-square"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path></svg>
Ödeme Görüşmeleri
</a>
</li>
</ul>
<ul>
<li class="nav-label">Cari Takip </li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-zap"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"></polygon></svg>
Borç Alacak
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-divide"><circle cx="12" cy="6" r="2"></circle><line x1="5" y1="12" x2="19" y2="12"></line><circle cx="12" cy="18" r="2"></circle></svg>
Ödeme ve Tahsilatlar
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-user-check"><path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><polyline points="17 11 19 13 23 9"></polyline></svg>
Personel Ödemeleri
</a>
</li>
<li class="nav-sub-item">
<a href="#" class="nav-sub-link">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-list"><line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3.01" y2="6"></line><line x1="3" y1="12" x2="3.01" y2="12"></line><line x1="3" y1="18" x2="3.01" y2="18"></line></svg>
BA - BS Listesi
</a>
</li>
</ul>
</div>
</div>
</li>-->
</ul>
</div>
<div class="navbar-right">
<a id="navbarSearch" href="" class="search-link d-flex"><i data-feather="search"></i></a>
<div class="dropdown dropdown-message">
<a href="agenda.html" class="dropdown-link new-indicator d-flex" data-tooltip data-placement="bottom" title="Ajanda"><i data-feather="calendar"></i></a>
</div>
<div class="dropdown dropdown-message">
<a href="" class="dropdown-link new-indicator d-flex" data-toggle="dropdown">
<i data-feather="message-square"></i>
<span>5</span>
</a>
<div class="dropdown-menu dropdown-menu-right">
<div class="dropdown-header">Mesajlar</div>
<a href="" class="dropdown-item">
<div class="media">
<div class="avatar avatar-sm avatar-online"><img src="http://via.placeholder.com/350" class="rounded-circle" alt=""></div>
<div class="media-body mg-l-15">
<p><strong>Ali Osman Yıldırım</strong>, ₺ 650 tutarlı servis için onay bekliyor</p>
<span>Bugün - 10:00</span>
</div>
</div>
</a>
<div class="dropdown-footer"><a href="">Hepsini listeleyin</a></div>
</div>
</div>
<div class="dropdown dropdown-notification">
<a href="" class="dropdown-link new-indicator d-flex" data-toggle="dropdown">
<i data-feather="bell"></i>
<span>2</span>
</a>
<div class="dropdown-menu dropdown-menu-right">
<div class="dropdown-header">Bildirimler</div>
<a href="" class="dropdown-item">
<div class="media">
<div class="avatar avatar-sm avatar-online"><img src="http://via.placeholder.com/350" class="rounded-circle" alt=""></div>
<div class="media-body mg-l-15">
<p>Serkan Erkut tarafından <strong> Ertuğrullar Traktör Makina A.Ş</strong> için yeni servis oluşturdu.</p>
<span>az önce</span>
</div>
</div>
</a>
<div class="dropdown-footer"><a href="">Hepsini listeleyin</a></div>
</div>
</div>
<div class="dropdown dropdown-profile">
<a href="#" class="dropdown-link" data-toggle="dropdown" data-display="static">
<div class="avatar avatar-sm"><img class="rounded-50" src="http://www.gurutek.com.tr/kaynak/yuklemeler/kurumsal/ekip/309_ubuyukalkan.jpg" /></div>
</a>
<div class="dropdown-menu dropdown-menu-right tx-13">
<div class="avatar avatar-lg mg-b-15"><img class="rounded-50" src="http://www.gurutek.com.tr/kaynak/yuklemeler/kurumsal/ekip/309_ubuyukalkan.jpg" /></div>
<h6 class="tx-semibold mg-b-5">Uğur Büyükalkan</h6>
<p class="mg-b-25 tx-12 tx-color-03">Müşteri Temsilcisi</p>
<a href="#" class="dropdown-item"><i data-feather="user"></i>Kontak </a>
<a href="#" class="dropdown-item"><i data-feather="life-buoy"></i> Yardım</a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item"><i data-feather="settings"></i> Hesap Ayaları</a>
<a href="#" class="dropdown-item"><i data-feather="settings"></i> Sistem Ayarları</a>
<div class="dropdown-divider"></div>
<a href="login.html" class="dropdown-item"><i data-feather="log-out"></i> Çıkış yap</a>
</div>
</div>
</div>
<div class="navbar-search">
<div class="navbar-search-header">
<input type="search" class="form-control" placeholder="Aramalarınızı buradan yapabilirsiniz...">
<button class="btn"><i data-feather="search"></i></button>
<a id="navbarSearchClose" href="" class="link-03 mg-l-5 mg-lg-l-10"><i data-feather="x"></i></a>
</div>
<div class="navbar-search-body">
<label class="tx-10 tx-medium tx-uppercase tx-spacing-1 tx-color-03 mg-b-10 d-flex align-items-center">Son Aramalarınız</label>
<ul class="list-unstyled">
<li><a href="#">Mehmet Özdemir</a></li>
<li><a href="#">Ali Osman Yıldırım</a></li>
<li><a href="#">Agri Tarım Makineleri Ltd. Şti.</a></li>
</ul>
<hr class="mg-y-30 bd-0">
<label class="tx-10 tx-medium tx-uppercase tx-spacing-1 tx-color-03 mg-b-10 d-flex align-items-center">Yeni Eklenenler</label>
<ul class="list-unstyled">
<li><a href="#">Erkunt Traktör A.Ş</a></li>
<li><a href="#">Ertuğrullar Tarım Makinaları A.Ş.</a></li>
</ul>
</div>
</div>
</header>
<div class="content content-fixed pd-20 pd-b-0-f">
<div class="pos-relative pd-x-0">
<ul class="nav nav-line">
<li class="nav-item"><a href="servisler.html" class="nav-link">Servisler</a></li>
</ul>
<div class="pos-absolute r-0 b-10">
<button type="button" id="summary_button" data-status="on" data-text1="Gizle" data-text2="Göster" class="btn btn-xs btn-outline-secondary pd-y-2"><!--<i class="far fa-eye-slash mg-r-6"></i>-->Özeti <span>Gizle</span></button>
<button type="button" id="groups_button" data-status="on" data-text1="Gizle" data-text2="Göster" class="btn btn-xs btn-outline-secondary pd-y-2"><!--<i class="far fa-eye-slash mg-r-6"></i>-->Gruplamayı <span>Gizle</span></button>
</div>
</div>
</div>
<div class="content pd-20 pd-t-0-f">
<div id="summary_list" class="row row-sm mg-y-20">
<div class="col-4">
<div class="card">
<div class="card-header ht-60 d-flex align-items-center justify-content-between pd-y-15 pd-x-20">
<div>
<h6 class="tx-uppercase tx-semibold mg-b-0">TEMMUZ SÜRE Özeti</h6>
</div>
<div>
<div class="btn-group" id="filterBlist">
<button id="filterB1" class="btn btn-xs btn-white btn-uppercase">Bugün</button>
<button id="filterB2" class="btn btn-xs btn-white btn-uppercase">Hafta</button>
<button id="filterB3" class="btn btn-xs btn-white btn-uppercase active">Ay</button>
</div>
</div>
</div>
<div class="card-body ht-150 pd-y-10 pd-x-25" id="filterBlist_detail">
<div id="filterReport1" class="d-none">
<div class="row">
<div class="col-4 pd-y-15">
<h2 class="tx-24 tx-spacing--2 mg-b-0">9 <small class="tx-color-03">adet</small></h2>
<p class="d-flex ht-30 align-items-end">
<span class="tx-16 lh-1 mg-r-10">8<small class="mg-l-5">adet</small></span>
<span class="tx-medium tx-11 tx-danger tx-uppercase lh-1">14% <i class="fas fa-arrow-up"></i></span>
</p>
<p class="tx-12 tx-uppercase tx-color-03 mg-b-0">Personel İş Yoğunluğu</p>
</div>
<div class="col-4 pd-y-15 bd-l">
<h2 class="tx-24 tx-spacing--2 mg-b-0">1.2 <small class="tx-color-03">saat</small></h2>
<p class="d-flex ht-30 align-items-end">
<span class="tx-16 lh-1 mg-r-10">1.4 <small class="mg-l-5">saat</small></span>
<span class="tx-medium tx-11 tx-success tx-uppercase lh-1">8% <i class="fas fa-arrow-down"></i></span>
</p>
<p class="tx-12 tx-uppercase tx-color-03 mg-b-0">Ortalama İş Emri Süresi</p>
</div>
<div class="col-4 pd-y-15 bd-l">
<h2 class="tx-24 tx-spacing--2 mg-b-0">12 <small class="tx-color-03">dakika</small></h2>
<p class="d-flex ht-30 align-items-end">
<span class="tx-16 lh-1 mg-r-10">16 <small class="mg-l-5">dakika</small></span>
<span class="tx-medium tx-11 tx-success tx-uppercase lh-1">3% <i class="fas fa-arrow-down"></i></span>
</p>
<p class="tx-12 tx-uppercase tx-color-03 mg-b-0">SLA Süresi</p>
</div>
</div>
</div>
<div id="filterReport2" class="d-none">
<div class="row">
<div class="col-4 pd-y-15">
<h2 class="tx-24 tx-spacing--2 mg-b-0">28 <small class="tx-color-03">adet</small></h2>
<p class="d-flex ht-30 align-items-end">
<span class="tx-16 lh-1 mg-r-10">25<small class="mg-l-5">adet</small></span>
<span class="tx-medium tx-11 tx-success tx-uppercase lh-1">8% <i class="fas fa-arrow-down"></i></span>
</p>
<p class="tx-12 tx-uppercase tx-color-03 mg-b-0">Personel İş Yoğunluğu</p>
</div>
<div class="col-4 pd-y-15 bd-l">
<h2 class="tx-24 tx-spacing--2 mg-b-0">1.5 <small class="tx-color-03">saat</small></h2>
<p class="d-flex ht-30 align-items-end">
<span class="tx-16 lh-1 mg-r-10">1.3 <small class="mg-l-5">saat</small></span>
<span class="tx-medium tx-11 tx-danger tx-uppercase lh-1">14% <i class="fas fa-arrow-up"></i></span>
</p>
<p class="tx-12 tx-uppercase tx-color-03 mg-b-0">Ortalama İş Emri Süresi</p>
</div>
<div class="col-4 pd-y-15 bd-l">
<h2 class="tx-24 tx-spacing--2 mg-b-0">18 <small class="tx-color-03">dakika</small></h2>
<p class="d-flex ht-30 align-items-end">
<span class="tx-16 lh-1 mg-r-10">22 <small class="mg-l-5">dakika</small></span>
<span class="tx-medium tx-11 tx-success tx-uppercase lh-1">22% <i class="fas fa-arrow-down"></i></span>
</p>
<p class="tx-12 tx-uppercase tx-color-03 mg-b-0">SLA Süresi</p>
</div>
</div>
</div>
<div id="filterReport3" class="d-block">
<div class="row flex-nowrap scroll-for-flex">
<div class="col-4 mw-140 pd-y-15">
<h2 class="tx-24 tx-spacing--2 mg-b-0">169 <small class="tx-color-03">adet</small></h2>
<p class="d-flex ht-30 align-items-end">
<span class="tx-16 lh-1 mg-r-10">177<small class="mg-l-5">adet</small></span>
<span class="tx-medium tx-11 tx-success tx-uppercase lh-1">9% <i class="fas fa-arrow-down"></i> </span>
</p>
<p class="tx-12 tx-uppercase tx-color-03 mg-b-0">Personel İş Yoğunluğu</p>
</div>
<div class="col-4 mw-140 pd-y-15 bd-l">
<h2 class="tx-24 tx-spacing--2 mg-b-0">1.2 <small class="tx-color-03">saat</small></h2>
<p class="d-flex ht-30 align-items-end">
<span class="tx-16 lh-1 mg-r-10">0.5 <small class="mg-l-5">saat</small></span>
<span class="tx-medium tx-11 tx-danger tx-uppercase lh-1">8% <i class="fas fa-arrow-up"></i></span>
</p>
<p class="tx-12 tx-uppercase tx-color-03 mg-b-0">Ortalama İş Emri Süresi</p>
</div>
<div class="col-4 mw-140 pd-y-15 bd-l">
<h2 class="tx-24 tx-spacing--2 mg-b-0">21 <small class="tx-color-03">dakika</small></h2>
<p class="d-flex ht-30 align-items-end">
<span class="tx-16 lh-1 mg-r-10">23 <small class="mg-l-5">dakika</small></span>
<span class="tx-medium tx-11 tx-success tx-uppercase lh-1">3% <i class="fas fa-arrow-down"></i></span>
</p>
<p class="tx-12 tx-uppercase tx-color-03 mg-b-0">SLA Süresi</p>
</div>
</div>
</div>
</div>
<div class="card-footer ht-50 tx-color-03">
<p class="ys-truncate"> İş emirlerinden <span class="tx-dark tx-bold">12 ad</span> (%8) kadarı gecikme durumundadır.</p>
</div>
</div>
</div>
<div class="col-4">
<div class="card">
<div class="card-header ht-60 d-flex align-items-center justify-content-between pd-y-15 pd-x-20">
<div>
<h6 class="tx-uppercase tx-semibold mg-b-0">Temmuz KAYIT Özeti</h6>
</div>
<div>
<div class="btn-group" id="filterAlist">
<button id="filterA1" class="btn btn-xs btn-white btn-uppercase active">Tür</button>
<button id="filterA2" class="btn btn-xs btn-white btn-uppercase">Arıza</button>
<button id="filterA3" class="btn btn-xs btn-white btn-uppercase">Bayii</button>
</div>
</div>
</div>
<div class="card-body ht-200 pd-25" id="filterAlist_detail">
<canvas id="chartBar1" class="d-block"></canvas>
<canvas id="chartBar2" class="d-none"></canvas>
<canvas id="chartBar3" class="d-none"></canvas>
</div>
</div>
</div>
<div class="col-4">
<div class="card">
<div class="card-header ht-60 d-flex align-items-center justify-content-between pd-y-15 pd-x-25">
<h6 class="tx-uppercase tx-semibold mg-b-0">Yıllık Özet</h6>
</div>
<div class="card-body ht-200 pd-x-25">
<canvas id="chartArea1" class="ht-180"></canvas>
</div>
</div>
</div>
</div>
<div id="myTab" role="tablist" class="d-flex pos-relative bd-b justify-content-between">
<ul class="nav nav-line bd-0">
<li class="nav-item mg-l-0-f">
<a class="nav-link pd-x-15-f pd-y-15-f active" id="list1-tab" href="#list1" data-toggle="tab" role="tab">
<span class="tx-14">İş Emri Türü</span>
</a>
</li>
<li class="nav-item mg-l-0-f">
<a class="nav-link pd-x-15-f pd-y-15-f" id="list6-tab" href="#list6" data-toggle="tab" role="tab">
<span class="tx-14">Arıza Türü</span>
</a>
</li>
<li class="nav-item mg-l-0-f">
<a class="nav-link pd-x-15-f pd-y-15-f" id="list3-tab" href="#list3" data-toggle="tab" role="tab">
<span class="tx-14">Bölge Müdürlüğü</span>
</a>
</li>
<li class="nav-item mg-l-0-f">
<a class="nav-link pd-x-15-f pd-y-15-f" id="list4-tab" href="#list4" data-toggle="tab" role="tab">
<span class="tx-14">Bayii</span>
</a>
</li>
<li class="nav-item mg-l-0-f">
<a class="nav-link pd-x-15-f pd-y-15-f" id="list2-tab" href="#list2" data-toggle="tab" role="tab">
<span class="tx-14">Konum</span>
</a>
</li>
<li class="nav-item pos-absolute r-0">
<a class="nav-link pd-x-15-f pd-y-15-f" id="list5-tab" href="#list5" data-toggle="tab" role="tab">
<span class="tx-14"><i class="fas fa-archive mg-r-8"></i>Arşiv</span>
<span class="tx-12 tx-semibold lh-normal bg-gray-200 rounded pd-x-5 pd-y-2 mg-l-10">25.744</span>
</a>
</li>
</ul>
</div>
<div id="myTabContent" class="tab-content bg-white bd bd-b-0-f">
<div id="list1" class="tab-pane fade show active" role="tabpanel">
<div class="d-flex mn-ht-120">
<div class="mw-140 pos-relative pd-20 cursor-pointer bg-primary-light bd-r bd-r-arrow2">
<div class="d-flex align-items-baseline tx-semibold"><span class="tx-24 tx-spacing--2">187</span></div>
<small class="d-block tx-uppercase tx-11 tx-spacing-1 tx-medium mg-t-10">Tümü</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">3</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Satış Öncesi Teknik Bakım</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">184</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Garantili Bakım</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">3</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">İyi Niyet Garantisi</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">22</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Yedek Parça Garantisi</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">5</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">* DİĞER</small>
</div>
</div>
</div>
<div id="list6" class="tab-pane fade" role="tabpanel">
<div class="d-flex mn-ht-120">
<div class="mw-140 pos-relative pd-20 cursor-pointer bg-primary-light bd-r bd-r-arrow2">
<div class="d-flex align-items-baseline tx-semibold"><span class="tx-24 tx-spacing--2">39</span></div>
<small class="d-block tx-uppercase tx-11 tx-spacing-1 tx-medium mg-t-10">Tümü</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">12</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Bakım</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">9</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Fren Sistemi</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">5</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Besleme Sistemi</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">2</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Shaft</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">14</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">* Diğer</small>
</div>
</div>
</div>
<div id="list2" class="tab-pane fade" role="tabpanel">
<div class="d-flex mn-ht-120">
<div class="mw-140 pos-relative pd-20 cursor-pointer bg-primary-light bd-r bd-r-arrow2">
<div class="d-flex align-items-baseline tx-semibold"><span class="tx-24 tx-spacing--2">39</span></div>
<small class="d-block tx-uppercase tx-11 tx-spacing-1 tx-medium mg-t-10">Tümü</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">12</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">İstanbul</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">9</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Ankara</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">5</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Adana</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">2</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Bursa</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">14</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">* Diğer</small>
</div>
</div>
</div>
<div id="list3" class="tab-pane fade" role="tabpanel">
<div class="d-flex mn-ht-120">
<div class="mw-140 pos-relative pd-20 cursor-pointer bg-primary-light bd-r bd-r-arrow2">
<div class="d-flex align-items-baseline tx-semibold"><span class="tx-24 tx-spacing--2">39</span></div>
<small class="d-block tx-uppercase tx-11 tx-spacing-1 tx-medium mg-t-10">Tümü</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">12</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">İstanbul B.M.</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">9</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Ankara B.M.</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">5</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">İzmir B.M.</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">5</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">* DİĞER</small>
</div>
</div>
</div>
<div id="list4" class="tab-pane fade" role="tabpanel">
<div class="d-flex mn-ht-120">
<div class="mw-140 pos-relative pd-20 cursor-pointer bg-primary-light bd-r bd-r-arrow2">
<div class="d-flex align-items-baseline tx-semibold"><span class="tx-24 tx-spacing--2">39</span></div>
<small class="d-block tx-uppercase tx-11 tx-spacing-1 tx-medium mg-t-10">Tümü</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">12</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Kadıoğlu Tarım Ltd.</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">9</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Erkunt Traktör A.Ş.</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">9</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Pekcanlar Tarım</small>
</div>
<div class="mw-140 pos-relative pd-20 cursor-pointer tx-color-03 bd-r">
<div class="d-flex align-items-baseline"><span class="tx-24 tx-spacing--2">9</span></div>
<small class="d-block tx-overflow-e tx-uppercase tx-11 tx-spacing-1 tx-color-03 tx-medium mg-t-10">Akgünler Traktör Servisi</small>