-
Notifications
You must be signed in to change notification settings - Fork 0
/
clsDatenbank.vb
2647 lines (2199 loc) · 124 KB
/
clsDatenbank.vb
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
Imports System.Data
Imports System.Data.SqlClient
Public Class clsDatenbank
Public strConnectionString As String
Public iKID As Integer = -1
Public strConnectionString_eazybusiness As String = ""
'##########################################################
'# >> Verbindung aufbauen + Connection String
'##########################################################
Public Function getDBConnect(ByVal strConnection As String, Optional ByVal bEazybusiness As Boolean = False) As Boolean
If strConnection.Length = 0 Then
strConnection = "server=" & My.Settings.db_server.Item(My.Settings.mandant_position) & ";uid=" & My.Settings.db_username.Item(My.Settings.mandant_position) & ";pwd=" & My.Settings.db_passwort.Item(My.Settings.mandant_position) & ";database=" & My.Settings.db_datenbankname.Item(My.Settings.mandant_position) & ";"
End If
Dim sqlConn As New SqlConnection(strConnection)
Try
If strConnection.IndexOf("eazybusiness") > 0 Then
bEazybusiness = True
strConnectionString = strConnection
End If
sqlConn.Open()
'If bEazybusiness = False And strConnection.IndexOf("eazybusiness") < 0 Then
If bEazybusiness = False Then
strConnectionString = strConnection
Else
strConnectionString_eazybusiness = strConnection
'strConnectionString = strConnection
End If
sqlConn.Close()
Return True
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler bei Verbindung getDBConnect()", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return False
End Try
End Function
'####################################################################
'# >> Kundengruppe ID
'####################################################################
Public Function getJTLLogin(ByVal strUsername As String, ByVal strPasswort As String) As Boolean
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim iAnzahl As Integer = -1
Dim sqlComm As New SqlCommand("SELECT * FROM tbenutzer WHERE cLogin='" & strUsername & "' AND cPasswort='" & strPasswort & "'", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
My.Settings.login_userid.Item(My.Settings.mandant_position) = r("kBenutzer").ToString
Return True
End While
sqlConn.Close()
Return False
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return "-1"
End Try
End Function
'##########################################################
'# >> Artikelliste holen
'##########################################################
Public Function getArtikelListe_alle(ByVal lvwData As ListView, ByVal img As ImageList) As Boolean
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
img.Images.Clear()
lvwData.BeginUpdate()
Dim sqlComm As New SqlCommand("SELECT * FROM tartikel JOIN tArtikelBeschreibung ON tartikel.kArtikel = tArtikelBeschreibung.kArtikel WHERE tArtikelBeschreibung.kSprache=1 ORDER BY tArtikelBeschreibung.cName ASC", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
Dim lvwItem As New ListViewItem
''# Dynamisch die Bilder laden
'Try
' Application.DoEvents()
' If IO.File.Exists(Application.StartupPath & "\bilderexport\" & r("cArtNr").ToString & ".jpg") = True Then
' img.Images.Add(r("cArtNr").ToString, Bitmap.FromFile(Application.StartupPath & "\bilderexport\" & r("cArtNr").ToString & ".jpg"))
' lvwItem.ImageKey = r("cArtNr").ToString
' Else
' Dim sqlConn2 As New SqlConnection(strConnectionString)
' sqlConn2.Open()
' Dim sqlComm2 As New SqlCommand("SELECT * FROM tArtikelBild WHERE kArtikel=" & r("kArtikel") & " AND nNr=1", sqlConn2)
' Dim r2 As SqlDataReader = sqlComm2.ExecuteReader()
' While r2.Read()
' Dim strData() As Byte = r2("pict")
' My.Computer.FileSystem.WriteAllBytes(Application.StartupPath & "\bilderexport\" & r("cArtNr") & ".jpg", strData, False)
' End While
' sqlConn2.Close()
' img.Images.Add(r("cArtNr").ToString, Bitmap.FromFile(Application.StartupPath & "\bilderexport\" & r("cArtNr").ToString & ".jpg"))
' lvwItem.ImageKey = r("cArtNr").ToString
' End If
'Catch ex As Exception
' lvwItem.Text = "--"
'End Try
lvwItem.UseItemStyleForSubItems = False
lvwItem.SubItems.Add(r("cArtNr").ToString) ' Artikelnummer
lvwItem.SubItems.Add(r("cName").ToString) ' Name
lvwItem.SubItems.Add(CDbl(r("fVKNetto").ToString).ToString("C")) ' Verkauf Nett
'BURTTO
'If IsNumeric(r("fVKBrutto").ToString) Then
' lvwItem.SubItems.Add(CDbl(r("fVKBrutto").ToString).ToString("C")) ' Verkauf Brutto
'Else
Dim dblSteuersatz As Double = getSteuersatz(r("kSteuerklasse").ToString)
'# (10 / 100) * dblSteuersatz
Dim dblVerkaufBrutto As Double = ((Convert.ToDouble(r("fVKNetto").ToString) / 100) * dblSteuersatz) + Convert.ToDouble(r("fVKNetto").ToString)
lvwItem.SubItems.Add(dblVerkaufBrutto.ToString("C")) ' Verkauf Brutto
'End If
lvwItem.SubItems.Add(getLagerbestand(r("kArtikel").ToString)) '
lvwItem.SubItems.Add(r("fEKNetto").ToString)
Try
lvwItem.SubItems.Add(CDbl(r("fEKNetto").ToString) * CDbl(r("fMwSt").ToString))
Catch ex As Exception
lvwItem.SubItems.Add("0")
End Try
lvwItem.SubItems.Add(r("fGewicht").ToString)
'# MWST
lvwItem.SubItems.Add(dblSteuersatz)
lvwData.Items.Add(lvwItem)
lvwData.Items(lvwData.Items.Count - 1).SubItems(3).ForeColor = Color.Blue
lvwData.Items(lvwData.Items.Count - 1).SubItems(4).ForeColor = Color.Green
End While
sqlConn.Close()
lvwData.EndUpdate()
Return True
End Function
'##########################################################
'# >> Alle Kunden holen
'##########################################################
Public Function getKunden_alle(ByVal lvwData As ListView) As Boolean
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
lvwData.Items.Clear()
Dim sqlComm As New SqlCommand("SELECT * FROM tkunde ORDER BY cName", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
'# Kleines Bild hinzufügen
Dim imgList As New ImageList
imgList.ImageSize = New Size(1, 60)
imgList.Images.Add("smallimage", Bitmap.FromFile(Application.StartupPath & "\grafiken\row-height.png"))
lvwData.SmallImageList = imgList
While r.Read()
Dim lvwItem As New ListViewItem
lvwItem.Text = r("cKundenNr").ToString
lvwItem.SubItems.Add(r("cVorname").ToString)
lvwItem.SubItems.Add(r("cName").ToString)
lvwItem.SubItems.Add(r("cOrt").ToString)
lvwItem.SubItems.Add(r("cStrasse").ToString)
lvwItem.SubItems.Add(r("cPLZ").ToString)
lvwItem.SubItems.Add(r("cLand").ToString)
lvwItem.SubItems.Add(r("cFirma").ToString)
lvwItem.SubItems.Add(r("cTel").ToString)
lvwItem.SubItems.Add(r("cEmail").ToString)
lvwItem.SubItems.Add("True")
lvwItem.SubItems.Add(r("kKunde").ToString)
lvwItem.SubItems.Add(r("kKunde").ToString)
lvwData.Items.Add(lvwItem)
End While
Return True
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler X1", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
Return False
End Try
End Function
'##########################################################
'# >> Artikel suchen
'##########################################################
Public Function getArtikelListe_suchen(ByVal strSuche As String, ByVal lvwData As ListView, ByVal img As ImageList) As Boolean
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
img.Images.Clear()
'####################################
'# Anzahl der Kategorie bestimmen
'####################################
Dim strQueryAnzahl As String = "SELECT count(*) anzahl FROM tartikel JOIN tArtikelBeschreibung ON tartikel.kArtikel = tArtikelBeschreibung.kArtikel WHERE (tArtikelBeschreibung.cName LIKE '%" & strSuche & "%' OR tartikel.cArtNr LIKE '%" & strSuche & "%') AND tArtikelBeschreibung.kSprache=1"
Dim sqlCommCount As New SqlCommand(strQueryAnzahl, sqlConn)
Dim readerCount As SqlDataReader = sqlCommCount.ExecuteReader()
While readerCount.Read()
If Convert.ToInt16(readerCount("anzahl")) > 300 Then
If MessageBox.Show("Alle Artikel " & readerCount("anzahl") & " anzuzeigen dauert sehr lange, möchten Sie fortfahren", "Große Anzahl", MessageBoxButtons.YesNo, MessageBoxIcon.Question) = DialogResult.No Then
Return True
Exit Function
End If
End If
End While
readerCount.Close()
Dim strQueryData As String = "SELECT * FROM tartikel JOIN tArtikelBeschreibung ON tartikel.kArtikel = tArtikelBeschreibung.kArtikel WHERE (tArtikelBeschreibung.cName LIKE '%" & strSuche & "%' OR tartikel.cArtNr LIKE '%" & strSuche & "%') AND tArtikelBeschreibung.kSprache=1 ORDER BY tArtikelBeschreibung.cName ASC"
Dim sqlComm As New SqlCommand(strQueryData, sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
Dim lvwItem As New ListViewItem
'# Dynamisch die Bilder laden
Try
If IO.File.Exists(Application.StartupPath & "\bilderexport\" & r("cArtNr").ToString & ".jpg") = True Then
img.Images.Add(r("cArtNr").ToString, Bitmap.FromFile(Application.StartupPath & "\bilderexport\" & r("cArtNr").ToString & ".jpg"))
lvwItem.ImageKey = r("cArtNr").ToString
Else
Dim sqlConn2 As New SqlConnection(strConnectionString)
sqlConn2.Open()
Dim sqlComm2 As New SqlCommand("SELECT * FROM tArtikelBild WHERE kArtikel=" & r("kArtikel") & " AND nNr=1", sqlConn2)
Dim r2 As SqlDataReader = sqlComm2.ExecuteReader()
While r2.Read()
Dim strData() As Byte = r2("pict")
My.Computer.FileSystem.WriteAllBytes(Application.StartupPath & "\bilderexport\" & r("cArtNr") & ".jpg", strData, False)
End While
sqlConn2.Close()
img.Images.Add(r("cArtNr").ToString, Bitmap.FromFile(Application.StartupPath & "\bilderexport\" & r("cArtNr").ToString & ".jpg"))
lvwItem.ImageKey = r("cArtNr").ToString
End If
Catch ex As Exception
lvwItem.Text = "--"
End Try
lvwItem.UseItemStyleForSubItems = False
lvwItem.SubItems.Add(r("cArtNr").ToString) ' Artikelnummer
lvwItem.SubItems.Add(r("cName").ToString) ' Name
lvwItem.SubItems.Add(CDbl(r("fVKNetto").ToString).ToString("C")) ' Verkauf Nett
'BURTTO
'If IsNumeric(r("fVKBrutto").ToString) Then
' lvwItem.SubItems.Add(CDbl(r("fVKBrutto").ToString).ToString("C")) ' Verkauf Brutto
'Else
Dim dblSteuersatz As Double = getSteuersatz(r("kSteuerklasse").ToString)
'# (10 / 100) * dblSteuersatz
Dim dblVerkaufBrutto As Double = ((Convert.ToDouble(r("fVKNetto").ToString) / 100) * dblSteuersatz) + Convert.ToDouble(r("fVKNetto").ToString)
lvwItem.SubItems.Add(dblVerkaufBrutto.ToString("C")) ' Verkauf Brutto
'End If
lvwItem.SubItems.Add(getLagerbestand(r("kArtikel").ToString)) '
lvwItem.SubItems.Add(r("fEKNetto").ToString)
Try
lvwItem.SubItems.Add(CDbl(r("fEKNetto").ToString) * CDbl(r("fMwSt").ToString))
Catch ex As Exception
lvwItem.SubItems.Add("0")
End Try
lvwItem.SubItems.Add(r("fGewicht").ToString)
'# MWST
lvwItem.SubItems.Add(dblSteuersatz)
lvwData.Items.Add(lvwItem)
lvwData.Items(lvwData.Items.Count - 1).SubItems(3).ForeColor = Color.Blue
lvwData.Items(lvwData.Items.Count - 1).SubItems(4).ForeColor = Color.Green
End While
sqlConn.Close()
Return True
End Function
Public Function getSteuersatz(strSteuerklasse As Integer) As Double
Try
Dim sqlConn As New SqlConnection(strConnectionString)
Dim strQueryData As String = "SELECT * FROM tSteuerschluessel JOIN tSteuersatz ON tSteuerschluessel.kSteuerschluessel = tSteuersatz.kSteuerklasse WHERE tSteuersatz.kSteuerzone = 1 AND tSteuersatz.kSteuerklasse='" & strSteuerklasse & "'"
sqlConn.Open()
Dim sqlComm As New SqlCommand(strQueryData, sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
r.Read()
Dim dbl As Double = Convert.ToDouble(r("fSteuersatz").ToString)
sqlConn.Close()
Return dbl
Catch ex As Exception
' MessageBox(ex.Message, "getSteuersatz")
End Try
End Function
'###################################################################
'# >> getkArtikelIDbySKU
'# Ermittelt die kArtikel ID anhand der SKU
'###################################################################
Public Function getkArtikelIDbySKU(strCArtNr As String) As String
Try
Dim strkArtikelID As String = ""
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim sqlComm As New SqlCommand("SELECT * FROM tArtikel WHERE cArtNr= '" & strCArtNr & "'", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
strkArtikelID = r("kArtikel").ToString()
End While
Return strkArtikelID
Catch ex As Exception
MessageBox.Show("Fehler beim abrufen des der absoluten ArtikelID", "getkArtikelIDbySKU", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return "-1"
End Try
End Function
'###################################################################
'# >> getkArtikelIDbySKU
'# Ermittelt die kArtikel ID anhand der SKU
'###################################################################
Public Function getkArtikelMHDOptionbySKU(strCArtNr As String) As String
Try
Dim strkArtikelID As String = ""
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim sqlComm As New SqlCommand("SELECT * FROM tArtikel WHERE cArtNr= '" & strCArtNr & "'", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
strkArtikelID = r("nMHD").ToString()
End While
Return strkArtikelID
Catch ex As Exception
MessageBox.Show("Fehler beim abrufen des der absoluten ArtikelID", "getkArtikelIDbySKU", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return "-1"
End Try
End Function
'#############################################################
'# >> Lagerbestand abrufen
'#############################################################
Public Function getLagerbestand(strArtikelId As String) As Double
Try
Dim dblLagerbestand As Double = 0
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim sqlComm As New SqlCommand("SELECT * FROM tlagerbestand WHERE kArtikel= '" & strArtikelId & "'", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
dblLagerbestand = r("fVerfuegbar").ToString()
End While
Return dblLagerbestand
Catch ex As Exception
MessageBox.Show("Fehler beim abrufen des Lagerbestands", "getLagerbestand", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return -1
End Try
End Function
'##########################################################
'# >> Kunde suchen
'##########################################################
Public Function getKundenListe_suchen(ByVal strSuche As String, ByVal lvwData As ListView) As Boolean
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
lvwData.Items.Clear()
Dim sqlComm As New SqlCommand("SELECT * FROM tkunde WHERE cName LIKE '%" & strSuche & "%' OR cKundenNr LIKE '%" & strSuche & "%' OR cVorname LIKE '%" & strSuche & "%' OR cOrt LIKE '%" & strSuche & "%' OR cPLZ LIKE '%" & strSuche & "%' OR cStrasse LIKE '%" & strSuche & "%' OR cFirma LIKE '%" & strSuche & "%' ORDER BY cName ASC", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
'# Kleines Bild hinzufügen
Dim imgList As New ImageList
imgList.ImageSize = New Size(1, 60)
imgList.Images.Add("smallimage", Bitmap.FromFile(Application.StartupPath & "\grafiken\row-height.png"))
lvwData.SmallImageList = imgList
While r.Read()
Dim lvwItem As New ListViewItem
' lvwItem.ImageKey(3).ToString()
lvwItem.ImageKey = "smallimage"
lvwItem.Text = r("cKundenNr").ToString
lvwItem.SubItems.Add(r("cVorname").ToString)
lvwItem.SubItems.Add(r("cName").ToString)
lvwItem.SubItems.Add(r("cOrt").ToString)
lvwItem.SubItems.Add(r("cStrasse").ToString)
lvwItem.SubItems.Add(r("cPLZ").ToString)
lvwItem.SubItems.Add(r("cLand").ToString)
lvwItem.SubItems.Add(r("cFirma").ToString)
lvwItem.SubItems.Add(r("cTel").ToString)
lvwItem.SubItems.Add(r("cEmail").ToString)
lvwItem.SubItems.Add("True")
lvwItem.SubItems.Add(r("kKunde").ToString)
lvwItem.SubItems.Add(r("kKunde").ToString)
lvwData.Items.Add(lvwItem)
End While
sqlConn.Close()
Return True
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return False
End Try
End Function
'##########################################################
'# >> Kategorie abrufen
'##########################################################
Public Function getKategorie(ByVal iCatID As Integer, ByVal lvwKategorie As ListView, Optional ByVal iSubLevel As Integer = -1) As Boolean
Try
Dim strAbstand As String = ""
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim sqlComm As New SqlCommand("SELECT * FROM tkategorie JOIN tKategorieSprache ON tkategorie.kKategorie = tKategorieSprache.kKategorie WHERE tkategorie.kOberKategorie = " & iCatID, sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
'# Abstand berechnen
If iSubLevel > 0 Then
For iCount As Integer = 0 To iSubLevel
strAbstand &= " "
Next
End If
While r.Read()
Dim lvwItem As New ListViewItem
lvwItem.Text = r("kKategorie").ToString
lvwItem.SubItems.Add(strAbstand & r("cName").ToString)
lvwKategorie.Items.Add(lvwItem)
'# Alle Unterkategorien anzeigen
If iSubLevel >= 0 Then
Call getKategorie(r("kKategorie").ToString, lvwKategorie, iSubLevel + 1) ' Rekursion starten
End If
End While
sqlConn.Close()
Return True
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return False
End Try
End Function
'##########################################################
'# >> Kategorie Oberkategorie abrufen
'##########################################################
Public Function getKategorieOberKategorie(ByVal iCatID As Integer, ByVal iPos As Integer, Optional ByVal bSubCategoriy As Boolean = False) As String()
Try
Dim iInternPos As Integer = 0
Dim strOutput(1) As String
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim sqlComm As New SqlCommand("SELECT * FROM tkategorie JOIN tKategorieSprache ON tkategorie.kKategorie = tKategorieSprache.kKategorie WHERE kOberKategorie='" & iCatID & "' AND tKategorieSprache.kSprache=1 ORDER BY tkategorie.nSort ASC, tKategorieSprache.cName ASC ", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
If iPos = iInternPos Then
strOutput(0) = r("cName").ToString
strOutput(1) = r("kKategorie").ToString
sqlConn.Close()
Return strOutput
Exit Function
End If
iInternPos += 1
End While
sqlConn.Close()
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
End Try
End Function
'##########################################################
'# >> Kategorie Oberkategorie abrufen und zählen
'##########################################################
Public Function getKategorieOberKategorie_count(ByVal iCatID As Integer) As Integer
Try
Dim sqlConn As New SqlConnection(strConnectionString)
Dim iAnzahl As Integer = 0
sqlConn.Open()
Dim sqlComm As New SqlCommand("SELECT count(*) as anzahl FROM tkategorie WHERE kOberKategorie='" & iCatID & "'", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
iAnzahl = r("anzahl").ToString
sqlConn.Close()
Return iAnzahl
Exit Function
End While
sqlConn.Close()
Return -1
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return -1
End Try
End Function
'##########################################################
'# >> Artikel aus Kategorie laden
'##########################################################
Public Function getKategorie2Artikel(ByVal iCatID As Integer, ByRef lvwArtikel As ListView, ByVal img As ImageList) As Boolean
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
lvwArtikel.Items.Clear()
img.Images.Clear()
lvwArtikel.BeginUpdate()
frmJTLRechnung.msgProgress.Visible = True
'####################################
'# Anzahl der Kategorie bestimmen
'####################################
Dim strQuery As String = "SELECT count(*) as anzahl FROM tkategorieartikel JOIN tartikel ON tkategorieartikel.kArtikel = tartikel.kArtikel JOIN tArtikelBeschreibung ON tartikel.kArtikel = tArtikelBeschreibung.kArtikel WHERE tkategorieartikel.kKategorie='" & iCatID & "' AND tArtikelBeschreibung.kSprache=1"
Dim sqlCommCount As New SqlCommand(strQuery, sqlConn)
Dim readerCount As SqlDataReader = sqlCommCount.ExecuteReader()
frmJTLRechnung.msgProgress.Value = 0
While readerCount.Read()
frmJTLRechnung.msgProgress.Maximum = Convert.ToInt16(readerCount("anzahl"))
If Convert.ToInt16(readerCount("anzahl")) > 300 Then
If MessageBox.Show("Alle Artikel " & readerCount("anzahl") & " anzuzeigen dauert sehr lange, möchten Sie fortfahren", "Große Anzahl", MessageBoxButtons.YesNo, MessageBoxIcon.Question) = DialogResult.No Then
Return True
Exit Function
End If
End If
End While
readerCount.Close()
Dim strQuery2 As String = "SELECT * FROM tkategorieartikel JOIN tartikel ON tkategorieartikel.kArtikel = tartikel.kArtikel JOIN tArtikelBeschreibung ON tartikel.kArtikel = tArtikelBeschreibung.kArtikel WHERE tkategorieartikel.kKategorie='" & iCatID & "' AND tArtikelBeschreibung.kSprache=1 ORDER BY cName ASC"
Dim sqlComm As New SqlCommand(strQuery2, sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
Dim lvwItem As New ListViewItem
'# Dynamisch die Bilder laden
Try
frmJTLRechnung.msgProgress.Value += 1
If IO.File.Exists(Application.StartupPath & "\bilderexport\" & r("cArtNr").ToString & ".jpg") = True Then
img.Images.Add(r("cArtNr").ToString, Bitmap.FromFile(Application.StartupPath & "\bilderexport\" & r("cArtNr").ToString & ".jpg"))
lvwItem.ImageKey = r("cArtNr").ToString
Else
Dim sqlConn2 As New SqlConnection(strConnectionString)
sqlConn2.Open()
'Dim sqlComm2 As New SqlCommand("SELECT * FROM tArtikelBild WHERE kArtikel=" & r("kArtikel") & " AND nNr=1", sqlConn2)
Dim sqlComm2 As New SqlCommand("SELECT * FROM tArtikelbildPlattform JOIN tBild ON tArtikelbildPlattform.kBild = tBild.kBild WHERE kArtikel=" & r("kArtikel"), sqlConn2)
Dim r2 As SqlDataReader = sqlComm2.ExecuteReader()
While r2.Read()
Dim strData() As Byte = r2("bBild")
My.Computer.FileSystem.WriteAllBytes(Application.StartupPath & "\bilderexport\" & r("cArtNr") & ".jpg", strData, False)
End While
sqlConn2.Close()
img.Images.Add(r("cArtNr").ToString, Bitmap.FromFile(Application.StartupPath & "\bilderexport\" & r("cArtNr").ToString & ".jpg"))
lvwItem.ImageKey = r("cArtNr").ToString
sqlConn2.Dispose()
End If
Catch ex As Exception
lvwItem.Text = "--"
MessageBox.Show(ex.ToString)
End Try
lvwItem.UseItemStyleForSubItems = False
lvwItem.SubItems.Add(r("cArtNr").ToString) ' Artikelnummer
lvwItem.SubItems.Add(r("cName").ToString) ' Name
lvwItem.SubItems.Add(CDbl(r("fVKNetto").ToString).ToString("C")) ' Verkauf Nett
'BURTTO
'If IsNumeric(r("fVKBrutto").ToString) Then
' lvwItem.SubItems.Add(CDbl(r("fVKBrutto").ToString).ToString("C")) ' Verkauf Brutto
'Else
Dim dblSteuersatz As Double = getSteuersatz(r("kSteuerklasse").ToString)
'# (10 / 100) * dblSteuersatz
Dim dblVerkaufBrutto As Double = ((Convert.ToDouble(r("fVKNetto").ToString) / 100) * dblSteuersatz) + Convert.ToDouble(r("fVKNetto").ToString)
lvwItem.SubItems.Add(dblVerkaufBrutto.ToString("C")) ' Verkauf Brutto
'End If
lvwItem.SubItems.Add(getLagerbestand(r("kArtikel").ToString)) '
lvwItem.SubItems.Add(r("fEKNetto").ToString)
Try
lvwItem.SubItems.Add(CDbl(r("fEKNetto").ToString) * CDbl(r("fMwSt").ToString))
Catch ex As Exception
lvwItem.SubItems.Add("0")
End Try
lvwItem.SubItems.Add(r("fGewicht").ToString)
'# MWST
lvwItem.SubItems.Add(dblSteuersatz)
lvwArtikel.Items.Add(lvwItem)
lvwArtikel.Items(lvwArtikel.Items.Count - 1).SubItems(3).ForeColor = Color.Blue
lvwArtikel.Items(lvwArtikel.Items.Count - 1).SubItems(4).ForeColor = Color.Green
End While
sqlConn.Close()
lvwArtikel.EndUpdate()
frmJTLRechnung.msgProgress.Visible = False
Return True
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen getKategorie2Artikel", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return False
End Try
End Function
Public Function getArtikel2Picture() As Boolean
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim sqlComm As New SqlCommand("SELECT * FROM tArtikelBild WHERE kArtikel=2 AND nNr=1", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
Dim strData() As Byte = r("pict")
My.Computer.FileSystem.WriteAllBytes(Application.StartupPath & "\bilderexport\test.jpg", strData, False)
End While
sqlConn.Close()
Return True
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return False
End Try
End Function
'####################################################################
'# >> Startnummern
'####################################################################
Public Function getStartNummern(ByVal strBereich As String, strWhere As String) As String
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strData As String = ""
Dim sqlComm As New SqlCommand("SELECT " & strBereich & " FROM tLaufendeNummern " & strWhere, sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
strData = r(strBereich).ToString
End While
sqlConn.Close()
Return strData
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return False
End Try
End Function
'####################################################################
'# >> Laufende Nummer
'####################################################################
Public Function getLftNummer(ByVal strTabelle As String, strWhere As String) As String
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strData As String = ""
Dim sqlComm As New SqlCommand("SELECT nNummer FROM " & strTabelle & " " & strWhere, sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
strData = r("nNummer").ToString
End While
sqlConn.Close()
Return strData
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return False
End Try
End Function
'####################################################################
'# >> Laufende Nummer updaten
'####################################################################
Public Function setLftNummer_update(ByVal strTabelle As String, ByVal strWhere As String, ByVal iNummerNext As Integer) As Integer
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strData As String = ""
Dim iNr As Integer = 0
Dim sqlComm As New SqlCommand("UPDATE " & strTabelle & " SET nNummer=" & iNummerNext & " " & strWhere, sqlConn)
sqlComm.ExecuteNonQuery()
sqlConn.Close()
Return iNr
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return -1
End Try
End Function
'####################################################################
'# >> Kundengruppe
'####################################################################
Public Function getZahlungsarten(ByVal cmb As ComboBox) As Boolean
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strData As String = ""
Dim sqlComm As New SqlCommand("SELECT * FROM tZahlungsart", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
cmb.Items.Add(r("cName").ToString)
End While
cmb.SelectedIndex = 0
sqlConn.Close()
Return True
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return False
End Try
End Function
'####################################################################
'# >> Kundengruppe
'####################################################################
Public Function getKundenGruppe(ByVal cmb As ComboBox) As Boolean
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strData As String = ""
Dim sqlComm As New SqlCommand("SELECT * FROM tKundenGruppe", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
cmb.Items.Add(r("cName").ToString)
End While
cmb.SelectedIndex = 0
sqlConn.Close()
Return True
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return False
End Try
End Function
'####################################################################
'# >> Länderliste
'####################################################################
Public Function getKundenLänderliste(ByVal cmb As ComboBox) As Boolean
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strData As String = ""
Dim sqlComm As New SqlCommand("SELECT * FROM tland ORDER BY cName ASC", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
'If r("cName").ToString.Contains("Deutschland") Then
' MessageBox.Show(cmb.Items.Count)
'End If
cmb.Items.Add(r("cName").ToString)
End While
cmb.SelectedIndex = 0
sqlConn.Close()
Return True
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return False
End Try
End Function
'####################################################################
'# >> LAND ISO
'####################################################################
Public Function getKundenLänderliste_ISO(ByVal strName As String) As String
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strData As String = ""
Dim sqlComm As New SqlCommand("SELECT * FROM tland WHERE cName='" & strName & "' ORDER BY cName ASC", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
strData = r("cISO").ToString
End While
sqlConn.Close()
Return strData
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return "-1"
End Try
End Function
'####################################################################
'# >> Kundengruppe ID
'####################################################################
Public Function getZahlungsArtByName(ByVal strName As String) As String
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strData As String = ""
Dim sqlComm As New SqlCommand("SELECT * FROM tZahlungsart WHERE cName='" & strName & "' ORDER BY cName ASC", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
strData = r("kZahlungsart").ToString
End While
sqlConn.Close()
Return strData
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return "-1"
End Try
End Function
'####################################################################
'# >> Kundengruppe ID
'####################################################################
Public Function getKundenGruppe_id(ByVal strName As String) As String
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strData As String = ""
Dim sqlComm As New SqlCommand("SELECT * FROM tKundenGruppe WHERE cName='" & strName & "' ORDER BY cName ASC", sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
strData = r("kKundenGruppe").ToString
End While
sqlConn.Close()
Return strData
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return "-1"
End Try
End Function
'####################################################################
'# >> Kundengruppe ID
'####################################################################
Public Function getJTLID_MAX(ByVal strTabelle As String, ByVal strSpalte As String) As Integer
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strData As String = ""
Dim iNr As Integer = 0
Dim sqlComm As New SqlCommand("SELECT max(" & strSpalte & ") as max FROM " & strTabelle, sqlConn)
Dim r As SqlDataReader = sqlComm.ExecuteReader()
While r.Read()
strData = r("max").ToString
End While
If strData.Length = 0 Then
strData = 0
End If
iNr = CInt(strData) + 1
sqlConn.Close()
Return iNr
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return -1
End Try
End Function
'####################################################################
'# >> JTL Kunden / Auftragsnummer formatieren und holen
'####################################################################
Public Function getJTLNumber(ByVal strPreFix As String, ByVal strSuffix As String, ByVal strFortlaufendeNummer As String) As String
Try
Dim strData As String = ""
strData = strPreFix & strFortlaufendeNummer & strSuffix
'# Monat mit laufender Null
Dim strMonth As String = Date.Now.Month
If CInt(strMonth) < 10 Then
strMonth = "0" & strMonth
End If
'# Tag mit laufender Null
Dim strTag As String = Date.Now.Day
If CInt(strTag) < 10 Then
strTag = "0" & strTag
End If
strData = strData.Replace("<J>", Date.Now.Year).Replace("<M>", strMonth).Replace("<T>", strTag)
Return strData
Catch ex As Exception
MessageBox.Show(ex.Message, "Fehler beim Abrufen", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return "-1"
End Try
End Function
'####################################################################
'# >> Lieferadresse speichern
'####################################################################
Public Function setKunde_Lieferadresse(ByVal frm As frmKunde_neu, ByVal strJTLKundenNummer As String, ByVal ikKundenID As Integer) As Boolean
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strQuery As String = ""
'# Anrede festlegen
Dim strAnrede As String = ""
If frm.rdbFirma.Checked = True Then
strAnrede = "Firma"
ElseIf frm.rdbFrau.Checked = True Then
strAnrede = "Frau"
ElseIf frm.rdbHerr.Checked = True Then
strAnrede = "Herr"
End If
strQuery = "INSERT INTO tlieferadresse(kLieferAdresse,kKunde,cFirma,cAnrede,cVorname,cName,cStrasse,cPLZ,cOrt,cLand,cTel,cMail,cBundesland,cISO)"
strQuery &= " VALUES("
strQuery &= "'" & getJTLID_MAX("tlieferadresse", "kLieferAdresse") & "',"
strQuery &= "'" & ikKundenID & "',"
strQuery &= "'" & frm.txtFirma.Text & "',"
strQuery &= "'" & strAnrede & "',"
strQuery &= "'" & frm.txtVorname.Text & "',"
strQuery &= "'" & frm.txtNachname.Text & "',"
strQuery &= "'" & frm.txtStraße.Text & "',"
strQuery &= "'" & frm.txtPostleitzahl.Text & "',"
strQuery &= "'" & frm.txtOrt.Text & "',"
strQuery &= "'" & frm.cmbLand.Text & "',"
strQuery &= "'" & frm.txtTelefon.Text & "',"
strQuery &= "'" & frm.txtEmail.Text & "',"
strQuery &= "'" & frm.txtBundesland.Text & "',"
strQuery &= "'" & getKundenLänderliste_ISO(frm.txtLand.Text) & "')"
Dim sqlComm As New SqlCommand(strQuery, sqlConn)
sqlComm.ExecuteNonQuery()
sqlConn.Close()
Return True
Catch ex As Exception
MessageBox.Show("Abbruch beim Lieferadresse speichern" & vbCrLf & ex.Message, "Lieferadresse speichern", MessageBoxButtons.OK, MessageBoxIcon.Error)
Return False
End Try
End Function
'####################################################################
'# >> Buchung speichern
'####################################################################
Public Function setLager_BuchungEingang(ByVal frm As frmLagerverwaltung, strArtikelID As String) As Boolean
Try
Dim sqlConn As New SqlConnection(strConnectionString)
sqlConn.Open()
Dim strQuery As String = ""
strQuery = "INSERT INTO tWarenLagerEingang(kArtikel,kWarenLagerPlatz,kLieferantenBestellungPos,kBenutzer,fAnzahl,fEKEinzel,cLieferscheinNr,cChargenNr,dMHD,dErstellt,dGeliefertAM,cKommentar,kGutschriftPos,kWarenLagerAusgang,kLHM,fAnzahlAktuell,fAnzahlReserviertPickpos,kSessionID,kWarenLagerEingang_Ursprung)"
strQuery &= " VALUES("
strQuery &= "'" & strArtikelID & "',"
strQuery &= "'" & "1" & "',"
strQuery &= "'" & "0" & "',"
strQuery &= "'" & "1" & "',"
strQuery &= "'" & frm.txtLageranzahl.Text & "',"
strQuery &= "'" & "0" & "',"
strQuery &= "'" & "" & "',"
strQuery &= "'" & frm.txtChargenummer.Text & "',"
strQuery &= "@date_mhd,"
strQuery &= "@date_erstellt,"