-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathayarlar-kullanici-yönetimi.html
785 lines (782 loc) · 58.3 KB
/
ayarlar-kullanici-yönetimi.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
<!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 href="assets/css/yschat.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>
<style>
.dropdown .avatar img {
margin-top: 4px;
width: 70%;
height: 70%;
object-fit: cover;
}
.container-fluid .d-flex .dropdown-toggle::after {
position: absolute;
right: 8px;
top: 16px;
}
</style>
</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">Servisler</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">
<strong>Socrates Itumay</strong>
<p>nam libero tempore cum so...</p>
<span>Mar 15 12:32pm</span>
</div>
</div>
</a>
<div class="dropdown-footer">
<a>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>Congratulate <strong>Socrates Itumay</strong> for work anniversaries </p>
<span>Mar 15 12:32pm</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="#">İstaç İstanbul Çevre Yönetimi</a>
</li>
<li>
<a href="#">Nsc Bilişim Hizmetleri Ticaret A.Ş.</a>
</li>
<li>
<a href="#">Abp Gıda Ölç. Kont. Sis. İth. Paz.</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="#">Karel Elektronik San. ve Tic. A.Ş</a>
</li>
<li>
<a href="#">Bdh Bilişim Destek Hizmetleri San. Tic. A.Ş.</a>
</li>
</ul>
</div>
</div>
</header>
<div id="sidebarMenu" class="sidebar sidebar-fixed bg-white d-xl-block d-lg-block d-md-none d-sm-none">
<div class="sidebar-header">
<a href="" id="mainMenuOpen">
<i data-feather="menu"></i>
</a>
<h5>Components</h5>
<a href="" id="sidebarMenuClose">
<i data-feather="x"></i>
</a>
</div>
<div class="sidebar-body pd-x-15 pd-y-20">
<label class="tx-uppercase tx-11 tx-medium tx-spacing-2 tx-color-03 mg-t-10 mg-b-20 mg-l-15">MODÜLLER</label>
<div class="ritmalist1">
<div class="media align-items-center tx-secondary bg-primary-light rounded pd-0-f">
<div class="avatar avatar-sm mg-l-5">
<span class="avatar-initial bg-transparent text-primary lh-0">
<i class="far fa-cog tx-16"></i>
</span>
</div>
<div class="media-body mg-l-5">
<div class="d-flex justify-content-between align-items-center">
<a href="ayarlar-genel.html" class="tx-primary tx-14 tx-semibold">Genel</a>
</div>
</div>
</div>
<div class="media align-items-center tx-secondary bg-white rounded pd-0-f">
<div class="avatar avatar-sm mg-l-5">
<span class="avatar-initial bg-transparent text-secondary lh-0">
<i class="far fa-users tx-16"></i>
</span>
</div>
<div class="media-body mg-l-5">
<div class="d-flex justify-content-between align-items-center">
<a href="ayarlar-kullanici-yönetimi.html" class="tx-secondary tx-14">Kullanıcılar</a>
</div>
</div>
</div>
<div class="media align-items-center tx-secondary bg-white rounded pd-0-f">
<div class="avatar avatar-sm mg-l-5">
<span class="avatar-initial bg-transparent text-secondary lh-0">
<i class="far fa-address-card tx-16"></i>
</span>
</div>
<div class="media-body mg-l-5">
<div class="d-flex justify-content-between align-items-center">
<a href="ayarlar-profiller.html" class="tx-secondary tx-14">Kontaklar</a>
</div>
</div>
</div>
<div class="media align-items-center tx-secondary bg-white rounded pd-0-f">
<div class="avatar avatar-sm mg-l-5">
<span class="avatar-initial bg-transparent text-secondary lh-0">
<i class="far fa-bomb tx-16"></i>
</span>
</div>
<div class="media-body mg-l-5">
<div class="d-flex justify-content-between align-items-center">
<a href="#" class="tx-secondary tx-14">Fırsat</a>
</div>
</div>
</div>
<div class="media align-items-center tx-secondary bg-white rounded pd-0-f">
<div class="avatar avatar-sm mg-l-5">
<span class="avatar-initial bg-transparent text-secondary lh-0">
<i class="far fa-shopping-cart tx-16"></i>
</span>
</div>
<div class="media-body mg-l-5">
<div class="d-flex justify-content-between align-items-center">
<a href="ayarlar-teklifler.html" class="tx-secondary tx-14">Teklif</a>
</div>
</div>
</div>
<div class="media align-items-center tx-secondary bg-white rounded pd-0-f">
<div class="avatar avatar-sm mg-l-5">
<span class="avatar-initial bg-transparent text-secondary lh-0">
<i class="far fa-shopping-basket tx-16"></i>
</span>
</div>
<div class="media-body mg-l-5">
<div class="d-flex justify-content-between align-items-center">
<a href="#" class="tx-secondary tx-14">Sipariş</a>
</div>
</div>
</div>
<div class="media align-items-center tx-secondary bg-white rounded pd-0-f">
<div class="avatar avatar-sm mg-l-5">
<span class="avatar-initial bg-transparent text-secondary lh-0">
<i class="far fa-chart-line tx-16"></i>
</span>
</div>
<div class="media-body mg-l-5">
<div class="d-flex justify-content-between align-items-center">
<a href="#" class="tx-secondary tx-14">Satış</a>
</div>
</div>
</div>
<div class="media align-items-center tx-secondary bg-white rounded pd-0-f">
<div class="avatar avatar-sm mg-l-5">
<span class="avatar-initial bg-transparent text-secondary lh-0">
<i class="far fa-comments-alt tx-16"></i>
</span>
</div>
<div class="media-body mg-l-5">
<div class="d-flex justify-content-between align-items-center">
<a href="#" class="tx-secondary tx-14">Görüşmeler</a>
</div>
</div>
</div>
<div class="media align-items-center tx-secondary bg-white rounded pd-0-f">
<div class="avatar avatar-sm mg-l-5">
<span class="avatar-initial bg-transparent text-secondary lh-0">
<i class="far fa-ticket tx-16"></i>
</span>
</div>
<div class="media-body mg-l-5">
<div class="d-flex justify-content-between align-items-center">
<a href="#" class="tx-secondary tx-14">Ticket</a>
</div>
</div>
</div>
<div class="media align-items-center tx-secondary bg-white rounded pd-0-f">
<div class="avatar avatar-sm mg-l-5">
<span class="avatar-initial bg-transparent text-secondary lh-0">
<i class="far fa-hand-holding-box tx-16"></i>
</span>
</div>
<div class="media-body mg-l-5">
<div class="d-flex justify-content-between align-items-center">
<a href="ayarlar-urunler.html" class="tx-secondary tx-14">Ürünler</a>
</div>
</div>
</div>
<div class="media align-items-center tx-secondary bg-white rounded pd-0-f">
<div class="avatar avatar-sm mg-l-5">
<span class="avatar-initial bg-transparent text-secondary lh-0">
<i class="far fa-boxes tx-16"></i>
</span>
</div>
<div class="media-body mg-l-5">
<div class="d-flex justify-content-between align-items-center">
<a href="ayarlar-stok.html" class="tx-secondary tx-14">Stok</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="content content-fixed pd-20 mg-lg-l-240 d-xl-block d-lg-block d-md-none d-sm-none">
<div class="container max-wd-800">
<ol class="breadcrumb bg-transparent pd-x-0 mg-b-0">
<li class="breadcrumb-item active">
<a href="ayarlar.html">Ayarlar</a>
</li>
</ol>
<h2 class="mg-b-30">Kullanıcılar</h2>
<div class="card mg-b-30">
<div class="card-body pd-0">
<div class="container-fluid pd-20">
<div class="d-flex align-items-center">
<div class="wd-75p">
<h6 class="tx-bold">Departmanlar
</h6>
<p class="wd-90p tx-secondary tx-12 mg-b-0">Firmanızın organizasyon yapısını buradan oluşturabilirsiniz.</p>
</div>
<div class="wd-25p tx-right">
<a href="ayarlar-genel-orgbirimleri.html" data-tooltip title="Düzenle" class="btn btn-xs btn-icon btn-light lh-0">
<i class="far fa-arrow-right mg-r-6"></i>
</a>
</div>
</div>
</div>
<div class="container-fluid pd-20 bd-t">
<div class="d-flex align-items-center">
<div class="wd-75p">
<h6 class="tx-bold">Kullanıcı Rolleri</h6>
<p class="wd-90p tx-secondary tx-12 mg-b-0">Tanımlı Rolleri hesap türünüze göre düzenleyebilirsiniz.</p>
</div>
<div class="wd-25p tx-right">
<a href="ayarlar-genel-roller.html" data-tooltip="" title="" class="btn btn-xs btn-icon btn-light lh-0" data-original-title="Düzenle">
<svg class="svg-inline--fa fa-arrow-right fa-w-14 mg-r-6" aria-hidden="true" focusable="false" data-prefix="far" data-icon="arrow-right" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" data-fa-i2svg=""><path fill="currentColor" d="M218.101 38.101L198.302 57.9c-4.686 4.686-4.686 12.284 0 16.971L353.432 230H12c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h341.432l-155.13 155.13c-4.686 4.686-4.686 12.284 0 16.971l19.799 19.799c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L235.071 38.101c-4.686-4.687-12.284-4.687-16.97 0z"></path></svg><!-- <i class="far fa-arrow-right mg-r-6"></i> -->
</a>
</div>
</div>
</div>
<div class="container-fluid pd-20 bd-t">
<div class="d-flex align-items-center">
<div class="wd-75p">
<h6 class="tx-bold">Kullanıcılar</h6>
<p class="wd-90p tx-secondary tx-12 mg-b-0">Sistem kullanıcılarını buradan oluşturabilirsiniz..</p>
</div>
<div class="wd-25p tx-right">
<a href="ayarlar-genel-yetkilendirme-detay.html" data-tooltip title="Düzenle" class="btn btn-xs btn-icon btn-light lh-0">
<i class="far fa-arrow-right mg-r-6"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modals -->
<div id="modal_ritmafirma" class="modal fade effect-scale" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content tx-14">
<div class="modal-header bg-ui-01 pd-x-30 pd-y-15">
<a href="" role="button" class="close pos-absolute tx-18 t-15 r-30" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</a>
<div class="media align-items-center">
<span class="tx-34 tx-color-03 d-none d-sm-block">
<i class="far fa-building"></i>
</span>
<div class="media-body mg-sm-l-20">
<h4 class="tx-16 mg-b-2">Bölge Müd. & Bayiler</h4>
<p class="tx-13 tx-color-03 mg-b-0">Seçim yaparak sadece seçili kayıtlara ulaşabilirsiniz.</p>
</div>
</div>
</div>
<div class="d-flex w-100 ht-50 bd-b pd-x-30 pd-l-50 align-items-center pos-relative">
<i data-feather="search" class="pos-absolute wd-20 ht-20 l-30"></i>
<input type="text" class="form-control tx-14 bd-0 shadow-none" placeholder="Kelime arayabilirsiniz">
<select class="custom-select custom-select-sm wd-100">
<option value="1">Türler</option>
<option value="1">Bölge Müd.</option>
<option value="1">Bayi</option>
</select>
<select class="custom-select custom-select-sm wd-md-auto mg-l-6">
<option value="1">Bölgeler</option>
<option value="1">İstanbul</option>
<option value="1">Ankara</option>
<option value="1">Kahramanmaraş</option>
</select>
</div>
<div class="modal-body tx-14 pd-0 pos-relative">
<div class="pd-30">
<div class="table-responsive bd rounded">
<table class="table table-hover table-ritma1 mg-b-0 bd-b">
<thead class="table-borderless bg-gray-200">
<tr>
<th class="wd-20p">Tür</th>
<th class="wd-30p">Bölge</th>
<th>Firma</th>
<th class="wd-1 tx-center">Seç</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tx-nowrap">Bölge Müd.</td>
<td class="tx-nowrap">Ankara</td>
<td class="tx-color-03">Merkez Ltd. Şti.</td>
<td class="tx-center">
<button class="btn btn-sm btn-outline-secondary pd-y-5 pd-x-10" data-tooltip title="Seç">
<i data-feather="check" class="wd-20 ht-20 tx-24"></i>
</button>
</td>
</tr>
<tr>
<td class="tx-nowrap">Bayi</td>
<td class="tx-nowrap">Ankara / Nevşehir</td>
<td class="tx-color-03">Ali Veli Ltd. Şti.</td>
<td class="tx-center">
<button class="btn btn-sm btn-outline-secondary pd-y-5 pd-x-10" data-tooltip title="Seç">
<i data-feather="check" class="wd-20 ht-20 tx-24"></i>
</button>
</td>
</tr>
<tr>
<td class="tx-nowrap">Bayi</td>
<td class="tx-nowrap">Ankara / Çorum</td>
<td class="tx-color-03">Özgür Traktör Ltd. Şti.</td>
<td class="tx-center">
<button class="btn btn-sm btn-success pd-y-5 pd-x-10" data-tooltip title="Seç">
<i data-feather="check" class="wd-20 ht-20 tx-24"></i>
</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="modal-footer pd-x-30">
<button type="button" class="btn btn-sm btn-outline-secondary" data-dismiss="modal">Kapat</button>
<button type="button" class="btn btn-sm btn-primary">
<i class="far fa-plus valign-middle mg-r-6"></i>Seç </button>
</div>
</div>
</div>
</div>
<script src="assets/js/jquery/jquery.min.js"></script>
<script src="assets/js/jquery/jquery-ui.min.js"></script>
<script src="assets/js/bootstrap/bootstrap.bundle.min.js"></script>
<script src="assets/js/feather-icons/feather.min.js"></script>
<script src="assets/js/perfect-scrollbar/perfect-scrollbar.min.js"></script>
<script src="assets/js/prismjs/prism.js"></script>
<script src="assets/js/quill/quill.core.js"></script>
<script src="assets/js/quill/quill.min.js"></script>
<script src="assets/js/select2/select2.min.js"></script>
<script src="assets/js/select2/select2.addons.js"></script>
<script src="assets/js/select2/i18n/tr.js"></script>
<script src="assets/js/chart.js/Chart.bundle.min.js"></script>
<script src="assets/js/dashforge.js"></script>
<script src="assets/js-customs/ortak.js"></script>
<script src="assets/js-customs/ayarlar-profiller.js"></script>
<script>
$(document).ready(function() {
$(".dropdown-item").click(function() {
var checked = $(this).parents(".dropdown").find("button").html();
var clicked = $(this).html();
console.log()
$(this).parents(".dropdown").find("button").html(clicked);
$(this).html(checked);
});
function format(item, state) {
if (!item.id) {
return item.text;
}
var countryUrl = "https://hatscripts.github.io/circle-flags/flags/";
var stateUrl = "https://oxguy3.github.io/flags/svg/us/";
var url = state ? stateUrl : countryUrl;
var img = $(" < img > ", {
class: "img-flag", width: 26, src: url + item.element.value.toLowerCase() + ".svg"
});
var span = $(" < span > ", {
text: " " + item.text
}); span.prepend(img);
return span;
}
$(document).ready(function() {
$("#countries").select2({
dropdownParent: $('body'),
minimumResultsForSearch: -1,
templateResult: function(item) {
return format(item, false);
}
});
});
$('.select2').select2({
minimumResultsForSearch: -1,
dropdownParent: $('body')
});
});
</script>
</body>
</html>