Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
b4f1eeee84 | |||
2922fe0138 | |||
704facbc6b | |||
404e8a0c27 | |||
ef621fab2d | |||
0938e33fe1 | |||
6b5c283e10 |
@ -82,7 +82,7 @@ namespace Elwig {
|
|||||||
|
|
||||||
Dictionary<string, (string, string, int?, string?, string?, string?, string?, string?)> branches = new();
|
Dictionary<string, (string, string, int?, string?, string?, string?, string?, string?)> branches = new();
|
||||||
using (var ctx = new AppDbContext()) {
|
using (var ctx = new AppDbContext()) {
|
||||||
branches = ctx.Branches.ToDictionary(b => b.Name.ToLower(), b => (b.ZwstId, b.Name, b.PostalDest?.AtPlz?.Plz, b.PostalDest?.AtPlz?.Dest, b.Address, b.PhoneNr, b.FaxNr, b.MobileNr));
|
branches = ctx.Branches.ToDictionary(b => b.Name.ToLower(), b => (b.ZwstId, b.Name, b.PostalDest?.AtPlz?.Plz, b.PostalDest?.AtPlz?.Ort.Name, b.Address, b.PhoneNr, b.FaxNr, b.MobileNr));
|
||||||
try {
|
try {
|
||||||
Client = new(ctx);
|
Client = new(ctx);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
<PreserveCompilationContext>true</PreserveCompilationContext>
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
||||||
<ApplicationIcon>elwig.ico</ApplicationIcon>
|
<ApplicationIcon>elwig.ico</ApplicationIcon>
|
||||||
<Version>0.3.0</Version>
|
<Version>0.3.1</Version>
|
||||||
<SatelliteResourceLanguages>de-AT</SatelliteResourceLanguages>
|
<SatelliteResourceLanguages>de-AT</SatelliteResourceLanguages>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
@ -19,9 +19,9 @@
|
|||||||
<PackageReference Include="Balbarak.WeasyPrint" Version="2.0.2" />
|
<PackageReference Include="Balbarak.WeasyPrint" Version="2.0.2" />
|
||||||
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.5.1" />
|
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.5.1" />
|
||||||
<PackageReference Include="ini-parser" Version="2.5.2" />
|
<PackageReference Include="ini-parser" Version="2.5.2" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Razor.Language" Version="6.0.21" />
|
<PackageReference Include="Microsoft.AspNetCore.Razor.Language" Version="6.0.22" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="7.0.10" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="7.0.11" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.10" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.11" />
|
||||||
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1938.49" />
|
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1938.49" />
|
||||||
<PackageReference Include="RazorLight" Version="2.3.1" />
|
<PackageReference Include="RazorLight" Version="2.3.1" />
|
||||||
<PackageReference Include="ScottPlot.WPF" Version="4.1.67" />
|
<PackageReference Include="ScottPlot.WPF" Version="4.1.67" />
|
||||||
|
@ -70,9 +70,9 @@ namespace Elwig.Helpers {
|
|||||||
for (int i = 0; i < input.Text.Length; i++) {
|
for (int i = 0; i < input.Text.Length; i++) {
|
||||||
char ch = input.Text[i];
|
char ch = input.Text[i];
|
||||||
if (char.IsAsciiDigit(ch)) {
|
if (char.IsAsciiDigit(ch)) {
|
||||||
if (v2 == -1 && v1 < maxLen) {
|
if (v2 == -1 && (maxLen == -1 || v1 < maxLen)) {
|
||||||
text += ch; v1++;
|
text += ch; v1++;
|
||||||
} else if (v2 != -1 && v2 < maxDecimal) {
|
} else if (v2 != -1 && (maxDecimal == -1 || v2 < maxDecimal)) {
|
||||||
text += ch; v2++;
|
text += ch; v2++;
|
||||||
}
|
}
|
||||||
} else if (v2 == 0-1 && ch == ',' || ch == '.') {
|
} else if (v2 == 0-1 && ch == ',' || ch == '.') {
|
||||||
|
@ -462,6 +462,10 @@ namespace Elwig.Windows {
|
|||||||
InputTextChanged((TextBox)sender, Validator.CheckInteger);
|
InputTextChanged((TextBox)sender, Validator.CheckInteger);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected void DecimalInput_TextChanged(object sender, RoutedEventArgs evt) {
|
||||||
|
InputTextChanged((TextBox)sender, Validator.CheckDecimal);
|
||||||
|
}
|
||||||
|
|
||||||
protected void PartialDateInput_TextChanged(object sender, RoutedEventArgs evt) {
|
protected void PartialDateInput_TextChanged(object sender, RoutedEventArgs evt) {
|
||||||
InputTextChanged((TextBox)sender, Validator.CheckPartialDate);
|
InputTextChanged((TextBox)sender, Validator.CheckPartialDate);
|
||||||
}
|
}
|
||||||
|
@ -117,6 +117,7 @@ namespace Elwig.Windows {
|
|||||||
await Context.SaveChangesAsync();
|
await Context.SaveChangesAsync();
|
||||||
|
|
||||||
foreach (var mod in ModifierList.Where(m => !ModifierIds.ContainsKey(m))) {
|
foreach (var mod in ModifierList.Where(m => !ModifierIds.ContainsKey(m))) {
|
||||||
|
if (mod.ModId == null) continue;
|
||||||
await Context.AddAsync(mod);
|
await Context.AddAsync(mod);
|
||||||
}
|
}
|
||||||
await Context.SaveChangesAsync();
|
await Context.SaveChangesAsync();
|
||||||
@ -321,6 +322,7 @@ namespace Elwig.Windows {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void SeasonModifierRelInput_TextChanged(object sender, TextChangedEventArgs evt) {
|
private void SeasonModifierRelInput_TextChanged(object sender, TextChangedEventArgs evt) {
|
||||||
|
// DecimalInput_TextChanged(sender, evt); FIXME '-' is ignored
|
||||||
if ((!IsEditing && !IsCreating) || SeasonModifierList.SelectedItem is not Modifier mod) return;
|
if ((!IsEditing && !IsCreating) || SeasonModifierList.SelectedItem is not Modifier mod) return;
|
||||||
ModifiersChanged = ModifiersChanged || (SeasonModifierRelInput.Text ?? "") != ((SeasonModifierList.SelectedItem as Modifier)?.Rel?.ToString() ?? "");
|
ModifiersChanged = ModifiersChanged || (SeasonModifierRelInput.Text ?? "") != ((SeasonModifierList.SelectedItem as Modifier)?.Rel?.ToString() ?? "");
|
||||||
if (ModifierUpdate) return;
|
if (ModifierUpdate) return;
|
||||||
@ -331,11 +333,13 @@ namespace Elwig.Windows {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void SeasonModifierAbsInput_TextChanged(object sender, TextChangedEventArgs evt) {
|
private void SeasonModifierAbsInput_TextChanged(object sender, TextChangedEventArgs evt) {
|
||||||
if ((!IsEditing && !IsCreating) || SeasonModifierList.SelectedItem is not Modifier mod) return;
|
// DecimalInput_TextChanged(sender, evt); FIXME '-' is ignored
|
||||||
|
if ((!IsEditing && !IsCreating) || SeasonModifierList.SelectedItem is not Modifier mod || SeasonList.SelectedItem is not Season s) return;
|
||||||
ModifiersChanged = ModifiersChanged || (SeasonModifierAbsInput.Text ?? "") != ((SeasonModifierList.SelectedItem as Modifier)?.Abs?.ToString() ?? "");
|
ModifiersChanged = ModifiersChanged || (SeasonModifierAbsInput.Text ?? "") != ((SeasonModifierList.SelectedItem as Modifier)?.Abs?.ToString() ?? "");
|
||||||
if (ModifierUpdate) return;
|
if (ModifierUpdate) return;
|
||||||
mod.Abs = decimal.TryParse(SeasonModifierAbsInput.Text, out var v) ? v : null;
|
// FIXME ValueStr does not work in ModifierList when modifier is newly created
|
||||||
if (mod.Abs != null) SeasonModifierRelInput.Text = "";
|
mod.AbsValue = decimal.TryParse(SeasonModifierAbsInput.Text, out var v) ? Utils.DecToDb(v, s.Precision) : null;
|
||||||
|
if (mod.AbsValue != null) SeasonModifierRelInput.Text = "";
|
||||||
CollectionViewSource.GetDefaultView(ModifierList).Refresh();
|
CollectionViewSource.GetDefaultView(ModifierList).Refresh();
|
||||||
UpdateButtons();
|
UpdateButtons();
|
||||||
}
|
}
|
||||||
|
@ -560,7 +560,7 @@ namespace Elwig.Windows {
|
|||||||
p.DPNr = dpnr;
|
p.DPNr = dpnr;
|
||||||
|
|
||||||
d.DateString = string.Join("-", DateInput.Text.Split(".").Reverse());
|
d.DateString = string.Join("-", DateInput.Text.Split(".").Reverse());
|
||||||
if (IsCreating || InputHasChanged(DateInput)) {
|
if (deliveryNew || InputHasChanged(DateInput)) {
|
||||||
d.LNr = await Context.NextLNr(d.Date);
|
d.LNr = await Context.NextLNr(d.Date);
|
||||||
}
|
}
|
||||||
if (IsCreating) {
|
if (IsCreating) {
|
||||||
|
Reference in New Issue
Block a user