Einstellungen.xaml.cs 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. using System;
  2. using System.Data.Odbc;
  3. using System.IO;
  4. using System.Windows;
  5. using System.Windows.Input;
  6. using GCHR.Mandantenschnittstelle;
  7. using GCHR.Model;
  8. namespace GCHR.View
  9. {
  10. public partial class Einstellungen
  11. {
  12. private GchrConfig _gchrConfig;
  13. public Einstellungen()
  14. {
  15. InitializeComponent();
  16. KonfigurationLaden();
  17. }
  18. private void ButtonClick(object sender, RoutedEventArgs e)
  19. {
  20. Close();
  21. }
  22. private void KonfigurationLaden()
  23. {
  24. if (File.Exists(Constants.ConfigDatei))
  25. {
  26. _gchrConfig = GchrConfig.GetInstance(Constants.ConfigDatei);
  27. }
  28. cbMandant.Text = _gchrConfig.Einstellungen.Mandantenname.ToString();
  29. txtHnr.Text = _gchrConfig.Einstellungen.Haendlernummer;
  30. txtHändlerKontenrahmen.Text = _gchrConfig.Einstellungen.Haendlerkontenrahmen.ToString();
  31. txtHerstellerKontenrahmen.Text = _gchrConfig.Einstellungen.Herstellerkontenrahmen.ToString();
  32. txtHauptmarke.Text = _gchrConfig.Einstellungen.Hauptmarke;
  33. txtHauptbetrieb.Text = _gchrConfig.Einstellungen.Hauptbetrieb;
  34. txtGeschäftsjahr.Text = _gchrConfig.Einstellungen.Geschaeftsjahr;
  35. cbAktiviert.IsChecked = _gchrConfig.Einstellungen.Update.IsActive;
  36. txtUpdateadresse.Text = Constants.Decrypt(_gchrConfig.Einstellungen.Update.Dateipfad);
  37. txtProxyAdresse.Text = Constants.Decrypt(_gchrConfig.Einstellungen.Update.Proxy.Adresse);
  38. txtProxyPort.Text = Constants.Decrypt(_gchrConfig.Einstellungen.Update.Proxy.Port);
  39. txtProxyBenutzer.Text = Constants.Decrypt(_gchrConfig.Einstellungen.Update.Proxy.Benutzer);
  40. txtProxyPasswort.Password = Constants.Decrypt(_gchrConfig.Einstellungen.Update.Proxy.Passwort);
  41. txtProxyDomäne.Text = Constants.Decrypt(_gchrConfig.Einstellungen.Update.Proxy.Domaene);
  42. txtODBCName.Text = _gchrConfig.Einstellungen.Odbc;
  43. txtUser.Text = Constants.Decrypt(_gchrConfig.Einstellungen.OdbcUsername);
  44. txtPwd.Password = Constants.Decrypt(_gchrConfig.Einstellungen.OdbcPassword);
  45. cbTyp.Text = _gchrConfig.Einstellungen.Steuerungsdateien.Typ;
  46. txtPfad.Text = _gchrConfig.Einstellungen.Steuerungsdateien.Pfad;
  47. foreach (var eintrag in _gchrConfig.Einstellungen.DepartmentUebersetzung)
  48. {
  49. lbÜbersetzungen.Items.Add(eintrag.Von + ": " + eintrag.Nach);
  50. }
  51. /*
  52. IEnumerable<XElement> Verrechnungsktos = Einstellungen.Element("Verrechnungskonten").Elements("Konto");
  53. foreach (XElement element in Verrechnungsktos)
  54. {
  55. lbÜbersetzungen2.Items.Add(element.Attribute("von").Value + ": " + element.Attribute("nach").Value);
  56. }
  57. */
  58. }
  59. private void ButtonClick1(object sender, RoutedEventArgs e)
  60. {
  61. _gchrConfig.Einstellungen.Mandantenname = (Mandanten)Enum.Parse(typeof(Mandanten), cbMandant.Text);
  62. _gchrConfig.Einstellungen.Haendlernummer = txtHnr.Text;
  63. _gchrConfig.Einstellungen.Haendlerkontenrahmen = Int32.Parse(txtHändlerKontenrahmen.Text);
  64. _gchrConfig.Einstellungen.Herstellerkontenrahmen = Int32.Parse(txtHerstellerKontenrahmen.Text);
  65. _gchrConfig.Einstellungen.Hauptmarke = txtHauptmarke.Text;
  66. _gchrConfig.Einstellungen.Hauptbetrieb = txtHauptbetrieb.Text;
  67. _gchrConfig.Einstellungen.Geschaeftsjahr = txtGeschäftsjahr.Text;
  68. if (cbAktiviert.IsChecked != null) _gchrConfig.Einstellungen.Update.IsActive = (bool)cbAktiviert.IsChecked;
  69. _gchrConfig.Einstellungen.Update.Dateipfad = Constants.Encrypt(txtUpdateadresse.Text);
  70. _gchrConfig.Einstellungen.Update.Proxy.Adresse = Constants.Encrypt(txtProxyAdresse.Text);
  71. _gchrConfig.Einstellungen.Update.Proxy.Port = Constants.Encrypt(txtProxyPort.Text);
  72. _gchrConfig.Einstellungen.Update.Proxy.Benutzer = Constants.Encrypt(txtProxyBenutzer.Text);
  73. _gchrConfig.Einstellungen.Update.Proxy.Passwort = Constants.Encrypt(txtProxyPasswort.Password);
  74. _gchrConfig.Einstellungen.Update.Proxy.Domaene = Constants.Encrypt(txtProxyDomäne.Text);
  75. _gchrConfig.Einstellungen.Odbc = txtODBCName.Text;
  76. _gchrConfig.Einstellungen.OdbcUsername = Constants.Encrypt(txtUser.Text);
  77. _gchrConfig.Einstellungen.OdbcPassword = Constants.Encrypt(txtPwd.Password);
  78. _gchrConfig.Einstellungen.Steuerungsdateien.Typ = cbTyp.Text;
  79. _gchrConfig.Einstellungen.Steuerungsdateien.Pfad = txtPfad.Text;
  80. _gchrConfig.Einstellungen.DepartmentUebersetzung.Clear();
  81. foreach (var eintrag in lbÜbersetzungen.Items)
  82. {
  83. var split = eintrag.ToString().Split(':');
  84. _gchrConfig.Einstellungen.DepartmentUebersetzung.Add(new UebersetzungXml() { Von = split[0].Trim(), Nach = split[1].Trim() });
  85. }
  86. _gchrConfig.Save();
  87. Close();
  88. }
  89. private void ButtonClick2(object sender, RoutedEventArgs e)
  90. {
  91. lbÜbersetzungen.Items.Add(txtVon.Text + ": " + txtNach.Text);
  92. txtVon.Clear();
  93. txtNach.Clear();
  94. txtVon.Focus();
  95. }
  96. private void TxtVonGotFocus(object sender, RoutedEventArgs e)
  97. {
  98. txtVon.SelectAll();
  99. }
  100. private void TxtNachGotFocus(object sender, RoutedEventArgs e)
  101. {
  102. txtNach.SelectAll();
  103. }
  104. private void TxtVonKeyDown(object sender, KeyEventArgs e)
  105. {
  106. if (e.Key != Key.Return) return;
  107. if (!txtVon.Text.Trim().Equals(""))
  108. txtNach.Focus();
  109. else
  110. {
  111. MessageBox.Show("Das \"Von\"-Feld darf nicht leer sein.", "Hinweis", MessageBoxButton.OK, MessageBoxImage.Information);
  112. }
  113. }
  114. private void TxtNachKeyDown(object sender, KeyEventArgs e)
  115. {
  116. if (e.Key != Key.Return || e.IsRepeat) return;
  117. if (!txtNach.Text.Trim().Equals(""))
  118. if (!txtVon.Text.Trim().Equals(""))
  119. ButtonClick2(sender, e);
  120. else
  121. {
  122. MessageBox.Show("Das \"Von\"-Feld darf nicht leer sein.", "Hinweis", MessageBoxButton.OK, MessageBoxImage.Information);
  123. txtVon.Focus();
  124. }
  125. else
  126. {
  127. MessageBox.Show("Das \"Nach\"-Feld darf nicht leer sein.", "Hinweis", MessageBoxButton.OK, MessageBoxImage.Information);
  128. }
  129. }
  130. private void ButMinusClick(object sender, RoutedEventArgs e)
  131. {
  132. if (lbÜbersetzungen.SelectedIndex > -1)
  133. {
  134. lbÜbersetzungen.Items.RemoveAt(lbÜbersetzungen.SelectedIndex);
  135. }
  136. }
  137. private void ButtonClick3(object sender, RoutedEventArgs e)
  138. {
  139. if (_gchrConfig.Konten != null) _gchrConfig.Konten.Clear();
  140. }
  141. private void TxtVon2KeyDown(object sender, KeyEventArgs e)
  142. {
  143. /*
  144. if (e.Key == Key.Return)
  145. if (!txtVon2.Text.Trim().Equals(""))
  146. txtNach2.Focus();
  147. else
  148. {
  149. MessageBox.Show("Das \"Von\"-Feld darf nicht leer sein.", "Hinweis", MessageBoxButton.OK, MessageBoxImage.Information);
  150. }
  151. */
  152. }
  153. private void TxtNach2KeyDown(object sender, KeyEventArgs e)
  154. {
  155. /*
  156. if (e.Key == Key.Return && !e.IsRepeat)
  157. if (!txtNach2.Text.Trim().Equals(""))
  158. if (!txtVon2.Text.Trim().Equals(""))
  159. butPlus2_Click(sender, e);
  160. else
  161. {
  162. MessageBox.Show("Das \"Von\"-Feld darf nicht leer sein.", "Hinweis", MessageBoxButton.OK, MessageBoxImage.Information);
  163. txtVon.Focus();
  164. }
  165. else
  166. {
  167. MessageBox.Show("Das \"Nach\"-Feld darf nicht leer sein.", "Hinweis", MessageBoxButton.OK, MessageBoxImage.Information);
  168. }
  169. */
  170. }
  171. private void ButPlus2Click(object sender, RoutedEventArgs e)
  172. {
  173. /*
  174. lbÜbersetzungen2.Items.Add(txtVon2.Text + ": " + txtNach2.Text);
  175. txtVon2.Clear();
  176. txtNach2.Clear();
  177. txtVon2.Focus();
  178. */
  179. }
  180. private void ButMinus2Click(object sender, RoutedEventArgs e)
  181. {
  182. /*
  183. if (lbÜbersetzungen2.SelectedIndex > -1)
  184. {
  185. lbÜbersetzungen2.Items.RemoveAt(lbÜbersetzungen2.SelectedIndex);
  186. }
  187. */
  188. }
  189. private void BtnOdbcVerbindungTestenClick(object sender, RoutedEventArgs e)
  190. {
  191. try
  192. {
  193. var con = new OdbcConnection(OdbcConnectionString());
  194. con.Open();
  195. con.Close();
  196. MessageBox.Show("Verbindung erfolgreich.");
  197. }
  198. catch (Exception exc)
  199. {
  200. MessageBox.Show("Verbindung fehlgeschlagen.\nDetails:\n" + exc.Message);
  201. }
  202. }
  203. private string OdbcConnectionString()
  204. {
  205. return (string.Format("DSN={0};UID={1};PWD={2};", txtODBCName.Text, txtUser.Text, txtPwd.Password));
  206. }
  207. }
  208. }