Compare commits
	
		
			83 Commits
		
	
	
		
			v0.3.6
			...
			9f67448b72
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 9f67448b72 | |||
| 193b4688d3 | |||
| 9cc365e779 | |||
| ad9f4d3a9a | |||
| b1dad261d1 | |||
| 18c020e8a6 | |||
| 3b0b84dcea | |||
| 11ea958059 | |||
| 105854c389 | |||
| ba5d888e37 | |||
| 8792404e0d | |||
| d5102c9cd7 | |||
| 25d681a1d8 | |||
| fa9f18da29 | |||
| e8bd81ccc7 | |||
| f26d55af68 | |||
| e46ddb9cdc | |||
| 3cf3ca71d6 | |||
| 1d4ab7b264 | |||
| 841f8bfb84 | |||
| a075189bdd | |||
| e52475a4bf | |||
| 8ce4911317 | |||
| c190ce1474 | |||
| f19de3ae6e | |||
| e56e209506 | |||
| 28fb4f6fa2 | |||
| a832879b73 | |||
| a2f49e1b8b | |||
| 99c3474fb6 | |||
| 9924795888 | |||
| 733ab0d208 | |||
| 6e2ba56a7c | |||
| 2507a2695f | |||
| ddd83bf63d | |||
| 685793f0fb | |||
| f6712704ee | |||
| de500854c4 | |||
| d992b6a206 | |||
| d2b96736bb | |||
| 50b9f4e207 | |||
| 45fc0893b1 | |||
| c4dd56075d | |||
| f1084c716a | |||
| 2f8e4ca812 | |||
| 450f5d8109 | |||
| 62d6707d10 | |||
| 2bcf26cc8d | |||
| daddd069a3 | |||
| 3b3489b492 | |||
| 505ee0ad24 | |||
| 0b79fa192e | |||
| ff2968c989 | |||
| 8c49cc8ef2 | |||
| f0751499ea | |||
| d4dd84394b | |||
| 3b4340b5e8 | |||
| 4db147e582 | |||
| c997acc95d | |||
| f8126c392e | |||
| b6d74d3c07 | |||
| 62bf425313 | |||
| 5657a8f90a | |||
| 56578a0a9d | |||
| e71d9516ec | |||
| 658c10c2a4 | |||
| ff3defe52d | |||
| a489f13d99 | |||
| 20d4bbf7ac | |||
| 604094a603 | |||
| 522fed818f | |||
| 3930534273 | |||
| 4d950b2597 | |||
| badf4ce955 | |||
| 7d8c670ed2 | |||
| 91a3786cd9 | |||
| 73af12a64d | |||
| 0e9bae4ec9 | |||
| 9df8056616 | |||
| 9e9195b9c0 | |||
| 1625f15f92 | |||
| 6a8bd9c932 | |||
| 05da8eefac | 
| @@ -12,6 +12,7 @@ using System.Globalization; | |||||||
| using System.Threading; | using System.Threading; | ||||||
| using System.Windows.Markup; | using System.Windows.Markup; | ||||||
| using System.Reflection; | using System.Reflection; | ||||||
|  | using Elwig.Helpers.Printing; | ||||||
|  |  | ||||||
| namespace Elwig { | namespace Elwig { | ||||||
|     public partial class App : Application { |     public partial class App : Application { | ||||||
| @@ -45,7 +46,7 @@ namespace Elwig { | |||||||
|         public static IList<IScale> Scales { get; private set; } |         public static IList<IScale> Scales { get; private set; } | ||||||
|         public static ClientParameters Client { get; private set; } |         public static ClientParameters Client { get; private set; } | ||||||
|  |  | ||||||
|         public static bool IsPrintingReady => Documents.Html.IsReady && Documents.Pdf.IsReady; |         public static bool IsPrintingReady => Html.IsReady && Pdf.IsReady; | ||||||
|         public static Dispatcher MainDispatcher { get; private set; } |         public static Dispatcher MainDispatcher { get; private set; } | ||||||
|  |  | ||||||
|         public App() : base() { |         public App() : base() { | ||||||
| @@ -92,8 +93,8 @@ namespace Elwig { | |||||||
|                 } |                 } | ||||||
|             } |             } | ||||||
|  |  | ||||||
|             Utils.RunBackground("HTML Initialization", () => Documents.Html.Init(PrintingReadyChanged)); |             Utils.RunBackground("HTML Initialization", () => Html.Init(PrintingReadyChanged)); | ||||||
|             Utils.RunBackground("PDF Initialization", () => Documents.Pdf.Init(PrintingReadyChanged)); |             Utils.RunBackground("PDF Initialization", () => Pdf.Init(PrintingReadyChanged)); | ||||||
|  |  | ||||||
|             var list = new List<IScale>(); |             var list = new List<IScale>(); | ||||||
|             foreach (var s in Config.Scales) { |             foreach (var s in Config.Scales) { | ||||||
| @@ -127,7 +128,7 @@ namespace Elwig { | |||||||
|                     ZwstId = entry.Item1; |                     ZwstId = entry.Item1; | ||||||
|                     BranchName = entry.Item2; |                     BranchName = entry.Item2; | ||||||
|                     BranchPlz = entry.Item3; |                     BranchPlz = entry.Item3; | ||||||
|                     BranchLocation = entry.Item4; |                     BranchLocation = entry.Item4?.Split(" im ")[0];  // FIXME | ||||||
|                     BranchAddress = entry.Item5; |                     BranchAddress = entry.Item5; | ||||||
|                     BranchPhoneNr = entry.Item6; |                     BranchPhoneNr = entry.Item6; | ||||||
|                     BranchFaxNr = entry.Item7; |                     BranchFaxNr = entry.Item7; | ||||||
| @@ -138,7 +139,7 @@ namespace Elwig { | |||||||
|                 ZwstId = entry.Item1; |                 ZwstId = entry.Item1; | ||||||
|                 BranchName = entry.Item2; |                 BranchName = entry.Item2; | ||||||
|                 BranchPlz = entry.Item3; |                 BranchPlz = entry.Item3; | ||||||
|                 BranchLocation = entry.Item4; |                 BranchLocation = entry.Item4?.Split(" im ")[0];  // FIXME | ||||||
|                 BranchAddress = entry.Item5; |                 BranchAddress = entry.Item5; | ||||||
|                 BranchPhoneNr = entry.Item6; |                 BranchPhoneNr = entry.Item6; | ||||||
|                 BranchFaxNr = entry.Item7; |                 BranchFaxNr = entry.Item7; | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ | |||||||
| @inherits TemplatePage<Elwig.Documents.BusinessDocument> | @inherits TemplatePage<Elwig.Documents.BusinessDocument> | ||||||
| @model Elwig.Documents.BusinessDocument | @model Elwig.Documents.BusinessDocument | ||||||
| @{ Layout = "Document"; } | @{ Layout = "Document"; } | ||||||
| <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\style-businessdocument.css" /> | <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\BusinessDocument.css"/> | ||||||
| <div class="info-wrapper"> | <div class="info-wrapper"> | ||||||
|     <div class="address-wrapper"> |     <div class="address-wrapper"> | ||||||
|         <div class="sender"> |         <div class="sender"> | ||||||
|   | |||||||
| @@ -10,7 +10,7 @@ namespace Elwig.Documents { | |||||||
|         public Credit Credit; |         public Credit Credit; | ||||||
|         public string? Text; |         public string? Text; | ||||||
|         public string CurrencySymbol; |         public string CurrencySymbol; | ||||||
|         public string[] BucketNames; |         public string[] BinNames; | ||||||
|         public int Precision; |         public int Precision; | ||||||
|         public IEnumerable<DeliveryPart> Parts; |         public IEnumerable<DeliveryPart> Parts; | ||||||
| 
 | 
 | ||||||
| @@ -27,14 +27,14 @@ namespace Elwig.Documents { | |||||||
|             Text = App.Client.TextDeliveryNote; |             Text = App.Client.TextDeliveryNote; | ||||||
|             DocumentId = $"Tr.-Gutschr. {c.TgId}"; |             DocumentId = $"Tr.-Gutschr. {c.TgId}"; | ||||||
|             CurrencySymbol = c.Payment.Variant.Season.Currency.Symbol ?? c.Payment.Variant.Season.Currency.Code; |             CurrencySymbol = c.Payment.Variant.Season.Currency.Symbol ?? c.Payment.Variant.Season.Currency.Code; | ||||||
|             BucketNames = c.Payment.Variant.BucketNames; |             BinNames = new string[0]; // FIXME | ||||||
|             Precision = c.Payment.Variant.Season.Precision; |             Precision = c.Payment.Variant.Season.Precision; | ||||||
|             Parts = ctx.DeliveryParts.FromSql($"""
 |             Parts = ctx.DeliveryParts.FromSql($"""
 | ||||||
|                 SELECT p.* |                 SELECT p.* | ||||||
|                 FROM v_delivery v |                 FROM v_delivery v | ||||||
|                 JOIN delivery_part p ON (p.year, p.did, p.dpnr) = (v.year, v.did, v.dpnr) |                 JOIN delivery_part p ON (p.year, p.did, p.dpnr) = (v.year, v.did, v.dpnr) | ||||||
|                 WHERE (v.year, v.mgnr) = ({c.Year}, {c.Member.MgNr}) |                 WHERE (v.year, v.mgnr) = ({c.Year}, {c.Member.MgNr}) | ||||||
|                 ORDER BY sortid, LENGTH(attributes) DESC, attributes, kmw DESC, date, time, dpnr |                 ORDER BY sortid, attribute_prio DESC, COALESCE(attrid, '~'), kmw DESC, date, time, dpnr | ||||||
|                 """).ToList();
 |                 """).ToList();
 | ||||||
|         } |         } | ||||||
|     }} |     }} | ||||||
| @@ -2,9 +2,9 @@ | |||||||
| @inherits TemplatePage<Elwig.Documents.CreditNote> | @inherits TemplatePage<Elwig.Documents.CreditNote> | ||||||
| @model Elwig.Documents.CreditNote | @model Elwig.Documents.CreditNote | ||||||
| @{ Layout = "BusinessDocument"; } | @{ Layout = "BusinessDocument"; } | ||||||
| <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\style-creditnote.css"/> | <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\CreditNote.css"/> | ||||||
| @{ | @{ | ||||||
|     var bucketNum = Model.BucketNames.Length; |     var binNum = Model.BinNames.Length; | ||||||
| } | } | ||||||
| <main> | <main> | ||||||
|     <h1>@Model.Title</h1> |     <h1>@Model.Title</h1> | ||||||
| @@ -27,10 +27,10 @@ | |||||||
|                 <th rowspan="3" style="text-align: left;">Lieferschein-Nr.</th> |                 <th rowspan="3" style="text-align: left;">Lieferschein-Nr.</th> | ||||||
|                 <th rowspan="3">Pos.</th> |                 <th rowspan="3">Pos.</th> | ||||||
|                 <th rowspan="3" style="text-align: left;">Sorte</th> |                 <th rowspan="3" style="text-align: left;">Sorte</th> | ||||||
|                 <th rowspan="3" style="text-align: left;">Attribut(e)</th> |                 <th rowspan="3" style="text-align: left;">Attribut</th> | ||||||
|                 <th rowspan="2" colspan="2">Gradation</th> |                 <th rowspan="2" colspan="2">Gradation</th> | ||||||
|                 <th colspan="2">Zu-/Abschläge</th> |                 <th colspan="2">Zu-/Abschläge</th> | ||||||
|                 <th colspan="2">@Raw(string.Join("<br/>", Model.BucketNames))</th> |                 <th colspan="2">@Raw(string.Join("<br/>", Model.BinNames))</th> | ||||||
|                 <th rowspan="2">Betrag</th> |                 <th rowspan="2">Betrag</th> | ||||||
|             </tr> |             </tr> | ||||||
|             <tr> |             <tr> | ||||||
| @@ -61,21 +61,23 @@ | |||||||
|                 var pmt = part.Payment; |                 var pmt = part.Payment; | ||||||
|                 var abs = pmt?.ModAbs == null || pmt?.ModAbs == 0 ? "-" : pmt?.ModAbs.ToString("0." + string.Concat(Enumerable.Repeat('0', Model.Precision))); |                 var abs = pmt?.ModAbs == null || pmt?.ModAbs == 0 ? "-" : pmt?.ModAbs.ToString("0." + string.Concat(Enumerable.Repeat('0', Model.Precision))); | ||||||
|                 var rel = pmt?.ModRel == null || pmt?.ModRel == 0 ? "-" : $"{pmt?.ModRel * 100:0.00##}"; |                 var rel = pmt?.ModRel == null || pmt?.ModRel == 0 ? "-" : $"{pmt?.ModRel * 100:0.00##}"; | ||||||
|                 <tr class="first @(bucketNum <= 1 ? "last" : "") @(last != null && last != part.SortId ? "new" : "")"> |                 <tr class="first @(binNum <= 1 ? "last" : "") @(last != null && last != part.SortId ? "new" : "")"> | ||||||
|                     <td rowspan="@bucketNum" class="lsnr">@part.Delivery.LsNr</td> |                     <td rowspan="@binNum" class="lsnr">@part.Delivery.LsNr</td> | ||||||
|                     <td rowspan="@bucketNum" class="dpnr">@part.DPNr</td> |                     <td rowspan="@binNum" class="dpnr">@part.DPNr</td> | ||||||
|                     <td rowspan="@bucketNum" class="variant">@part.Variant.Name</td> |                     <td rowspan="@binNum" class="variant">@part.Variant.Name</td> | ||||||
|                     <td rowspan="@bucketNum" class="attribute">@string.Join(" / ", part.PartAttributes.Select(a => a.AttrId))</td> |                     <td rowspan="@binNum" class="attribute">@part.Attribute?.Name</td> | ||||||
|                     <td rowspan="@bucketNum" class="oe">@($"{part.Oe:N0}")</td> |                     <td rowspan="@binNum" class="oe">@($"{part.Oe:N0}")</td> | ||||||
|                     <td rowspan="@bucketNum" class="kmw">@($"{part.Kmw:N1}")</td> |                     <td rowspan="@binNum" class="kmw">@($"{part.Kmw:N1}")</td> | ||||||
|                     <td rowspan="@bucketNum" class="abs">@abs</td> |                     <td rowspan="@binNum" class="abs">@abs</td> | ||||||
|                     <td rowspan="@bucketNum" class="rel">@rel</td> |                     <td rowspan="@binNum" class="rel">@rel</td> | ||||||
|                     @Raw(FormatRow(pmt?.Buckets?.ElementAtOrDefault(0), pmt?.Prices?.ElementAtOrDefault(0))) |                     <!--FIXME price--> | ||||||
|                     <td rowspan="@bucketNum" class="amount sum">@($"{pmt?.Amount:N2}")</td> |                     @Raw(FormatRow(pmt?.DeliveryPart.Bins?.ElementAtOrDefault(0)?.Value, 0)) | ||||||
|  |                     <td rowspan="@binNum" class="amount sum">@($"{pmt?.Amount:N2}")</td> | ||||||
|                 </tr> |                 </tr> | ||||||
|                 @for (int i = 1; i < bucketNum; i++) { |                 @for (int i = 1; i < binNum; i++) { | ||||||
|                     <tr class="@(i == bucketNum - 1 ? "last" : "")"> |                     <tr class="@(i == binNum - 1 ? "last" : "")"> | ||||||
|                         @Raw(FormatRow(pmt?.Buckets?.ElementAtOrDefault(i), pmt?.Prices?.ElementAtOrDefault(i))) |                         <!--FIXME price--> | ||||||
|  |                         @Raw(FormatRow(pmt?.DeliveryPart.Bins?.ElementAtOrDefault(i)?.Value, 0)) | ||||||
|                     </tr> |                     </tr> | ||||||
|                 } |                 } | ||||||
|                 last = part.SortId; |                 last = part.SortId; | ||||||
|   | |||||||
							
								
								
									
										34
									
								
								Elwig/Documents/DeliveryConfirmation.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								Elwig/Documents/DeliveryConfirmation.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,34 @@ | |||||||
|  | using Elwig.Helpers; | ||||||
|  | using Elwig.Models; | ||||||
|  | using Microsoft.EntityFrameworkCore; | ||||||
|  | using System; | ||||||
|  | using System.Collections.Generic; | ||||||
|  | using System.Linq; | ||||||
|  |  | ||||||
|  | namespace Elwig.Documents { | ||||||
|  |     public class DeliveryConfirmation : BusinessDocument { | ||||||
|  |  | ||||||
|  |         public Season Season; | ||||||
|  |         public IEnumerable<DeliveryPart> Deliveries; | ||||||
|  |         public string? Text = App.Client.TextDeliveryConfirmation; | ||||||
|  |         public Dictionary<string, (string, int, int, int, int)> MemberBins; | ||||||
|  |  | ||||||
|  |         public DeliveryConfirmation(AppDbContext ctx, int year, Member m, IEnumerable<DeliveryPart>? deliveries = null) : | ||||||
|  |             base($"Anlieferungsbestätigung {year}", m) { | ||||||
|  |             Season = ctx.Seasons.Find(year) ?? throw new ArgumentException("invalid season"); | ||||||
|  |             ShowDateAndLocation = true; | ||||||
|  |             UseBillingAddress = true; | ||||||
|  |             IncludeSender = true; | ||||||
|  |             DocumentId = $"Anl.-Best. {Season.Year}/{m.MgNr}"; | ||||||
|  |             Deliveries = deliveries ?? ctx.DeliveryParts.FromSqlRaw($""" | ||||||
|  |                 SELECT p.* | ||||||
|  |                 FROM v_delivery v | ||||||
|  |                     JOIN delivery_part p ON (p.year, p.did, p.dpnr) = (v.year, v.did, v.dpnr) | ||||||
|  |                 WHERE (v.year, v.mgnr) = ({Season.Year}, {m.MgNr}) | ||||||
|  |                 ORDER BY v.sortid, v.abgewertet ASC, v.attribute_prio DESC, COALESCE(v.attrid, '~'), v.kmw DESC, v.lsnr, v.dpnr | ||||||
|  |                 """) | ||||||
|  |                 .ToList(); | ||||||
|  |             MemberBins = ctx.GetMemberBins(Season.Year, m.MgNr).GetAwaiter().GetResult(); | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | } | ||||||
							
								
								
									
										181
									
								
								Elwig/Documents/DeliveryConfirmation.cshtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										181
									
								
								Elwig/Documents/DeliveryConfirmation.cshtml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,181 @@ | |||||||
|  | @using RazorLight | ||||||
|  | @inherits TemplatePage<Elwig.Documents.DeliveryConfirmation> | ||||||
|  | @model Elwig.Documents.DeliveryConfirmation | ||||||
|  | @{ Layout = "BusinessDocument"; } | ||||||
|  | <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\DeliveryConfirmation.css"/> | ||||||
|  | <main> | ||||||
|  |     <h1>@Model.Title</h1> | ||||||
|  |     <table class="delivery-confirmation"> | ||||||
|  |         <colgroup> | ||||||
|  |             <col style="width: 25mm;"/> | ||||||
|  |             <col style="width: 5mm;"/> | ||||||
|  |             <col style="width: 20mm;"/> | ||||||
|  |             <col style="width: 21mm;"/> | ||||||
|  |             <col style="width: 19mm;"/> | ||||||
|  |             <col style="width: 10mm;"/> | ||||||
|  |             <col style="width: 10mm;"/> | ||||||
|  |             <col style="width: 15mm;"/> | ||||||
|  |             <col style="width: 12mm;"/> | ||||||
|  |             <col style="width: 14mm;"/> | ||||||
|  |             <col style="width: 14mm;"/> | ||||||
|  |         </colgroup> | ||||||
|  |         <thead> | ||||||
|  |             <tr> | ||||||
|  |                 <th rowspan="2" style="text-align: left;">Lieferschein-Nr.</th> | ||||||
|  |                 <th rowspan="2">Pos.</th> | ||||||
|  |                 <th rowspan="2" style="text-align: left;">Sorte</th> | ||||||
|  |                 <th rowspan="2" style="text-align: left;">Attribut</th> | ||||||
|  |                 <th rowspan="2" style="text-align: left;">Qualitätsstufe</th> | ||||||
|  |                 <th colspan="2">Gradation</th> | ||||||
|  |                 <th colspan="2">Flächenbindung</th> | ||||||
|  |                 <th>Gewicht</th> | ||||||
|  |                 <th>Davon<br/>abzuwerten</th> | ||||||
|  |             </tr> | ||||||
|  |             <tr> | ||||||
|  |                 <th>[°Oe]</th> | ||||||
|  |                 <th>[°KMW]</th> | ||||||
|  |                 <th colspan="2">[kg]</th> | ||||||
|  |                 <th>[kg]</th> | ||||||
|  |                 <th>[kg]</th> | ||||||
|  |             </tr> | ||||||
|  |         </thead> | ||||||
|  |         <tbody> | ||||||
|  |             @{ | ||||||
|  |                 var lastSortId = ""; | ||||||
|  |             } | ||||||
|  |             @foreach (var p in Model.Deliveries) { | ||||||
|  |                 var bins = p.Bins.Where(b => b.Value > 0).OrderByDescending(b => b.BktNr).ToArray(); | ||||||
|  |                 var rowsBins = bins.Length; | ||||||
|  |                 var mods = p.Modifiers.Select(m => m.Name).ToArray(); | ||||||
|  |                 var rowsMod = mods.Length + 1; | ||||||
|  |                 var rows = Math.Max(rowsBins, rowsMod); | ||||||
|  |                 var first = true; | ||||||
|  |                 @for (int i = 0; i < rows; i++) { | ||||||
|  |                     <tr class="@(first ? "first" : "") @(p.SortId != lastSortId && lastSortId != "" ? "new": "") @(rows > i + 1 ? "trailing" : "")"> | ||||||
|  |                         @if (first) { | ||||||
|  |                             <td rowspan="@rows">@p.Delivery.LsNr</td> | ||||||
|  |                             <td rowspan="@rows">@p.DPNr</td> | ||||||
|  |                             <td class="small">@p.Variant.Name</td> | ||||||
|  |                             <td class="small">@p.Attribute?.Name</td> | ||||||
|  |                             <td class="small">@p.Quality.Name</td> | ||||||
|  |                             <td rowspan="@rows" class="grad">@($"{p.Oe:N0}")</td> | ||||||
|  |                             <td rowspan="@rows" class="grad">@($"{p.Kmw:N1}")</td> | ||||||
|  |                         } | ||||||
|  |                         @if (i > 0 && i <= mods.Length) { | ||||||
|  |                             <td colspan="3" class="mod">@(mods[i - 1])</td> | ||||||
|  |                         } else if (i > 0) { | ||||||
|  |                             <td colspan="3"></td> | ||||||
|  |                         } | ||||||
|  |                         @if (i < bins.Length) { | ||||||
|  |                             var bin = bins[i]; | ||||||
|  |                             <td class="geb">@(bin.Discr == "_" ? "ungeb." : $"geb. {p.SortId}{bin.Discr}"):</td> | ||||||
|  |                             <td class="weight">@($"{bin.Value:N0}")</td> | ||||||
|  |                         } else { | ||||||
|  |                             <td colspan="2"></td> | ||||||
|  |                         } | ||||||
|  |                         @if (i == bins.Length - 1) { | ||||||
|  |                             <td class="weight">@($"{p.Weight:N0}")</td> | ||||||
|  |                         } else { | ||||||
|  |                             <td></td> | ||||||
|  |                         } | ||||||
|  |                         @if (first) { | ||||||
|  |                             <td rowspan="@rows" class="weight"></td> | ||||||
|  |                             first = false; | ||||||
|  |                         } | ||||||
|  |                     </tr> | ||||||
|  |                     lastSortId = p.SortId; | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |             <tr class="sum"> | ||||||
|  |                 <td colspan="8">Gesamt:</td> | ||||||
|  |                 <td colspan="2" class="weight">@($"{Model.Deliveries.Sum(p => p.Weight):N0}")</td> | ||||||
|  |                 <td></td> | ||||||
|  |             </tr> | ||||||
|  |         </tbody> | ||||||
|  |     </table> | ||||||
|  |     <table class="delivery-confirmation-stats"> | ||||||
|  |         <colgroup> | ||||||
|  |             <col style="width: 45mm;"/> | ||||||
|  |             <col style="width: 17mm;"/> | ||||||
|  |             <col style="width: 17mm;"/> | ||||||
|  |             <col style="width: 17mm;"/> | ||||||
|  |             <col style="width: 19mm;"/> | ||||||
|  |             <col style="width: 16mm;"/> | ||||||
|  |             <col style="width: 17mm;"/> | ||||||
|  |             <col style="width: 17mm;"/> | ||||||
|  |         </colgroup> | ||||||
|  |         <thead> | ||||||
|  |             <tr> | ||||||
|  |                 <th><b>Lese @Model.Season.Year</b> per @($"{Model.Date:dd.MM.yyyy}") [kg]</th> | ||||||
|  |                 <th>Lieferpflicht</th> | ||||||
|  |                 <th>Lieferrecht</th> | ||||||
|  |                 <th>Unterliefert</th> | ||||||
|  |                 <th>Noch lieferbar</th> | ||||||
|  |                 <th>Überliefert</th> | ||||||
|  |                 <th>Zugeteilt</th> | ||||||
|  |                 <th>Geliefert</th> | ||||||
|  |             </tr> | ||||||
|  |         </thead> | ||||||
|  |         <tbody> | ||||||
|  |             @{ | ||||||
|  |                 string FormatRow(int mode, int obligation, int right, int sum, int? payment = null) { | ||||||
|  |                     var isGa = mode == 0; | ||||||
|  |                     payment ??= sum; | ||||||
|  |                     return $"<td>{(mode == 1 ? "" : obligation == 0 ? "-" : $"{obligation:N0}")}</td>" + | ||||||
|  |                         $"<td>{(mode == 1 ? "" : right == 0 ? "-" : $"{right:N0}")}</td>" + | ||||||
|  |                         $"<td>{(mode == 1 ? "" : payment < obligation ? $"<b>{obligation - payment:N0}\x3c/b>" : "-")}</td>" + | ||||||
|  |                         $"<td>{(mode == 1 ? "" : payment >= obligation && sum <= right ? $"{right - sum:N0}" : "-")}</td>" + | ||||||
|  |                         $"<td>{(mode == 1 ? "" : obligation == 0 && right == 0 ? "-" : (sum > right ? ((isGa ? "<b>" : "") + $"{sum - right:N0}" + (isGa ? "</b>" : "")) : "-"))}</td>" + | ||||||
|  |                         $"<td>{(mode != 2 ? "" : obligation == 0 && right == 0 ? "-" : $"{payment:N0}")}</td>" + | ||||||
|  |                         $"<td>{sum:N0}</td>"; | ||||||
|  |                 } | ||||||
|  |                 var mBins = Model.MemberBins.Where(b => b.Value.Item2 > 0 || b.Value.Item3 > 0 || b.Value.Item4 > 0).ToList(); | ||||||
|  |                 var fbVars = mBins.Where(b => b.Value.Item2 > 0 || b.Value.Item3 > 0).Select(b => b.Key.Replace("_", "")).Order().ToArray(); | ||||||
|  |                 var fbs = mBins.Where(b => fbVars.Contains(b.Key) && b.Key.Length == 2).OrderBy(b => b.Value.Item1); | ||||||
|  |                 var vtr = mBins.Where(b => fbVars.Contains(b.Key) && b.Key.Length > 2).OrderBy(b => b.Value.Item1); | ||||||
|  |                 var rem = mBins.Where(b => !fbVars.Contains(b.Key)).OrderBy(b => b.Value.Item1); | ||||||
|  |             } | ||||||
|  |             <tr> | ||||||
|  |                 <th>Gesamtlieferung lt. gez. GA</th> | ||||||
|  |                 @Raw(FormatRow( | ||||||
|  |                     0, | ||||||
|  |                     Model.Member.BusinessShares * Model.Season.MinKgPerBusinessShare, | ||||||
|  |                     Model.Member.BusinessShares * Model.Season.MaxKgPerBusinessShare, | ||||||
|  |                     Model.Member.Deliveries.Where(d => d.Year == Model.Season.Year).Sum(d => d.Weight) | ||||||
|  |                 )) | ||||||
|  |             </tr> | ||||||
|  |             @if (rem.Any()) { | ||||||
|  |                 <tr class="subheading"><th colspan="8">Sortenaufteilung:</th></tr> | ||||||
|  |             } | ||||||
|  |             @foreach (var (id, (name, right, obligation, sum, payment)) in rem) { | ||||||
|  |                 <tr> | ||||||
|  |                     <th>@name</th> | ||||||
|  |                     @Raw(FormatRow(1, obligation, right, sum, payment)) | ||||||
|  |                 </tr> | ||||||
|  |             } | ||||||
|  |             @if (fbs.Any()){ | ||||||
|  |                 <tr class="subheading"><th colspan="8">Flächenbindungen:</th></tr> | ||||||
|  |             } | ||||||
|  |             @foreach (var (id, (name, right, obligation, sum, payment)) in fbs) { | ||||||
|  |                 <tr> | ||||||
|  |                     <th>@name</th> | ||||||
|  |                     @Raw(FormatRow(2, obligation, right, sum, payment)) | ||||||
|  |                 </tr> | ||||||
|  |             } | ||||||
|  |             @if (vtr.Any()) { | ||||||
|  |                 <tr class="subheading"><th colspan="8">Verträge:</th></tr> | ||||||
|  |             } | ||||||
|  |             @foreach (var (id, (name, right, obligation, sum, payment)) in vtr) { | ||||||
|  |                 <tr> | ||||||
|  |                     <th>@name</th> | ||||||
|  |                     @Raw(FormatRow(2, obligation, right, sum, payment)) | ||||||
|  |                 </tr> | ||||||
|  |             } | ||||||
|  |         </tbody> | ||||||
|  |     </table> | ||||||
|  |     <div class="text" style="margin-top: 2em;"> | ||||||
|  |         @if (Model.Text != null) { | ||||||
|  |             <p class="comment" style="white-space: pre-wrap; break-inside: avoid;">@Model.Text</p> | ||||||
|  |         } | ||||||
|  |     </div> | ||||||
|  | </main> | ||||||
							
								
								
									
										113
									
								
								Elwig/Documents/DeliveryConfirmation.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										113
									
								
								Elwig/Documents/DeliveryConfirmation.css
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,113 @@ | |||||||
|  |  | ||||||
|  | table.delivery-confirmation { | ||||||
|  |     font-size: 10pt; | ||||||
|  |     margin-bottom: 5mm; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation thead { | ||||||
|  |     font-size: 8pt; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation thead th { | ||||||
|  |     font-weight: normal; | ||||||
|  |     font-style: italic; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation td { | ||||||
|  |     overflow: hidden; | ||||||
|  |     white-space: nowrap; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation td[rowspan] { | ||||||
|  |     vertical-align: top; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation .weight { | ||||||
|  |     text-align: right; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation .grad { | ||||||
|  |     text-align: center; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation .geb { | ||||||
|  |     font-size: 8pt; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation .mod { | ||||||
|  |     font-size: 8pt; | ||||||
|  |     padding-left: 5mm; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation .small { | ||||||
|  |     font-size: 8pt; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation tr.new td { | ||||||
|  |     border-top: 0.5pt solid black; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation tr:not(.first) { | ||||||
|  |     break-before: avoid; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation tr:not(.first) td { | ||||||
|  |     padding-top: 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation tr.trailing td { | ||||||
|  |     padding-bottom: 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation tr.sum { | ||||||
|  |     border-top: 0.5pt solid black; | ||||||
|  |     break-before: avoid; | ||||||
|  |     font-weight: bold; | ||||||
|  |     font-size: 12pt; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation tr.sum td { | ||||||
|  |     padding-top: 1mm; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation-stats { | ||||||
|  |     font-size: 10pt; | ||||||
|  |     break-inside: avoid; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation-stats th, | ||||||
|  | table.delivery-confirmation-stats td { | ||||||
|  |     padding: 0.125mm 0; | ||||||
|  |     overflow: hidden; | ||||||
|  |     white-space: nowrap; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation-stats tr.subheading th { | ||||||
|  |     text-align: left; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation-stats thead th { | ||||||
|  |     font-weight: normal; | ||||||
|  |     font-style: italic; | ||||||
|  |     text-align: right; | ||||||
|  |     font-size: 8pt; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation-stats thead th:first-child { | ||||||
|  |     text-align: left; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation-stats td { | ||||||
|  |     text-align: right; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation-stats tbody th { | ||||||
|  |     font-weight: normal; | ||||||
|  |     font-style: italic; | ||||||
|  |     text-align: left; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | table.delivery-confirmation-stats tr.subheading th { | ||||||
|  |     font-weight: bold; | ||||||
|  |     border-top: 0.5pt solid black; | ||||||
|  | } | ||||||
| @@ -18,8 +18,7 @@ namespace Elwig.Documents { | |||||||
| 
 | 
 | ||||||
|         public DeliveryJournal(string filter, IQueryable<DeliveryPart> deliveries) : |         public DeliveryJournal(string filter, IQueryable<DeliveryPart> deliveries) : | ||||||
|             this(filter, deliveries |             this(filter, deliveries | ||||||
|                 .Include(p => p.Delivery) |                 .Include(p => p.Delivery).ThenInclude(d => d.Member) | ||||||
|                 .Include(p => p.Delivery.Member) |  | ||||||
|                 .Include(p => p.Variant) |                 .Include(p => p.Variant) | ||||||
|                 .ToList()) { } |                 .ToList()) { } | ||||||
| 
 | 
 | ||||||
| @@ -2,7 +2,7 @@ | |||||||
| @inherits TemplatePage<Elwig.Documents.DeliveryJournal> | @inherits TemplatePage<Elwig.Documents.DeliveryJournal> | ||||||
| @model Elwig.Documents.DeliveryJournal | @model Elwig.Documents.DeliveryJournal | ||||||
| @{ Layout = "Document"; } | @{ Layout = "Document"; } | ||||||
| <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\style-deliveryjournal.css"/> | <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\DeliveryJournal.css"/> | ||||||
| <main> | <main> | ||||||
|     <h1>Lieferjournal</h1> |     <h1>Lieferjournal</h1> | ||||||
|     <h2>@Model.Filter</h2> |     <h2>@Model.Filter</h2> | ||||||
|   | |||||||
| @@ -7,7 +7,13 @@ namespace Elwig.Documents { | |||||||
| 
 | 
 | ||||||
|         public Delivery Delivery; |         public Delivery Delivery; | ||||||
|         public string? Text; |         public string? Text; | ||||||
|         public IEnumerable<(string, string, int, int, int)> MemberBuckets; |         public Dictionary<string, (string, int, int, int, int)> MemberBins; | ||||||
|  | 
 | ||||||
|  |         // 0 - none | ||||||
|  |         // 1 - GA only | ||||||
|  |         // 2 - GA only and area commitments of varieties from delivery note | ||||||
|  |         // 3 - full | ||||||
|  |         public int DisplayStats = App.Client.ModeDeliveryNoteStats; | ||||||
| 
 | 
 | ||||||
|         public DeliveryNote(Delivery d, AppDbContext ctx) : base($"Traubenübernahmeschein Nr. {d.LsNr}", d.Member) { |         public DeliveryNote(Delivery d, AppDbContext ctx) : base($"Traubenübernahmeschein Nr. {d.LsNr}", d.Member) { | ||||||
|             UseBillingAddress = true; |             UseBillingAddress = true; | ||||||
| @@ -21,7 +27,7 @@ namespace Elwig.Documents { | |||||||
|                 $"</tbody></table>"; |                 $"</tbody></table>"; | ||||||
|             Text = App.Client.TextDeliveryNote; |             Text = App.Client.TextDeliveryNote; | ||||||
|             DocumentId = d.LsNr; |             DocumentId = d.LsNr; | ||||||
|             MemberBuckets = ctx.GetMemberBuckets(d.Member, d.Year).GetAwaiter().GetResult(); |             MemberBins = ctx.GetMemberBins(d.Year, d.Member.MgNr).GetAwaiter().GetResult(); | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
| @@ -2,47 +2,9 @@ | |||||||
| @inherits TemplatePage<Elwig.Documents.DeliveryNote> | @inherits TemplatePage<Elwig.Documents.DeliveryNote> | ||||||
| @model Elwig.Documents.DeliveryNote | @model Elwig.Documents.DeliveryNote | ||||||
| @{ Layout = "BusinessDocument"; } | @{ Layout = "BusinessDocument"; } | ||||||
| <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\style-deliverynote.css" /> | <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\DeliveryNote.css" /> | ||||||
| <main> | <main> | ||||||
| <h1>@Model.Title</h1> | <h1>@Model.Title</h1> | ||||||
| @{ |  | ||||||
|     bool displayStats = true;  // Model.Delivery.Year == Model.CurrentNextSeason |  | ||||||
| } |  | ||||||
| <script> |  | ||||||
|     document.addEventListener("DOMContentLoaded", () => { |  | ||||||
|         const hidden = document.getElementsByClassName("hidden")[0]; |  | ||||||
|         const table = document.getElementsByClassName("delivery")[0]; |  | ||||||
|         const stats = document.getElementById("delivery-stats"); |  | ||||||
|         const mm = px2mm(0, hidden.offsetTop + hidden.offsetHeight); |  | ||||||
|         const heightTable = px2mm(table.offsetTop, hidden.offsetTop + hidden.offsetHeight); |  | ||||||
|  |  | ||||||
|         if (mm >= heightA4 - heightFooter) { |  | ||||||
|             if (heightTable + 10 >= heightMain) { |  | ||||||
|                 // force page break in table |  | ||||||
|                 const tblOff = px2mm(0, table.offsetTop); |  | ||||||
|                 let last = null; |  | ||||||
|                 for (const tr of table.getElementsByTagName("tr")) { |  | ||||||
|                     if (!tr.classList.contains("main")) continue; |  | ||||||
|                     const mm2 = tblOff + px2mm(0, tr.offsetTop); |  | ||||||
|                     if (mm2 >= heightA4 - heightFooter) { |  | ||||||
|                         last.classList.add("page-break"); |  | ||||||
|                         break; |  | ||||||
|                     } |  | ||||||
|                     last = tr; |  | ||||||
|                 } |  | ||||||
|             } else { |  | ||||||
|                 // force page break |  | ||||||
|                 const hr = document.createElement("hr"); |  | ||||||
|                 hr.classList.add("page-break"); |  | ||||||
|                 table.before(hr); |  | ||||||
|  |  | ||||||
|                 const p = document.createElement("p"); |  | ||||||
|                 p.innerText = "Siehe nächste Seite." |  | ||||||
|                 hr.before(p); |  | ||||||
|             } |  | ||||||
|         } |  | ||||||
|     }); |  | ||||||
| </script> |  | ||||||
| <table class="delivery"> | <table class="delivery"> | ||||||
|     <colgroup> |     <colgroup> | ||||||
|         <col style="width: 10.00mm;"/> |         <col style="width: 10.00mm;"/> | ||||||
| @@ -59,7 +21,7 @@ | |||||||
|         <tr> |         <tr> | ||||||
|             <th class="main" rowspan="2" style="text-align: center;">Pos.</th> |             <th class="main" rowspan="2" style="text-align: center;">Pos.</th> | ||||||
|             <th class="main" rowspan="2" colspan="2">Sorte</th> |             <th class="main" rowspan="2" colspan="2">Sorte</th> | ||||||
|             <th class="main" rowspan="2" colspan="2">Attribut(e)</th> |             <th class="main" rowspan="2" colspan="2">Attribut</th> | ||||||
|             <th class="main" rowspan="2">Qualitätsstufe</th> |             <th class="main" rowspan="2">Qualitätsstufe</th> | ||||||
|             <th colspan="2">Gradation</th> |             <th colspan="2">Gradation</th> | ||||||
|             <th>Gewicht</th> |             <th>Gewicht</th> | ||||||
| @@ -75,7 +37,7 @@ | |||||||
|             <tr class="main"> |             <tr class="main"> | ||||||
|                 <td style="text-align: center;">@part.DPNr</td> |                 <td style="text-align: center;">@part.DPNr</td> | ||||||
|                 <td colspan="2">@part.Variant.Name</td> |                 <td colspan="2">@part.Variant.Name</td> | ||||||
|                 <td colspan="2">@string.Join(" / ", part.Attributes)</td> |                 <td colspan="2">@part.Attribute?.Name</td> | ||||||
|                 <td>@part.Quality.Name</td> |                 <td>@part.Quality.Name</td> | ||||||
|                 <td class="narrow" style="text-align: center;">@($"{part.Oe:N0}")</td> |                 <td class="narrow" style="text-align: center;">@($"{part.Oe:N0}")</td> | ||||||
|                 <td class="narrow" style="text-align: center;">@($"{part.Kmw:N1}")</td> |                 <td class="narrow" style="text-align: center;">@($"{part.Kmw:N1}")</td> | ||||||
| @@ -113,61 +75,68 @@ | |||||||
| @if (Model.Delivery.Comment != null) { | @if (Model.Delivery.Comment != null) { | ||||||
|     <p class="comment">Amerkung zur Lieferung: @Model.Delivery.Comment</p> |     <p class="comment">Amerkung zur Lieferung: @Model.Delivery.Comment</p> | ||||||
| } | } | ||||||
| @if (displayStats) { | @if (Model.DisplayStats > 0) { | ||||||
|     <div id="delivery-stats"> |     <table class="delivery-note-stats @(Model.DisplayStats > 2 ? "expanded" : "")"> | ||||||
|         <table class="delivery-stats"> |         <colgroup> | ||||||
|             <colgroup> |             <col style="width: 45mm;"/> | ||||||
|                 <col style="width: 45mm;"/> |             <col style="width: 20mm;"/> | ||||||
|                 <col style="width: 20mm;"/> |             <col style="width: 20mm;"/> | ||||||
|                 <col style="width: 20mm;"/> |             <col style="width: 20mm;"/> | ||||||
|                 <col style="width: 20mm;"/> |             <col style="width: 20mm;"/> | ||||||
|                 <col style="width: 20mm;"/> |             <col style="width: 20mm;"/> | ||||||
|                 <col style="width: 20mm;"/> |             <col style="width: 20mm;"/> | ||||||
|                 <col style="width: 20mm;"/> |         </colgroup> | ||||||
|             </colgroup> |         <thead> | ||||||
|             <thead> |             <tr> | ||||||
|                 <tr> |                 <th><b>Lese @Model.Delivery.Year</b> per @($"{Model.Date:dd.MM.yyyy}") [kg]</th> | ||||||
|                     <th><b>Lese @Model.Delivery.Year</b> per @($"{Model.Date:dd.MM.yyyy}") [kg]</th> |                 <th>Lieferpflicht</th> | ||||||
|                     <th>Lieferpflicht</th> |                 <th>Lieferrecht</th> | ||||||
|                     <th>Lieferrecht</th> |                 <th>Unterliefert</th> | ||||||
|                     <th>Unterliefert</th> |                 <th>Noch lieferbar</th> | ||||||
|                     <th>Noch zu liefern</th> |                 <th>Überliefert</th> | ||||||
|                     <th>Überliefert</th> |                 <th>Geliefert</th> | ||||||
|                     <th>Geliefert</th> |             </tr> | ||||||
|                 </tr> |         </thead> | ||||||
|             </thead> |         <tbody> | ||||||
|             <tbody> |             @{ | ||||||
|                 @{ |                 string FormatRow(int obligation, int right, int sum) { | ||||||
|                     string FormatRow(int obligation, int right, int sum) { |                     return $"<td>{obligation:N0}</td>" + | ||||||
|                         return $"<td>{obligation:N0}</td>" + |                         $"<td>{right:N0}</td>" + | ||||||
|                             $"<td>{right:N0}</td>" + |                         $"<td>{(sum < obligation ? $"{obligation - sum:N0}" : "-")}</td>" + | ||||||
|                             $"<td>{(sum < obligation ? $"{obligation - sum:N0}" : "-")}</td>" + |                         $"<td>{(sum >= obligation && sum <= right ? $"{right - sum:N0}" : "-")}</td>" + | ||||||
|                             $"<td>{(sum >= obligation && sum <= right ? $"{right - sum:N0}" : "-")}</td>" + |                         $"<td>{(sum > right ? $"{sum - right:N0}" : "-")}</td>" + | ||||||
|                             $"<td>{(sum > right ? $"{sum - right:N0}" : "-")}</td>" + |                         $"<td>{sum:N0}</td>"; | ||||||
|                             $"<td>{sum:N0}</td>"; |  | ||||||
|                     } |  | ||||||
|                     var sortids = Model.Delivery.Parts.Select(p => p.SortId).ToList(); |  | ||||||
|                     var buckets = Model.MemberBuckets.GroupBy(b => b.Item1[..2]).ToDictionary(g => g.Key, g => g.Count()); |  | ||||||
|                 } |                 } | ||||||
|                 <tr> |                 var sortids = Model.Delivery.Parts.Select(p => p.SortId).ToList(); | ||||||
|                     <th>Gesamtlieferung</th> |                 var bins = Model.MemberBins.GroupBy(b => b.Key[..2]).ToDictionary(g => g.Key, g => g.Count()); | ||||||
|                     @Raw(FormatRow(Model.Member.DeliveryObligation, Model.Member.DeliveryRight, Model.Member.Deliveries.Where(d => d.Year == Model.Delivery.Year).Sum(d => d.Weight))) |             } | ||||||
|  |             <tr> | ||||||
|  |                 <th>Gesamtlieferung lt. gez. GA</th> | ||||||
|  |                 @Raw(FormatRow( | ||||||
|  |                     Model.Member.BusinessShares * Model.Delivery.Season.MinKgPerBusinessShare, | ||||||
|  |                     Model.Member.BusinessShares * Model.Delivery.Season.MaxKgPerBusinessShare, | ||||||
|  |                     Model.Member.Deliveries.Where(d => d.Year == Model.Delivery.Year).Sum(d => d.Weight) | ||||||
|  |                 )) | ||||||
|  |             </tr> | ||||||
|  |             @if (Model.DisplayStats > 1) { | ||||||
|  |                 <tr class="subheading"> | ||||||
|  |                     <th>Flächenbindungen:</th> | ||||||
|                 </tr> |                 </tr> | ||||||
|                 @foreach (var (id, name, right, obligation, sum) in Model.MemberBuckets.OrderBy(b => b.Item1)) { |                 @foreach (var (id, (name, right, obligation, sum, _)) in Model.MemberBins.OrderBy(b => b.Key)) { | ||||||
|                     if (right > 0 || obligation > 0 || (sum > 0 && buckets[id[..2]] > 1 && !id.EndsWith('_'))) { |                     if (right > 0 || obligation > 0 || (sum > 0 && bins[id[..2]] > 1 && !id.EndsWith('_'))) { | ||||||
|                         <tr class="@(sortids.Contains(id[..2]) ? "" : "optional")"> |                         <tr class="@(sortids.Contains(id[..2]) ? "" : "optional")"> | ||||||
|                             <th>@name</th> |                             <th>@name</th> | ||||||
|                             @Raw(FormatRow(obligation, right, sum)) |                             @Raw(FormatRow(obligation, right, sum)) | ||||||
|                         </tr> |                         </tr> | ||||||
|                     } |                     } | ||||||
|                 } |                 } | ||||||
|             </tbody> |             } | ||||||
|         </table> |         </tbody> | ||||||
|     </div> |     </table> | ||||||
| } | } | ||||||
| </main> | </main> | ||||||
| @for (int i = 0; i < 2; i++) { | @for (int i = 0; i < 2; i++) { | ||||||
|     <div class="@(i == 0 ? "hidden" : "bottom")"> |     <div class="text @(i == 0 ? "hidden" : "bottom")"> | ||||||
|         @if (Model.Text != null) { |         @if (Model.Text != null) { | ||||||
|             <p class="comment">@Model.Text</p> |             <p class="comment">@Model.Text</p> | ||||||
|         } |         } | ||||||
|   | |||||||
| @@ -39,11 +39,9 @@ table.delivery tr.tight.first td { | |||||||
|     padding-bottom: 0; |     padding-bottom: 0; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| /* FIXME update version of WeasyPrint |  | ||||||
| table.delivery tr.tight:has(+ tr:not(.tight)) td { | table.delivery tr.tight:has(+ tr:not(.tight)) td { | ||||||
| padding-bottom: 0.5mm !important; |     padding-bottom: 0.5mm !important; | ||||||
| } | } | ||||||
| */ |  | ||||||
| 
 | 
 | ||||||
| table.delivery tr.sum { | table.delivery tr.sum { | ||||||
|     border-top: 0.5pt solid black; |     border-top: 0.5pt solid black; | ||||||
| @@ -54,45 +52,45 @@ table.delivery tr.sum td { | |||||||
|     padding-top: 1mm; |     padding-top: 1mm; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| table.delivery-stats { | table.delivery-note-stats { | ||||||
|     font-size: 8pt; |     font-size: 8pt; | ||||||
|     break-inside: avoid; |     break-inside: avoid; | ||||||
|     break-after: avoid; |     break-after: avoid; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| table.delivery-stats.expanded th, | table.delivery-note-stats th, | ||||||
| table.delivery-stats.expanded td { | table.delivery-note-stats td { | ||||||
|     padding: 0.25mm 0; |  | ||||||
| } |  | ||||||
| 
 |  | ||||||
| table.delivery-stats:not(.expanded) th, |  | ||||||
| table.delivery-stats:not(.expanded) td { |  | ||||||
|     padding: 0.125mm 0; |     padding: 0.125mm 0; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| table.delivery-stats:not(.expanded) tr.optional { | table.delivery-note-stats:not(.expanded) tr.optional { | ||||||
|     display: none; |     display: none; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| table.delivery-stats thead th { | table.delivery-note-stats tr.subheading th { | ||||||
|  |     text-align: left; | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | table.delivery-note-stats.expanded tr.subheading:not(:has(~ tr)), | ||||||
|  | table.delivery-note-stats tr.subheading:not(:has(~ tr:not(.optional))) { | ||||||
|  |     display: none; | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | table.delivery-note-stats thead th { | ||||||
|     font-weight: normal; |     font-weight: normal; | ||||||
|     font-style: italic; |     font-style: italic; | ||||||
|     text-align: right; |     text-align: right; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| table.delivery-stats thead th:first-child { | table.delivery-note-stats thead th:first-child { | ||||||
|     text-align: left; |     text-align: left; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| table.delivery-stats.expanded tbody { | table.delivery-note-stats td { | ||||||
|     font-size: 10pt; |  | ||||||
| } |  | ||||||
| 
 |  | ||||||
| table.delivery-stats td { |  | ||||||
|     text-align: right; |     text-align: right; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| table.delivery-stats tbody th { | table.delivery-note-stats tbody th { | ||||||
|     font-weight: normal; |     font-weight: normal; | ||||||
|     font-style: italic; |     font-style: italic; | ||||||
|     text-align: left; |     text-align: left; | ||||||
| @@ -20,9 +20,6 @@ | |||||||
| hr.page-break { | hr.page-break { | ||||||
|     display: none; |     display: none; | ||||||
| } | } | ||||||
| .document-break { |  | ||||||
|     break-before: page; |  | ||||||
| } |  | ||||||
| 
 | 
 | ||||||
| @page { | @page { | ||||||
|     size: A4; |     size: A4; | ||||||
| @@ -3,16 +3,16 @@ using System.Threading.Tasks; | |||||||
| using System.IO; | using System.IO; | ||||||
| using Elwig.Helpers; | using Elwig.Helpers; | ||||||
| using System.Collections.Generic; | using System.Collections.Generic; | ||||||
| using System.Text.RegularExpressions; |  | ||||||
| using System.Linq; | using System.Linq; | ||||||
|  | using Elwig.Helpers.Printing; | ||||||
| 
 | 
 | ||||||
| namespace Elwig.Documents { | namespace Elwig.Documents { | ||||||
|     public abstract partial class Document : IDisposable { |     public abstract partial class Document : IDisposable { | ||||||
| 
 | 
 | ||||||
|         private TempFile? _pdfFile = null; |         private TempFile? _pdfFile = null; | ||||||
|         private string? _renderedHtml = null; |  | ||||||
| 
 | 
 | ||||||
|         public bool ShowFoldMarks = App.Config.Debug; |         public bool ShowFoldMarks = App.Config.Debug; | ||||||
|  |         public bool DoubleSided = false; | ||||||
| 
 | 
 | ||||||
|         public string DataPath; |         public string DataPath; | ||||||
|         public int CurrentNextSeason; |         public int CurrentNextSeason; | ||||||
| @@ -29,7 +29,7 @@ namespace Elwig.Documents { | |||||||
|             CurrentNextSeason = Utils.CurrentNextSeason; |             CurrentNextSeason = Utils.CurrentNextSeason; | ||||||
|             Title = title; |             Title = title; | ||||||
|             Author = c.NameFull; |             Author = c.NameFull; | ||||||
|             Header = $"<div class='name'>{c.Name}</div><div class='suffix'>{c.NameSuffix}</div>"; |             Header = $"<div class='name'>{c.Name}</div><div class='suffix'>{c.NameSuffix}</div><div class='type'>{c.NameTypeFull}</div>"; | ||||||
|             Footer = Utils.GenerateFooter("<br/>", " \u00b7 ") |             Footer = Utils.GenerateFooter("<br/>", " \u00b7 ") | ||||||
|                 .Item(c.NameFull).NextLine() |                 .Item(c.NameFull).NextLine() | ||||||
|                 .Item(c.Address).Item($"{c.Plz} {c.Ort}").Item("Österreich").Item("Tel.", c.PhoneNr).Item("Fax", c.FaxNr).NextLine() |                 .Item(c.Address).Item($"{c.Plz} {c.Ort}").Item("Österreich").Item("Tel.", c.PhoneNr).Item("Fax", c.FaxNr).NextLine() | ||||||
| @@ -39,18 +39,6 @@ namespace Elwig.Documents { | |||||||
|             Date = DateTime.Today; |             Date = DateTime.Today; | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         [GeneratedRegex(@"</body>.*?</footer>\s*</div>", RegexOptions.IgnoreCase | RegexOptions.Singleline | RegexOptions.Compiled)] |  | ||||||
|         private static partial Regex GeneratedDocumentHeaderRegex(); |  | ||||||
|         private static readonly Regex DocumentHeaderRegex = GeneratedDocumentHeaderRegex(); |  | ||||||
| 
 |  | ||||||
|         [GeneratedRegex(@"<style>.*?/style>", RegexOptions.IgnoreCase | RegexOptions.Singleline | RegexOptions.Compiled)] |  | ||||||
|         private static partial Regex GeneratedHtmlStyleRegex(); |  | ||||||
|         private static readonly Regex HtmlStyleRegex = GeneratedHtmlStyleRegex(); |  | ||||||
| 
 |  | ||||||
|         [GeneratedRegex(@"<link[^>]*>", RegexOptions.IgnoreCase | RegexOptions.Singleline | RegexOptions.Compiled)]
 |  | ||||||
|         private static partial Regex GeneratedHtmlLinkRegex(); |  | ||||||
|         private static readonly Regex HtmlLinkRegex = GeneratedHtmlLinkRegex(); |  | ||||||
| 
 |  | ||||||
|         ~Document() { |         ~Document() { | ||||||
|             Dispose(); |             Dispose(); | ||||||
|         } |         } | ||||||
| @@ -61,34 +49,11 @@ namespace Elwig.Documents { | |||||||
|             GC.SuppressFinalize(this); |             GC.SuppressFinalize(this); | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         public static async Task<Document> Merge(IEnumerable<Document> docs) { |         public static Document Merge(IEnumerable<Document> docs) { | ||||||
|             string html = ""; |             return new MergedDocument(docs); | ||||||
|             var styles = new List<string>(); |  | ||||||
|             foreach (var d in docs) { |  | ||||||
|                 var h = await d.Render(); |  | ||||||
|                 var s = HtmlStyleRegex.Matches(h).Select(m => m.Value).ToList(); |  | ||||||
|                 var l = HtmlLinkRegex.Matches(h).Select(m => m.Value).ToList(); |  | ||||||
|                 if (s.All(styles.Contains)) { |  | ||||||
|                     h = HtmlStyleRegex.Replace(h, ""); |  | ||||||
|                 } else { |  | ||||||
|                     styles.AddRange(s); |  | ||||||
|                 } |  | ||||||
|                 if (l.All(styles.Contains)) { |  | ||||||
|                     h = HtmlLinkRegex.Replace(h, ""); |  | ||||||
|                 } else { |  | ||||||
|                     styles.AddRange(l); |  | ||||||
|                 } |  | ||||||
|                 html += h; |  | ||||||
|             } |  | ||||||
|             html = DocumentHeaderRegex.Replace(html, "<div class='document-break'/>"); |  | ||||||
|             return new InternalDocument("Mehrere Dokumente") { |  | ||||||
|                 _renderedHtml = html, |  | ||||||
|             }; |  | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         private async Task<string> Render() { |         private async Task<string> Render() { | ||||||
|             if (_renderedHtml != null) |  | ||||||
|                 return _renderedHtml; |  | ||||||
|             string name; |             string name; | ||||||
|             if (this is BusinessLetter) { |             if (this is BusinessLetter) { | ||||||
|                 name = "BusinessLetter"; |                 name = "BusinessLetter"; | ||||||
| @@ -100,6 +65,8 @@ namespace Elwig.Documents { | |||||||
|                 name = "DeliveryJournal"; |                 name = "DeliveryJournal"; | ||||||
|             } else if (this is Letterhead) { |             } else if (this is Letterhead) { | ||||||
|                 name = "Letterhead"; |                 name = "Letterhead"; | ||||||
|  |             } else if (this is DeliveryConfirmation) { | ||||||
|  |                 name = "DeliveryConfirmation"; | ||||||
|             } else { |             } else { | ||||||
|                 throw new InvalidOperationException("Invalid document object"); |                 throw new InvalidOperationException("Invalid document object"); | ||||||
|             } |             } | ||||||
| @@ -107,17 +74,39 @@ namespace Elwig.Documents { | |||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         private async Task<string> Render(string name) { |         private async Task<string> Render(string name) { | ||||||
|             _renderedHtml = await Html.CompileRenderAsync(name, this); |             return await Html.CompileRenderAsync(name, this); ; | ||||||
|             return _renderedHtml; |  | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         public async Task Generate() { |         public async Task Generate(IProgress<double>? progress = null) { | ||||||
|             var pdf = new TempFile("pdf"); |             progress?.Report(0.0); | ||||||
|             using (var tmpHtml = new TempFile("html")) { |             if (this is MergedDocument m) { | ||||||
|                 await File.WriteAllTextAsync(tmpHtml.FilePath, await Render(), Utils.UTF8); |                 var pdf = new TempFile("pdf"); | ||||||
|                 await Pdf.Convert(tmpHtml.FilePath, pdf.FilePath); |                 var tmpHtmls = new List<TempFile>(); | ||||||
|  |                 var n = m.Documents.Count(); | ||||||
|  |                 int i = 0; | ||||||
|  |                 foreach (var doc in m.Documents) { | ||||||
|  |                     var tmpHtml = new TempFile("html"); | ||||||
|  |                     await File.WriteAllTextAsync(tmpHtml.FilePath, await doc.Render(), Utils.UTF8); | ||||||
|  |                     tmpHtmls.Add(tmpHtml); | ||||||
|  |                     i++; | ||||||
|  |                     progress?.Report(25.0 * i / n); | ||||||
|  |                 } | ||||||
|  |                 progress?.Report(25.0); | ||||||
|  |                 await Pdf.Convert(tmpHtmls.Select(f => f.FileName), pdf.FileName, DoubleSided, new Progress<double>(v => progress?.Report(25.0 + v * 0.75))); | ||||||
|  |                 foreach (var tmp in tmpHtmls) { | ||||||
|  |                     tmp.Dispose(); | ||||||
|  |                 } | ||||||
|  |                 _pdfFile = pdf; | ||||||
|  |             } else { | ||||||
|  |                 var pdf = new TempFile("pdf"); | ||||||
|  |                 using (var tmpHtml = new TempFile("html")) { | ||||||
|  |                     await File.WriteAllTextAsync(tmpHtml.FilePath, await Render(), Utils.UTF8); | ||||||
|  |                     progress?.Report(50.0); | ||||||
|  |                     await Pdf.Convert(tmpHtml.FilePath, pdf.FilePath, DoubleSided); | ||||||
|  |                 } | ||||||
|  |                 _pdfFile = pdf; | ||||||
|             } |             } | ||||||
|             _pdfFile = pdf; |             progress?.Report(100.0); | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         public void SaveTo(string pdfPath) { |         public void SaveTo(string pdfPath) { | ||||||
| @@ -132,11 +121,14 @@ namespace Elwig.Documents { | |||||||
| 
 | 
 | ||||||
|         public void Show() { |         public void Show() { | ||||||
|             if (_pdfFile == null) throw new InvalidOperationException("Pdf file has not been generated yet"); |             if (_pdfFile == null) throw new InvalidOperationException("Pdf file has not been generated yet"); | ||||||
|             Pdf.Show(_pdfFile.NewReference(), Title); |             Pdf.Show(_pdfFile.NewReference(), Title + (this is BusinessDocument b ? $" - {b.Member.Name}" : "")); | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         private class InternalDocument : Document { |         private class MergedDocument : Document { | ||||||
|             public InternalDocument(string title) : base(title) { } |             public IEnumerable<Document> Documents; | ||||||
|  |             public MergedDocument(IEnumerable<Document> docs) : base("Mehrere Dokumente") { | ||||||
|  |                 Documents = docs; | ||||||
|  |             } | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
| @@ -7,15 +7,18 @@ | |||||||
|     <title>@Model.Title</title> |     <title>@Model.Title</title> | ||||||
|     <meta name="author" value="@Model.Author"/> |     <meta name="author" value="@Model.Author"/> | ||||||
|     <meta charset="UTF-8"/> |     <meta charset="UTF-8"/> | ||||||
|     <script> |     <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\Document.css"/> | ||||||
|         const heightA4 = 297, widhtA4 = 210, heightFooter = 35, heightHeader = 25; |     <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\Document.Page.css"/> | ||||||
|         const heightMain = heightA4 - heightFooter - heightHeader; |     @if (Model.DoubleSided) { | ||||||
|         function px2mm(px1, px2) { |         <style> | ||||||
|             return (px2 - px1 + 1) * 2.54 / 96 * window.devicePixelRatio * 10; |             @@page :left { | ||||||
|         } |                 margin: 25mm 25mm 35mm 20mm; | ||||||
|     </script> |                 @@bottom-center { | ||||||
|     <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\style.css"/> |                     content: element(page-footer-left); | ||||||
|     <link rel="stylesheet" href="file:///@Raw(Model.DataPath)\resources\style-page.css"/> |                 } | ||||||
|  |             } | ||||||
|  |         </style> | ||||||
|  |     } | ||||||
| </head> | </head> | ||||||
| <body> | <body> | ||||||
|     @if (Model.ShowFoldMarks) { |     @if (Model.ShowFoldMarks) { | ||||||
| @@ -34,6 +37,16 @@ | |||||||
|         </div> |         </div> | ||||||
|         <footer>@Raw(Model.Footer)</footer> |         <footer>@Raw(Model.Footer)</footer> | ||||||
|     </div> |     </div> | ||||||
|  |     @if (Model.DoubleSided) { | ||||||
|  |         <div class="footer-wrapper left"> | ||||||
|  |             <div class="pre-footer"> | ||||||
|  |                 <span class="page"></span> | ||||||
|  |                 <span class="doc-id">@Model.DocumentId</span> | ||||||
|  |                 <span class="date">@($"{Model.Date:dddd, d. MMMM yyyy}")</span> | ||||||
|  |             </div> | ||||||
|  |             <footer>@Raw(Model.Footer)</footer> | ||||||
|  |         </div> | ||||||
|  |     } | ||||||
|     <header>@Raw(Model.Header)</header> |     <header>@Raw(Model.Header)</header> | ||||||
|     <div class="spacing"></div> |     <div class="spacing"></div> | ||||||
|     <div class="main-wrapper"> |     <div class="main-wrapper"> | ||||||
|   | |||||||
| @@ -40,18 +40,29 @@ header { | |||||||
| 
 | 
 | ||||||
| header .name { | header .name { | ||||||
|     font-size: 18pt; |     font-size: 18pt; | ||||||
|     margin-top: 10mm; |     margin-top: 8mm; | ||||||
|     font-weight: bold; |     font-weight: bold; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| header .suffix { | header .suffix { | ||||||
|     font-size: 12pt; |     font-size: 14pt; | ||||||
|     font-weight: bold; |     font-weight: bold; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | header .type { | ||||||
|  |     font-size: 12pt; | ||||||
|  |     font-weight: normal; | ||||||
|  | } | ||||||
|  | 
 | ||||||
| .footer-wrapper { | .footer-wrapper { | ||||||
|     position: running(page-footer); |     position: running(page-footer); | ||||||
|     width: 165mm; |     width: 165mm; | ||||||
|  |     /* for some reason the position without the following statement changes on the second page */ | ||||||
|  |     border: 0.5pt solid #00000000; | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | .footer-wrapper.left { | ||||||
|  |     position: running(page-footer-left); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| .pre-footer { | .pre-footer { | ||||||
| @@ -64,16 +75,16 @@ header .suffix { | |||||||
|     width: 33%; |     width: 33%; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| .pre-footer .date { | .pre-footer > *:first-child { | ||||||
|     text-align: left; |     text-align: left; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| .pre-footer .doc-id { | .pre-footer > *:nth-child(2) { | ||||||
|     text-align: center; |     text-align: center; | ||||||
|     font-style: italic; |     font-style: italic; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| .pre-footer .page { | .pre-footer > *:last-child { | ||||||
|     text-align: right; |     text-align: right; | ||||||
|     float: right; |     float: right; | ||||||
| } | } | ||||||
| @@ -1,68 +0,0 @@ | |||||||
| using System.Threading.Tasks; |  | ||||||
| using Elwig.Helpers; |  | ||||||
| using Elwig.Windows; |  | ||||||
| using System.Diagnostics; |  | ||||||
| using Balbarak.WeasyPrint; |  | ||||||
| using System; |  | ||||||
| using System.IO; |  | ||||||
|  |  | ||||||
| namespace Elwig.Documents { |  | ||||||
|     public static class Pdf { |  | ||||||
|  |  | ||||||
|         private static readonly string PdfToPrinter = App.ExePath + "PDFtoPrinter.exe"; |  | ||||||
|         private static readonly FilesManager WeasyPrintManager = new(); |  | ||||||
|         private static string? WeasyPrintPython = null; |  | ||||||
|         private static string? WeasyPrintDir => WeasyPrintManager.FolderPath; |  | ||||||
|         public static bool IsReady => WeasyPrintPython != null && WeasyPrintDir != null; |  | ||||||
|  |  | ||||||
|         public static async Task Init(Action evtHandler) { |  | ||||||
|             if (!WeasyPrintManager.IsFilesExsited()) { |  | ||||||
|                 await WeasyPrintManager.InitFilesAsync(); |  | ||||||
|             } |  | ||||||
|             WeasyPrintPython = Path.Combine(WeasyPrintManager.FolderPath, "python.exe"); |  | ||||||
|             evtHandler(); |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         public static async Task Convert(string htmlPath, string pdfPath) { |  | ||||||
|             var p = new Process() { StartInfo = new() { |  | ||||||
|                 FileName = WeasyPrintPython, |  | ||||||
|                 CreateNoWindow = true, |  | ||||||
|                 WorkingDirectory = WeasyPrintDir, |  | ||||||
|                 RedirectStandardError = true, |  | ||||||
|             } }; |  | ||||||
|             p.StartInfo.EnvironmentVariables["PATH"] = "Scripts;gtk3;" + Environment.GetEnvironmentVariable("PATH"); |  | ||||||
|             p.StartInfo.ArgumentList.Add("scripts/weasyprint.exe"); |  | ||||||
|             p.StartInfo.ArgumentList.Add("-e"); |  | ||||||
|             p.StartInfo.ArgumentList.Add("utf8"); |  | ||||||
|             p.StartInfo.ArgumentList.Add(htmlPath); |  | ||||||
|             p.StartInfo.ArgumentList.Add(pdfPath); |  | ||||||
|             p.Start(); |  | ||||||
|             await p.WaitForExitAsync(); |  | ||||||
|             var stderr = await p.StandardError.ReadToEndAsync(); |  | ||||||
|             if (p.ExitCode != 0) throw new Exception(stderr); |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         public static void Show(TempFile file, string title) { |  | ||||||
|             App.MainDispatcher.BeginInvoke(() => { |  | ||||||
|                 var w = new DocumentViewerWindow(title, file); |  | ||||||
|                 w.Show(); |  | ||||||
|             }); |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         public static void Show(string path, string title) { |  | ||||||
|             App.MainDispatcher.BeginInvoke(() => { |  | ||||||
|                 var w = new DocumentViewerWindow(title, path); |  | ||||||
|                 w.Show(); |  | ||||||
|             }); |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         public static async Task Print(string path, int copies = 1) { |  | ||||||
|             var p = new Process() { StartInfo = new() { FileName = PdfToPrinter } }; |  | ||||||
|             p.StartInfo.ArgumentList.Add(path); |  | ||||||
|             p.StartInfo.ArgumentList.Add("/s"); |  | ||||||
|             p.StartInfo.ArgumentList.Add($"copies={copies}"); |  | ||||||
|             p.Start(); |  | ||||||
|             await p.WaitForExitAsync(); |  | ||||||
|         } |  | ||||||
|     } |  | ||||||
| } |  | ||||||
| @@ -6,36 +6,32 @@ | |||||||
|     <Nullable>enable</Nullable> |     <Nullable>enable</Nullable> | ||||||
|     <UseWPF>true</UseWPF> |     <UseWPF>true</UseWPF> | ||||||
|     <PreserveCompilationContext>true</PreserveCompilationContext> |     <PreserveCompilationContext>true</PreserveCompilationContext> | ||||||
|     <ApplicationIcon>elwig.ico</ApplicationIcon> |     <ApplicationIcon>Resources\Images\Elwig.ico</ApplicationIcon> | ||||||
|     <Version>0.3.6</Version> |     <Version>0.4.3</Version> | ||||||
|     <SatelliteResourceLanguages>de-AT</SatelliteResourceLanguages> |     <SatelliteResourceLanguages>de-AT</SatelliteResourceLanguages> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|  |  | ||||||
|   <ItemGroup> |   <ItemGroup> | ||||||
|     <Content Include="elwig.ico" /> |     <Resource Include="Resources\Images\Elwig.png" /> | ||||||
|   </ItemGroup> |     <Content Include="Resources\Images\Elwig.ico" /> | ||||||
|  |  | ||||||
|   <ItemGroup> |  | ||||||
|     <PackageReference Include="Balbarak.WeasyPrint" Version="2.0.2" /> |  | ||||||
|     <PackageReference Include="Extended.Wpf.Toolkit" Version="4.5.1" /> |  | ||||||
|     <PackageReference Include="ini-parser" Version="2.5.2" /> |  | ||||||
|     <PackageReference Include="LinqKit" Version="1.2.4" /> |  | ||||||
|     <PackageReference Include="Microsoft.AspNetCore.Razor.Language" Version="6.0.22" /> |  | ||||||
|     <PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="7.0.11" /> |  | ||||||
|     <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.11" /> |  | ||||||
|     <PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1938.49" /> |  | ||||||
|     <PackageReference Include="RazorLight" Version="2.3.1" /> |  | ||||||
|     <PackageReference Include="ScottPlot.WPF" Version="4.1.67" /> |  | ||||||
|     <PackageReference Include="System.IO.Ports" Version="7.0.0" /> |  | ||||||
|     <PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" /> |  | ||||||
|   </ItemGroup> |  | ||||||
|  |  | ||||||
|   <ItemGroup> |  | ||||||
|     <Resource Include="elwig.png" /> |  | ||||||
|   </ItemGroup> |   </ItemGroup> | ||||||
|  |  | ||||||
|   <Target Name="PreBuild" BeforeTargets="PreBuildEvent"> |   <Target Name="PreBuild" BeforeTargets="PreBuildEvent"> | ||||||
|     <Exec Command="call fetch-resources.bat" /> |     <Exec Command="call fetch-resources.bat" /> | ||||||
|   </Target> |   </Target> | ||||||
|  |  | ||||||
|  |   <ItemGroup> | ||||||
|  |     <PackageReference Include="Extended.Wpf.Toolkit" Version="4.5.1" /> | ||||||
|  |     <PackageReference Include="ini-parser" Version="2.5.2" /> | ||||||
|  |     <PackageReference Include="LinqKit" Version="1.2.4" /> | ||||||
|  |     <PackageReference Include="Microsoft.AspNetCore.Razor.Language" Version="6.0.24" /> | ||||||
|  |     <PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="7.0.13" /> | ||||||
|  |     <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.13" /> | ||||||
|  |     <PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2088.41" /> | ||||||
|  |     <PackageReference Include="RazorLight" Version="2.3.1" /> | ||||||
|  |     <PackageReference Include="ScottPlot.WPF" Version="4.1.68" /> | ||||||
|  |     <PackageReference Include="System.IO.Ports" Version="7.0.0" /> | ||||||
|  |     <PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" /> | ||||||
|  |   </ItemGroup> | ||||||
|  |  | ||||||
| </Project> | </Project> | ||||||
|   | |||||||
| @@ -40,7 +40,6 @@ namespace Elwig.Helpers { | |||||||
|         public DbSet<Modifier> Modifiers { get; private set; } |         public DbSet<Modifier> Modifiers { get; private set; } | ||||||
|         public DbSet<Delivery> Deliveries { get; private set; } |         public DbSet<Delivery> Deliveries { get; private set; } | ||||||
|         public DbSet<DeliveryPart> DeliveryParts { get; private set; } |         public DbSet<DeliveryPart> DeliveryParts { get; private set; } | ||||||
|         public DbSet<DeliveryPartAttr> DeliveryPartAttributes { get; private set; } |  | ||||||
|         public DbSet<DeliveryPartModifier> DeliveryPartModifiers { get; private set; } |         public DbSet<DeliveryPartModifier> DeliveryPartModifiers { get; private set; } | ||||||
|         public DbSet<PaymentVar> PaymentVariants { get; private set; } |         public DbSet<PaymentVar> PaymentVariants { get; private set; } | ||||||
|         public DbSet<PaymentMember> MemberPayments { get; private set; } |         public DbSet<PaymentMember> MemberPayments { get; private set; } | ||||||
| @@ -53,6 +52,10 @@ namespace Elwig.Helpers { | |||||||
|  |  | ||||||
|         public static string ConnectionString => $"Data Source=\"{App.Config.DatabaseFile}\"; Foreign Keys=True; Mode=ReadWrite; Cache=Default"; |         public static string ConnectionString => $"Data Source=\"{App.Config.DatabaseFile}\"; Foreign Keys=True; Mode=ReadWrite; Cache=Default"; | ||||||
|  |  | ||||||
|  |         private readonly Dictionary<int, Dictionary<int, Dictionary<string, (int, int)>>> _memberRightsAndObligations = new(); | ||||||
|  |         private readonly Dictionary<int, Dictionary<int, Dictionary<string, int>>> _memberDeliveryBins = new(); | ||||||
|  |         private readonly Dictionary<int, Dictionary<int, Dictionary<string, int>>> _memberPaymentBins = new(); | ||||||
|  |  | ||||||
|         public AppDbContext() { |         public AppDbContext() { | ||||||
|             if (App.Config.DatabaseLog != null) { |             if (App.Config.DatabaseLog != null) { | ||||||
|                 try { |                 try { | ||||||
| @@ -162,28 +165,6 @@ namespace Elwig.Helpers { | |||||||
|                 .LastOrDefaultAsync(); |                 .LastOrDefaultAsync(); | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         public async Task UpdateDeliveryPartAttributes(DeliveryPart part, IEnumerable<WineAttr> attributes) { |  | ||||||
|             foreach (var a in WineAttributes) { |  | ||||||
|                 var attr = part.PartAttributes.Where(pa => pa.AttrId == a.AttrId).FirstOrDefault(); |  | ||||||
|                 if (attributes.Contains(a)) { |  | ||||||
|                     DeliveryPartAttr dpa = attr ?? this.CreateProxy<DeliveryPartAttr>(); |  | ||||||
|                     dpa.Year = part.Year; |  | ||||||
|                     dpa.DId = part.DId; |  | ||||||
|                     dpa.DPNr = part.DPNr; |  | ||||||
|                     dpa.AttrId = a.AttrId; |  | ||||||
|                     if (attr == null) { |  | ||||||
|                         await AddAsync(dpa); |  | ||||||
|                     } else { |  | ||||||
|                         Update(dpa); |  | ||||||
|                     } |  | ||||||
|                 } else { |  | ||||||
|                     if (attr != null) { |  | ||||||
|                         Remove(attr); |  | ||||||
|                     } |  | ||||||
|                 } |  | ||||||
|             } |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         public async Task UpdateDeliveryPartModifiers(DeliveryPart part, IEnumerable<Modifier> modifiers) { |         public async Task UpdateDeliveryPartModifiers(DeliveryPart part, IEnumerable<Modifier> modifiers) { | ||||||
|             foreach (var m in Modifiers.Where(m => m.Year == part.Year)) { |             foreach (var m in Modifiers.Where(m => m.Year == part.Year)) { | ||||||
|                 var mod = part.PartModifiers.Where(pa => pa.ModId == m.ModId).FirstOrDefault(); |                 var mod = part.PartModifiers.Where(pa => pa.ModId == m.ModId).FirstOrDefault(); | ||||||
| @@ -206,26 +187,101 @@ namespace Elwig.Helpers { | |||||||
|             } |             } | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         public async Task<IEnumerable<(string, string, int, int, int)>> GetMemberBuckets(Member m, int year) { |         private async Task FetchMemberRightsAndObligations(int year, SqliteConnection? cnx = null) { | ||||||
|             using var cnx = await ConnectAsync(); |             var ownCnx = cnx == null; | ||||||
|             var (rights, obligations) = await Billing.Billing.GetMemberRightsObligations(m.MgNr, year, cnx); |             cnx ??= await ConnectAsync(); | ||||||
|             var buckets = await Billing.Billing.GetMemberBucketWeights(m.MgNr, year, cnx); |             var bins = new Dictionary<int, Dictionary<string, (int, int)>>(); | ||||||
|  |             using (var cmd = cnx.CreateCommand()) { | ||||||
|             var list = new List<(string, string, int, int, int)>(); |                 cmd.CommandText = $"SELECT mgnr, bucket, min_kg, max_kg FROM v_area_commitment_bucket WHERE year = {year}"; | ||||||
|             foreach (var id in rights.Keys.Union(obligations.Keys).Union(buckets.Keys)) { |                 using var reader = await cmd.ExecuteReaderAsync(); | ||||||
|                 var s = await WineVarieties.FindAsync(id[..2]); |                 while (await reader.ReadAsync()) { | ||||||
|                 var attrIds = id[2..]; |                     var mgnr = reader.GetInt32(0); | ||||||
|                 var a = await WineAttributes.Where(a => attrIds.Contains(a.AttrId)).ToListAsync(); |                     var vtrgid = reader.GetString(1); | ||||||
|                 var name = (s?.Name ?? "") + (a.Count > 0 ? $" ({string.Join(" / ", a.Select(a => a.Name))})" : ""); |                     if (!bins.ContainsKey(mgnr)) bins[mgnr] = new(); | ||||||
|                 list.Add(( |                     bins[mgnr][vtrgid] = (reader.GetInt32(3), reader.GetInt32(2)); | ||||||
|                     id, name, |                 } | ||||||
|                     rights.TryGetValue(id, out var v1) ? v1 : 0, |  | ||||||
|                     obligations.TryGetValue(id, out var v2) ? v2 : 0, |  | ||||||
|                     buckets.TryGetValue(id, out var v3) ? v3 : 0 |  | ||||||
|                 )); |  | ||||||
|             } |             } | ||||||
|  |             if (ownCnx) await cnx.DisposeAsync(); | ||||||
|  |             _memberRightsAndObligations[year] = bins; | ||||||
|  |         } | ||||||
|  |  | ||||||
|             return list; |         private async Task FetchMemberDeliveryBins(int year, SqliteConnection? cnx = null) { | ||||||
|  |             var ownCnx = cnx == null; | ||||||
|  |             cnx ??= await ConnectAsync(); | ||||||
|  |             var bins = new Dictionary<int, Dictionary<string, int>>(); | ||||||
|  |             using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                 cmd.CommandText = $"SELECT mgnr, bucket, weight FROM v_delivery_bucket WHERE year = {year}"; | ||||||
|  |                 using var reader = await cmd.ExecuteReaderAsync(); | ||||||
|  |                 while (await reader.ReadAsync()) { | ||||||
|  |                     var mgnr = reader.GetInt32(0); | ||||||
|  |                     var bin = reader.GetString(1); | ||||||
|  |                     if (!bins.ContainsKey(mgnr)) bins[mgnr] = new(); | ||||||
|  |                     bins[mgnr][bin] = reader.GetInt32(2); | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |             if (ownCnx) await cnx.DisposeAsync(); | ||||||
|  |             _memberDeliveryBins[year] = bins; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private async Task FetchMemberPaymentBins(int year, SqliteConnection? cnx = null) { | ||||||
|  |             var ownCnx = cnx == null; | ||||||
|  |             cnx ??= await ConnectAsync(); | ||||||
|  |             var bins = new Dictionary<int, Dictionary<string, int>>(); | ||||||
|  |             using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                 cmd.CommandText = $"SELECT mgnr, bucket, weight FROM v_payment_bucket WHERE year = {year}"; | ||||||
|  |                 using var reader = await cmd.ExecuteReaderAsync(); | ||||||
|  |                 while (await reader.ReadAsync()) { | ||||||
|  |                     var mgnr = reader.GetInt32(0); | ||||||
|  |                     var bin = reader.GetString(1); | ||||||
|  |                     if (!bins.ContainsKey(mgnr)) bins[mgnr] = new(); | ||||||
|  |                     bins[mgnr][bin] = reader.GetInt32(2); | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |             if (ownCnx) await cnx.DisposeAsync(); | ||||||
|  |             _memberPaymentBins[year] = bins; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public async Task<Dictionary<string, (int, int)>> GetMemberRightsAndObligations(int year, int mgnr, SqliteConnection? cnx = null) { | ||||||
|  |             if (!_memberRightsAndObligations.ContainsKey(year)) | ||||||
|  |                 await FetchMemberRightsAndObligations(year, cnx); | ||||||
|  |             return _memberRightsAndObligations[year].GetValueOrDefault(mgnr, new()); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public async Task<Dictionary<string, int>> GetMemberDeliveryBins(int year, int mgnr, SqliteConnection? cnx = null) { | ||||||
|  |             if (!_memberDeliveryBins.ContainsKey(year)) | ||||||
|  |                 await FetchMemberDeliveryBins(year, cnx); | ||||||
|  |             return _memberDeliveryBins[year].GetValueOrDefault(mgnr, new()); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public async Task<Dictionary<string, int>> GetMemberPaymentBins(int year, int mgnr, SqliteConnection? cnx = null) { | ||||||
|  |             if (!_memberPaymentBins.ContainsKey(year)) | ||||||
|  |                 await FetchMemberPaymentBins(year, cnx); | ||||||
|  |             return _memberPaymentBins[year].GetValueOrDefault(mgnr, new()); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public async Task<Dictionary<string, (string, int, int, int, int)>> GetMemberBins(int year, int mgnr, SqliteConnection? cnx = null) { | ||||||
|  |             var ownCnx = cnx == null; | ||||||
|  |             cnx ??= await ConnectAsync(); | ||||||
|  |             var rightsAndObligations = await GetMemberRightsAndObligations(year, mgnr, cnx); | ||||||
|  |             var deliveryBins = await GetMemberDeliveryBins(year, mgnr, cnx); | ||||||
|  |             var paymentBins = await GetMemberPaymentBins(year, mgnr, cnx); | ||||||
|  |             if (ownCnx) await cnx.DisposeAsync(); | ||||||
|  |  | ||||||
|  |             var bins = new Dictionary<string, (string, int, int, int, int)>(); | ||||||
|  |             foreach (var id in rightsAndObligations.Keys.Union(deliveryBins.Keys).Union(paymentBins.Keys)) { | ||||||
|  |                 var variety = await WineVarieties.FindAsync(id[..2]); | ||||||
|  |                 var attrIds = id[2..]; | ||||||
|  |                 var attrs = await WineAttributes.Where(a => attrIds.Contains(a.AttrId)).ToListAsync(); | ||||||
|  |                 var name = (variety?.Name ?? "") + (attrIds == "_" ? " (kein Qual.Wein)" : attrs.Count > 0 ? $" ({string.Join(" / ", attrs.Select(a => a.Name))})" : ""); | ||||||
|  |                 bins[id] = ( | ||||||
|  |                     name, | ||||||
|  |                     rightsAndObligations.GetValueOrDefault(id).Item1, | ||||||
|  |                     rightsAndObligations.GetValueOrDefault(id).Item2, | ||||||
|  |                     deliveryBins.GetValueOrDefault(id), | ||||||
|  |                     paymentBins.GetValueOrDefault(id) | ||||||
|  |                 ); | ||||||
|  |             } | ||||||
|  |             return bins; | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -4,11 +4,11 @@ using System; | |||||||
| namespace Elwig.Helpers { | namespace Elwig.Helpers { | ||||||
|     public static class AppDbUpdater { |     public static class AppDbUpdater { | ||||||
|  |  | ||||||
|         public static readonly int RequiredSchemaVersion = 2; |         public static readonly int RequiredSchemaVersion = 6; | ||||||
|  |  | ||||||
|         private static int _versionOffset = 0; |         private static int _versionOffset = 0; | ||||||
|         private static readonly Action<SqliteConnection>[] _updaters = new[] { |         private static readonly Action<SqliteConnection>[] _updaters = new[] { | ||||||
|             UpdateDbSchema_1_To_2, UpdateDbSchema_2_To_3 |             UpdateDbSchema_1_To_2, UpdateDbSchema_2_To_3, UpdateDbSchema_3_To_4, UpdateDbSchema_4_To_5, UpdateDbSchema_5_To_6 | ||||||
|         }; |         }; | ||||||
|  |  | ||||||
|         private static void ExecuteNonQuery(SqliteConnection cnx, string sql) { |         private static void ExecuteNonQuery(SqliteConnection cnx, string sql) { | ||||||
| @@ -65,11 +65,14 @@ namespace Elwig.Helpers { | |||||||
|             } |             } | ||||||
|  |  | ||||||
|             ExecuteNonQuery(cnx, "PRAGMA locking_mode = EXCLUSIVE"); |             ExecuteNonQuery(cnx, "PRAGMA locking_mode = EXCLUSIVE"); | ||||||
|  |             ExecuteNonQuery(cnx, "PRAGMA foreign_keys = OFF"); | ||||||
|             ExecuteNonQuery(cnx, "BEGIN EXCLUSIVE"); |             ExecuteNonQuery(cnx, "BEGIN EXCLUSIVE"); | ||||||
|             for (int i = fromVersion; i < toVersion; i++) { |             for (int i = fromVersion; i < toVersion; i++) { | ||||||
|                 _updaters[i - 1](cnx); |                 _updaters[i - 1](cnx); | ||||||
|             } |             } | ||||||
|  |             ExecuteNonQuery(cnx, "PRAGMA foreign_key_check"); | ||||||
|             ExecuteNonQuery(cnx, "COMMIT"); |             ExecuteNonQuery(cnx, "COMMIT"); | ||||||
|  |             ExecuteNonQuery(cnx, "PRAGMA foreign_keys = ON"); | ||||||
|             ExecuteNonQuery(cnx, "VACUUM"); |             ExecuteNonQuery(cnx, "VACUUM"); | ||||||
|             ExecuteNonQuery(cnx, $"PRAGMA schema_version = {toVersion * 100 + _versionOffset}"); |             ExecuteNonQuery(cnx, $"PRAGMA schema_version = {toVersion * 100 + _versionOffset}"); | ||||||
|         } |         } | ||||||
| @@ -80,6 +83,414 @@ namespace Elwig.Helpers { | |||||||
|             ExecuteNonQuery(cnx, "ALTER TABLE delivery_part ADD COLUMN weighing_reason TEXT CHECK(NOT (manual_weighing = FALSE AND weighing_reason IS NOT NULL))"); |             ExecuteNonQuery(cnx, "ALTER TABLE delivery_part ADD COLUMN weighing_reason TEXT CHECK(NOT (manual_weighing = FALSE AND weighing_reason IS NOT NULL))"); | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         private static void UpdateDbSchema_2_To_3(SqliteConnection cnx) { } |         private static void UpdateDbSchema_2_To_3(SqliteConnection cnx) { | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE TABLE delivery_part_bin ( | ||||||
|  |                     year     INTEGER NOT NULL, | ||||||
|  |                     did      INTEGER NOT NULL, | ||||||
|  |                     dpnr     INTEGER NOT NULL, | ||||||
|  |                     binnr    INTEGER NOT NULL, | ||||||
|  |  | ||||||
|  |                     discr    TEXT    NOT NULL, | ||||||
|  |                     value    INTEGER NOT NULL, | ||||||
|  |  | ||||||
|  |                     CONSTRAINT pk_delivery_part_bin PRIMARY KEY (year, did, dpnr, binnr), | ||||||
|  |                     CONSTRAINT fk_delivery_part_bin_delivery_part FOREIGN KEY (year, did, dpnr) REFERENCES delivery_part (year, did, dpnr) | ||||||
|  |                         ON UPDATE CASCADE | ||||||
|  |                         ON DELETE CASCADE | ||||||
|  |                 ) STRICT; | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 INSERT INTO delivery_part_bin (year, did, dpnr, binnr, discr, value) | ||||||
|  |                 SELECT year, did, dpnr, 0, '_', bucket_2 + bucket_3 | ||||||
|  |                 FROM payment_delivery_part | ||||||
|  |                 WHERE COALESCE(bucket_1, bucket_2, bucket_3, bucket_4, bucket_5, bucket_6, bucket_7, bucket_8, bucket_9) IS NOT NULL | ||||||
|  |                 ON CONFLICT DO NOTHING; | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 INSERT INTO delivery_part_bin (year, did, dpnr, binnr, discr, value) | ||||||
|  |                 SELECT d.year, d.did, d.dpnr, 1, COALESCE(attributes, ''), bucket_1 | ||||||
|  |                 FROM payment_delivery_part p | ||||||
|  |                     JOIN v_delivery d ON (d.year, d.did, d.dpnr) = (p.year, p.did, p.dpnr) | ||||||
|  |                 WHERE COALESCE(bucket_1, bucket_2, bucket_3, bucket_4, bucket_5, bucket_6, bucket_7, bucket_8, bucket_9) IS NOT NULL | ||||||
|  |                 ON CONFLICT DO NOTHING; | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_delivery_part DROP COLUMN bucket_1"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_delivery_part DROP COLUMN bucket_2"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_delivery_part DROP COLUMN bucket_3"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_delivery_part DROP COLUMN bucket_4"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_delivery_part DROP COLUMN bucket_5"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_delivery_part DROP COLUMN bucket_6"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_delivery_part DROP COLUMN bucket_7"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_delivery_part DROP COLUMN bucket_8"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_delivery_part DROP COLUMN bucket_9"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_variant DROP COLUMN bucket_1_name"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_variant DROP COLUMN bucket_2_name"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_variant DROP COLUMN bucket_3_name"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_variant DROP COLUMN bucket_4_name"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_variant DROP COLUMN bucket_5_name"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_variant DROP COLUMN bucket_6_name"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_variant DROP COLUMN bucket_7_name"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_variant DROP COLUMN bucket_8_name"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE payment_variant DROP COLUMN bucket_9_name"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE delivery_part ADD COLUMN gebunden INTEGER CHECK (gebunden IN (TRUE, FALSE)) DEFAULT NULL"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW v_delivery"); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_delivery AS | ||||||
|  |                 SELECT s.*, GROUP_CONCAT(o.modid) AS modifiers | ||||||
|  |                 FROM (SELECT p.year, p.did, p.dpnr, | ||||||
|  |                              d.date, d.time, d.zwstid, d.lnr, d.lsnr, | ||||||
|  |                              m.mgnr, m.family_name, m.given_name, | ||||||
|  |                              p.sortid, p.weight, p.kmw, ROUND(p.kmw * (4.54 + 0.022 * p.kmw), 0) AS oe, p.qualid, p.hkid, p.kgnr, p.rdnr, | ||||||
|  |                              p.gerebelt, p.gebunden, | ||||||
|  |                              p.qualid IN (SELECT l.qualid FROM wine_quality_level l WHERE NOT l.predicate AND (p.kmw >= l.min_kmw OR l.min_kmw IS NULL) ORDER BY l.min_kmw DESC LIMIT 1,100) AS abgewertet, | ||||||
|  |                              p.qualid NOT IN ('WEI', 'RSW', 'LDW') AS min_quw, | ||||||
|  |                              GROUP_CONCAT(a.attrid) AS attributes, | ||||||
|  |                              COALESCE(SUM(a.fill_lower_bins), 0) AS attribute_prio, | ||||||
|  |                              d.comment, p.comment AS part_comment | ||||||
|  |                     FROM delivery_part p | ||||||
|  |                         JOIN delivery d ON (d.year, d.did) = (p.year, p.did) | ||||||
|  |                         JOIN member m ON m.mgnr = d.mgnr | ||||||
|  |                         LEFT JOIN delivery_part_attribute pa ON (pa.year, pa.did, pa.dpnr) = (p.year, p.did, p.dpnr) | ||||||
|  |                         LEFT JOIN wine_attribute a ON a.attrid = pa.attrid | ||||||
|  |                     GROUP BY p.year, p.did, p.dpnr | ||||||
|  |                     ORDER BY p.year, p.did, p.dpnr, a.attrid) s | ||||||
|  |                 LEFT JOIN delivery_part_modifier o ON (o.year, o.did, o.dpnr) = (s.year, s.did, s.dpnr) | ||||||
|  |                 GROUP BY s.year, s.lsnr, s.dpnr | ||||||
|  |                 ORDER BY s.year, s.lsnr, s.dpnr, o.modid; | ||||||
|  |                 """); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW v_bucket"); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_delivery_bin AS | ||||||
|  |                 SELECT year, mgnr, | ||||||
|  |                        sortid || IIF(min_quw, REPLACE(COALESCE(attributes, ''), ',', ''), '_') AS bin, | ||||||
|  |                        SUM(weight) AS weight | ||||||
|  |                 FROM v_delivery | ||||||
|  |                 GROUP BY year, mgnr, bin | ||||||
|  |                 ORDER BY year, mgnr, LENGTH(bin) DESC, bin; | ||||||
|  |                 """); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_payment_bin AS | ||||||
|  |                 SELECT d.year, d.mgnr, | ||||||
|  |                        sortid || discr AS bin, | ||||||
|  |                        SUM(value) AS weight | ||||||
|  |                 FROM v_delivery d | ||||||
|  |                     JOIN delivery_part_bin b ON (b.year, b.did, b.dpnr) = (d.year, d.did, d.dpnr) | ||||||
|  |                 GROUP BY d.year, d.mgnr, bin | ||||||
|  |                 HAVING SUM(value) > 0 | ||||||
|  |                 ORDER BY d.year, d.mgnr, bin; | ||||||
|  |                 """); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE wine_attribute ADD COLUMN fill_lower_bins INTEGER NOT NULL CHECK (fill_lower_bins IN (0, 1, 2)) DEFAULT 0"); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private static void UpdateDbSchema_3_To_4(SqliteConnection cnx) { | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW v_payment_bin"); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_payment_bin AS | ||||||
|  |                 SELECT d.year, d.mgnr, | ||||||
|  |                        sortid || discr AS bin, | ||||||
|  |                        SUM(value) AS weight | ||||||
|  |                 FROM v_delivery d | ||||||
|  |                     JOIN delivery_part_bin b ON (b.year, b.did, b.dpnr) = (d.year, d.did, d.dpnr) | ||||||
|  |                 GROUP BY d.year, d.mgnr, bin | ||||||
|  |                 HAVING SUM(value) > 0 | ||||||
|  |                 ORDER BY d.year, d.mgnr, LENGTH(bin) DESC, bin; | ||||||
|  |                 """); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_area_commitment_bin AS | ||||||
|  |                 SELECT s.year, c.mgnr, | ||||||
|  |                        c.vtrgid AS bin, | ||||||
|  |                        CAST(ROUND(SUM(COALESCE(area * min_kg_per_ha, 0)) / 10000.0, 0) AS INTEGER) AS min_kg, | ||||||
|  |                        CAST(ROUND(SUM(COALESCE(area * max_kg_per_ha, 0)) / 10000.0, 0) AS INTEGER) AS max_kg | ||||||
|  |                 FROM area_commitment c, season s | ||||||
|  |                     JOIN area_commitment_type t ON t.vtrgid = c.vtrgid | ||||||
|  |                 WHERE (year_from IS NULL OR year_from <= s.year) AND | ||||||
|  |                       (year_to IS NULL OR year_to >= s.year) | ||||||
|  |                 GROUP BY s.year, c.mgnr, c.vtrgid | ||||||
|  |                 ORDER BY s.year, c.mgnr, LENGTH(c.vtrgid) DESC, c.vtrgid; | ||||||
|  |                 """); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private static void UpdateDbSchema_4_To_5(SqliteConnection cnx) { | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE TABLE _area_commitment_type ( | ||||||
|  |                     vtrgid         TEXT NOT NULL CHECK (vtrgid = sortid || COALESCE(attrid, '') || disc), | ||||||
|  |                     sortid         TEXT NOT NULL, | ||||||
|  |                     attrid         TEXT, | ||||||
|  |                     disc           TEXT DEFAULT NULL CHECK (disc REGEXP '^[A-Z0-9]+$'), | ||||||
|  |  | ||||||
|  |                     min_kg_per_ha  INTEGER, | ||||||
|  |                     max_kg_per_ha  INTEGER, | ||||||
|  |                     penalty_amount INTEGER, | ||||||
|  |  | ||||||
|  |                     CONSTRAINT pk_area_commitment_type PRIMARY KEY (vtrgid), | ||||||
|  |                     CONSTRAINT sk_area_commitment_type_sort_attr UNIQUE (sortid, attrid, disc), | ||||||
|  |                     CONSTRAINT fk_area_commitment_type_wine_variety FOREIGN KEY (sortid) REFERENCES wine_variety (sortid) | ||||||
|  |                         ON UPDATE CASCADE | ||||||
|  |                         ON DELETE RESTRICT, | ||||||
|  |                     CONSTRAINT fk_area_commitment_type_wine_attribute FOREIGN KEY (attrid) REFERENCES wine_attribute (attrid) | ||||||
|  |                         ON UPDATE CASCADE | ||||||
|  |                         ON DELETE RESTRICT | ||||||
|  |                 ) STRICT; | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 INSERT INTO _area_commitment_type (vtrgid, sortid, attrid, disc, min_kg_per_ha, max_kg_per_ha, penalty_amount) | ||||||
|  |                 SELECT vtrgid, sortid, attrid_1, disc, min_kg_per_ha, max_kg_per_ha, penalty_amount FROM area_commitment_type | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, "PRAGMA writable_schema = ON"); | ||||||
|  |             ExecuteNonQuery(cnx, "DROP TABLE area_commitment_type"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE _area_commitment_type RENAME TO area_commitment_type"); | ||||||
|  |             ExecuteNonQuery(cnx, "PRAGMA writable_schema = OFF"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |             ALTER TABLE delivery_part ADD COLUMN attrid TEXT DEFAULT NULL | ||||||
|  |                 REFERENCES wine_attribute (attrid) | ||||||
|  |                     ON UPDATE CASCADE | ||||||
|  |                     ON DELETE RESTRICT | ||||||
|  |             """); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 UPDATE delivery_part | ||||||
|  |                 SET attrid = (SELECT attrid | ||||||
|  |                               FROM delivery_part_attribute a | ||||||
|  |                               WHERE (delivery_part.year, delivery_part.did, delivery_part.dpnr) = (a.year, a.did, a.dpnr) | ||||||
|  |                               ORDER BY attrid DESC | ||||||
|  |                               LIMIT 1) | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, "DROP TRIGGER t_delivery_part_attribute_i_mtime_delivery_part"); | ||||||
|  |             ExecuteNonQuery(cnx, "DROP TRIGGER t_delivery_part_attribute_u_mtime_delivery_part"); | ||||||
|  |             ExecuteNonQuery(cnx, "DROP TRIGGER t_delivery_part_attribute_d_mtime_delivery_part"); | ||||||
|  |             ExecuteNonQuery(cnx, "DROP TABLE delivery_part_attribute"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW v_delivery"); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_delivery AS | ||||||
|  |                 SELECT p.year, p.did, p.dpnr, | ||||||
|  |                        d.date, d.time, d.zwstid, d.lnr, d.lsnr, | ||||||
|  |                        m.mgnr, m.family_name, m.given_name, | ||||||
|  |                        p.sortid, a.attrid, | ||||||
|  |                        p.weight, p.kmw, ROUND(p.kmw * (4.54 + 0.022 * p.kmw), 0) AS oe, p.qualid, | ||||||
|  |                        p.hkid, p.kgnr, p.rdnr, | ||||||
|  |                        p.gerebelt, p.gebunden, | ||||||
|  |                        p.qualid IN (SELECT l.qualid FROM wine_quality_level l WHERE NOT l.predicate AND (p.kmw >= l.min_kmw OR l.min_kmw IS NULL) ORDER BY l.min_kmw DESC LIMIT 1,100) AS abgewertet, | ||||||
|  |                        p.qualid NOT IN ('WEI', 'RSW', 'LDW') AS min_quw, | ||||||
|  |                        COALESCE(a.fill_lower_bins, 0) AS attribute_prio, | ||||||
|  |                        GROUP_CONCAT(o.modid) AS modifiers, | ||||||
|  |                        d.comment, p.comment AS part_comment | ||||||
|  |                 FROM delivery_part p | ||||||
|  |                     JOIN delivery d ON (d.year, d.did) = (p.year, p.did) | ||||||
|  |                     JOIN member m ON m.mgnr = d.mgnr | ||||||
|  |                     LEFT JOIN wine_attribute a ON a.attrid = p.attrid | ||||||
|  |                     LEFT JOIN delivery_part_modifier o ON (o.year, o.did, o.dpnr) = (p.year, p.did, p.dpnr) | ||||||
|  |                 GROUP BY p.year, p.did, p.dpnr | ||||||
|  |                 ORDER BY p.year, p.did, p.dpnr, o.modid; | ||||||
|  |                 """); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW v_delivery_bin"); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_delivery_bin AS | ||||||
|  |                 SELECT year, mgnr, | ||||||
|  |                        sortid || IIF(min_quw, COALESCE(attrid, ''), '_') AS bin, | ||||||
|  |                        SUM(weight) AS weight | ||||||
|  |                 FROM v_delivery | ||||||
|  |                 GROUP BY year, mgnr, bin | ||||||
|  |                 ORDER BY year, mgnr, LENGTH(bin) DESC, bin; | ||||||
|  |                 """); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW v_stat_attr"); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_stat_attr AS | ||||||
|  |                 SELECT year, attrid, | ||||||
|  |                        SUM(weight) as sum, | ||||||
|  |                        ROUND(SUM(kmw * weight) / SUM(weight), 2) AS kmw, | ||||||
|  |                        ROUND(SUM(oe * weight) / SUM(weight), 1) AS oe, | ||||||
|  |                        COUNT(DISTINCT did) AS lieferungen, | ||||||
|  |                        COUNT(DISTINCT mgnr) AS mitglieder | ||||||
|  |                 FROM v_delivery | ||||||
|  |                 GROUP BY year, attrid | ||||||
|  |                 ORDER BY year, attrid; | ||||||
|  |                 """); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW v_stat_sort_attr"); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_stat_sort_attr AS | ||||||
|  |                 SELECT year, sortid, attrid, | ||||||
|  |                        SUM(weight) as sum, | ||||||
|  |                        ROUND(SUM(kmw * weight) / SUM(weight), 2) AS kmw, | ||||||
|  |                        ROUND(SUM(oe * weight) / SUM(weight), 1) AS oe, | ||||||
|  |                        COUNT(DISTINCT did) AS lieferungen, | ||||||
|  |                        COUNT(DISTINCT mgnr) AS mitglieder | ||||||
|  |                 FROM v_delivery | ||||||
|  |                 GROUP BY year, sortid, attrid | ||||||
|  |                 ORDER BY year, sortid, attrid; | ||||||
|  |                 """); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private static void UpdateDbSchema_5_To_6(SqliteConnection cnx) { | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW IF EXISTS v_area_commitment"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "PRAGMA writable_schema = ON"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE wine_attribute DROP COLUMN fill_lower_bins"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE wine_attribute ADD COLUMN strict INTEGER NOT NULL CHECK (strict IN (TRUE, FALSE)) DEFAULT FALSE"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE wine_attribute ADD COLUMN fill_lower INTEGER NOT NULL CHECK (fill_lower IN (0, 1, 2)) DEFAULT 0"); | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW v_delivery"); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_delivery AS | ||||||
|  |                 SELECT p.year, p.did, p.dpnr, | ||||||
|  |                        d.date, d.time, d.zwstid, d.lnr, d.lsnr, | ||||||
|  |                        m.mgnr, m.family_name, m.given_name, | ||||||
|  |                        p.sortid, a.attrid, | ||||||
|  |                        p.weight, p.kmw, ROUND(p.kmw * (4.54 + 0.022 * p.kmw), 0) AS oe, p.qualid, | ||||||
|  |                        p.hkid, p.kgnr, p.rdnr, | ||||||
|  |                        p.gerebelt, p.gebunden, | ||||||
|  |                        p.qualid IN (SELECT l.qualid FROM wine_quality_level l WHERE NOT l.predicate AND (p.kmw >= l.min_kmw OR l.min_kmw IS NULL) ORDER BY l.min_kmw DESC LIMIT 1,100) AS abgewertet, | ||||||
|  |                        p.qualid NOT IN ('WEI', 'RSW', 'LDW') AS min_quw, | ||||||
|  |                        IIF(a.strict, COALESCE(a.fill_lower, 0), 0) AS attribute_prio, | ||||||
|  |                        GROUP_CONCAT(o.modid) AS modifiers, | ||||||
|  |                        d.comment, p.comment AS part_comment | ||||||
|  |                 FROM delivery_part p | ||||||
|  |                     JOIN delivery d ON (d.year, d.did) = (p.year, p.did) | ||||||
|  |                     JOIN member m ON m.mgnr = d.mgnr | ||||||
|  |                     LEFT JOIN wine_attribute a ON a.attrid = p.attrid | ||||||
|  |                     LEFT JOIN delivery_part_modifier o ON (o.year, o.did, o.dpnr) = (p.year, p.did, p.dpnr) | ||||||
|  |                 GROUP BY p.year, p.did, p.dpnr | ||||||
|  |                 ORDER BY p.year, p.did, p.dpnr, o.modid; | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, "PRAGMA writable_schema = OFF"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW v_area_commitment_bin"); | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW v_delivery_bin"); | ||||||
|  |             ExecuteNonQuery(cnx, "DROP VIEW v_payment_bin"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE area_commitment_type DROP COLUMN max_kg_per_ha"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE area_commitment_type ADD COLUMN penalty_per_kg INTEGER DEFAULT NULL"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE area_commitment_type ADD COLUMN penalty_none INTEGER DEFAULT NULL"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE wine_cultivation ADD COLUMN description TEXT DEFAULT NULL"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE member ADD COLUMN organic INTEGER NOT NULL CHECK (organic IN (TRUE, FALSE)) DEFAULT FALSE"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE season ADD COLUMN max_kg_per_ha INTEGER NOT NULL DEFAULT 10000"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE season ADD COLUMN vat_normal REAL NOT NULL DEFAULT 0.10"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE season ADD COLUMN vat_flatrate REAL NOT NULL DEFAULT 0.13"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE season ADD COLUMN min_kg_per_bs INTEGER NOT NULL DEFAULT 750"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE season ADD COLUMN max_kg_per_bs INTEGER NOT NULL DEFAULT 3000"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE season ADD COLUMN penalty_per_kg INTEGER DEFAULT NULL"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE season ADD COLUMN penalty_amount INTEGER DEFAULT NULL"); | ||||||
|  |             ExecuteNonQuery(cnx, "ALTER TABLE season ADD COLUMN penalty_none INTEGER DEFAULT NULL"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, "DELETE FROM client_parameter WHERE param IN ('DELIVERY_RIGHT', 'DELIVERY_OBLIGATION', 'VAT_NORMAL', 'VAT_REDUCED', 'VAT_FLATRATE')"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE TABLE delivery_part_bucket ( | ||||||
|  |                     year     INTEGER NOT NULL, | ||||||
|  |                     did      INTEGER NOT NULL, | ||||||
|  |                     dpnr     INTEGER NOT NULL, | ||||||
|  |                     bktnr    INTEGER NOT NULL, | ||||||
|  |  | ||||||
|  |                     discr    TEXT    NOT NULL, | ||||||
|  |                     value    INTEGER NOT NULL, | ||||||
|  |  | ||||||
|  |                     CONSTRAINT pk_delivery_part_bucket PRIMARY KEY (year, did, dpnr, bktnr), | ||||||
|  |                     CONSTRAINT fk_delivery_part_bucket_delivery_part FOREIGN KEY (year, did, dpnr) REFERENCES delivery_part (year, did, dpnr) | ||||||
|  |                         ON UPDATE CASCADE | ||||||
|  |                         ON DELETE CASCADE | ||||||
|  |                 ) STRICT; | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 INSERT INTO delivery_part_bucket (year, did, dpnr, bktnr, discr, value) | ||||||
|  |                 SELECT year, did, dpnr, binnr, discr, value | ||||||
|  |                 FROM delivery_part_bin | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, "DROP TABLE delivery_part_bin"); | ||||||
|  |  | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_area_commitment_bucket_strict AS | ||||||
|  |                 SELECT s.year, c.mgnr, | ||||||
|  |                        t.sortid || COALESCE(a.attrid, '') AS bucket, | ||||||
|  |                        t.sortid, a.attrid, | ||||||
|  |                        CAST(ROUND(SUM(area) * COALESCE(t.min_kg_per_ha, 0) / 10000.0, 0) AS INTEGER) AS min_kg, | ||||||
|  |                        CAST(ROUND(SUM(area) * COALESCE(a.max_kg_per_ha, s.max_kg_per_ha) / 10000.0, 0) AS INTEGER) AS max_kg, | ||||||
|  |                        CAST(ROUND(SUM(area) * s.max_kg_per_ha / 10000.0, 0) AS INTEGER) AS upper_max_kg | ||||||
|  |                 FROM season s, area_commitment c | ||||||
|  |                     JOIN area_commitment_type t ON t.vtrgid = c.vtrgid | ||||||
|  |                     LEFT JOIN wine_attribute a ON a.attrid = t.attrid | ||||||
|  |                 WHERE (year_from IS NULL OR year_from <= s.year) AND | ||||||
|  |                       (year_to IS NULL OR year_to >= s.year) | ||||||
|  |                 GROUP BY s.year, c.mgnr, bucket | ||||||
|  |                 ORDER BY s.year, c.mgnr, bucket; | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_area_commitment_bucket AS | ||||||
|  |                 SELECT year, mgnr, bucket, min_kg, max_kg | ||||||
|  |                 FROM v_area_commitment_bucket_strict | ||||||
|  |                 WHERE attrid IS NOT NULL | ||||||
|  |                 UNION ALL | ||||||
|  |                 SELECT b.year, b.mgnr, b.sortid, | ||||||
|  |                        SUM(b.min_kg) AS min_kg, | ||||||
|  |                        SUM(b.upper_max_kg) AS max_kg | ||||||
|  |                 FROM v_area_commitment_bucket_strict b | ||||||
|  |                     LEFT JOIN wine_attribute a ON a.attrid = b.attrid | ||||||
|  |                 WHERE a.strict IS NULL OR a.strict = FALSE | ||||||
|  |                 GROUP BY b.year, b.mgnr, b.sortid | ||||||
|  |                 ORDER BY year, mgnr, bucket; | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_delivery_bucket_strict AS | ||||||
|  |                 SELECT year, mgnr, | ||||||
|  |                        sortid || IIF(min_quw, COALESCE(attrid, ''), '_') AS bucket, | ||||||
|  |                        sortid, IIF(min_quw, attrid, NULL) AS attrid, | ||||||
|  |                        SUM(weight) AS weight, | ||||||
|  |                        min_quw | ||||||
|  |                 FROM v_delivery | ||||||
|  |                 GROUP BY year, mgnr, bucket | ||||||
|  |                 ORDER BY year, mgnr, bucket; | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_delivery_bucket AS | ||||||
|  |                 SELECT year, mgnr, bucket, weight | ||||||
|  |                 FROM v_delivery_bucket_strict | ||||||
|  |                 WHERE attrid IS NOT NULL OR NOT min_quw | ||||||
|  |                 UNION ALL | ||||||
|  |                 SELECT b.year, b.mgnr, b.sortid, | ||||||
|  |                        SUM(b.weight) AS weight | ||||||
|  |                 FROM v_delivery_bucket_strict b | ||||||
|  |                     LEFT JOIN wine_attribute a ON a.attrid = b.attrid | ||||||
|  |                 WHERE min_quw AND (a.strict IS NULL OR a.strict = FALSE) | ||||||
|  |                 GROUP BY b.year, b.mgnr, b.sortid | ||||||
|  |                 ORDER BY year, mgnr, bucket; | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_payment_bucket_strict AS | ||||||
|  |                 SELECT d.year, d.mgnr, | ||||||
|  |                        d.sortid || b.discr AS bucket, | ||||||
|  |                        d.sortid, IIF(b.discr IN ('', '_'), NULL, b.discr) AS attrid, | ||||||
|  |                        SUM(b.value) AS weight, | ||||||
|  |                        b.discr != '_' AS gebunden | ||||||
|  |                 FROM v_delivery d | ||||||
|  |                     LEFT JOIN delivery_part_bucket b ON (b.year, b.did, b.dpnr) = (d.year, d.did, d.dpnr) | ||||||
|  |                 GROUP BY d.year, d.mgnr, bucket | ||||||
|  |                 HAVING SUM(b.value) > 0 | ||||||
|  |                 ORDER BY d.year, d.mgnr, bucket; | ||||||
|  |                 """); | ||||||
|  |             ExecuteNonQuery(cnx, """ | ||||||
|  |                 CREATE VIEW v_payment_bucket AS | ||||||
|  |                 SELECT year, mgnr, bucket, weight | ||||||
|  |                 FROM v_payment_bucket_strict | ||||||
|  |                 WHERE attrid IS NOT NULL OR NOT gebunden | ||||||
|  |                 UNION ALL | ||||||
|  |                 SELECT b.year, b.mgnr, b.sortid, | ||||||
|  |                        SUM(b.weight) AS weight | ||||||
|  |                 FROM v_payment_bucket_strict b | ||||||
|  |                     LEFT JOIN wine_attribute a ON a.attrid = b.attrid | ||||||
|  |                 WHERE gebunden AND (a.strict IS NULL OR a.strict = FALSE) | ||||||
|  |                 GROUP BY b.year, b.mgnr, b.sortid | ||||||
|  |                 ORDER BY year, mgnr, bucket; | ||||||
|  |                 """); | ||||||
|  |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -1,4 +1,5 @@ | |||||||
| using Microsoft.Data.Sqlite; | using Microsoft.Data.Sqlite; | ||||||
|  | using System; | ||||||
| using System.Collections.Generic; | using System.Collections.Generic; | ||||||
| using System.Linq; | using System.Linq; | ||||||
| using System.Threading.Tasks; | using System.Threading.Tasks; | ||||||
| @@ -6,125 +7,206 @@ using System.Threading.Tasks; | |||||||
| namespace Elwig.Helpers.Billing { | namespace Elwig.Helpers.Billing { | ||||||
|     public class Billing { |     public class Billing { | ||||||
|  |  | ||||||
|         private readonly int Year; |         protected readonly int Year; | ||||||
|         private readonly int AvNr; |         protected readonly AppDbContext Context; | ||||||
|         private readonly AppDbContext Context; |         protected readonly Dictionary<string, string> Attributes; | ||||||
|         private readonly Dictionary<string, string> Attributes; |         protected readonly Dictionary<string, (decimal?, decimal?)> Modifiers; | ||||||
|         private readonly Dictionary<string, (decimal?, decimal?)> Modifiers; |         protected readonly Dictionary<string, (string, string?, string?, int?, decimal?)> AreaComTypes; | ||||||
|         private readonly Dictionary<string, (string, string?, string?, string?, int?, int?, decimal?)> AreaComTypes; |  | ||||||
|  |  | ||||||
|         public Billing(int year, int avnr) { |         public Billing(int year) { | ||||||
|             Year = year; |             Year = year; | ||||||
|             AvNr = avnr; |  | ||||||
|             Context = new AppDbContext(); |             Context = new AppDbContext(); | ||||||
|             Attributes = Context.WineAttributes.ToDictionary(a => a.AttrId, a => a.Name); |             Attributes = Context.WineAttributes.ToDictionary(a => a.AttrId, a => a.Name); | ||||||
|             Modifiers = Context.Modifiers.Where(m => m.Year == Year).ToDictionary(m => m.ModId, m => (m.Abs, m.Rel)); |             Modifiers = Context.Modifiers.Where(m => m.Year == Year).ToDictionary(m => m.ModId, m => (m.Abs, m.Rel)); | ||||||
|             AreaComTypes = Context.AreaCommitmentTypes.ToDictionary(v => v.VtrgId, v => (v.SortId, v.AttrId1, v.AttrId2, v.Discriminator, v.MinKgPerHa, v.MaxKgPerHa, v.PenaltyAmount)); |             AreaComTypes = Context.AreaCommitmentTypes.ToDictionary(v => v.VtrgId, v => (v.SortId, v.AttrId, v.Discriminator, v.MinKgPerHa, v.PenaltyAmount)); | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         protected async Task DeleteInDb() { |         public async Task FinishSeason() { | ||||||
|             using var cnx = await AppDbContext.ConnectAsync(); |             using var cnx = await AppDbContext.ConnectAsync(); | ||||||
|             using (var cmd = cnx.CreateCommand()) { |  | ||||||
|                 cmd.CommandText = $"DELETE FROM payment_delivery_part WHERE (year, avnr) = ({Year}, {AvNr})"; |  | ||||||
|                 await cmd.ExecuteNonQueryAsync(); |  | ||||||
|             } |  | ||||||
|             using (var cmd = cnx.CreateCommand()) { |  | ||||||
|                 cmd.CommandText = $"DELETE FROM payment_member WHERE (year, avnr) = ({Year}, {AvNr})"; |  | ||||||
|                 await cmd.ExecuteNonQueryAsync(); |  | ||||||
|             } |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         public async Task Calculate() { |  | ||||||
|             await DeleteInDb(); |  | ||||||
|             var tasks = new List<Task>(); |  | ||||||
|             foreach (var mgnr in Context.Members.Select(m => m.MgNr)) { |  | ||||||
|                 tasks.Add(Task.Run(() => CalculateMember(mgnr))); |  | ||||||
|             } |  | ||||||
|             await Task.WhenAll(tasks); |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         public static async Task<(Dictionary<string, int>, Dictionary<string, int>)> GetMemberRightsObligations(int mgnr, int year, SqliteConnection cnx) { |  | ||||||
|             var rights = new Dictionary<string, int>(); |  | ||||||
|             var obligations = new Dictionary<string, int>(); |  | ||||||
|  |  | ||||||
|             using var cmd = cnx.CreateCommand(); |  | ||||||
|             cmd.CommandText = $""" |  | ||||||
|                 SELECT t.vtrgid, |  | ||||||
|                        SUM(COALESCE(area * min_kg_per_ha, 0)) / 10000 AS min_kg, |  | ||||||
|                        SUM(COALESCE(area * max_kg_per_ha, 0)) / 10000 AS max_kg |  | ||||||
|                 FROM area_commitment c |  | ||||||
|                 JOIN area_commitment_type t ON t.vtrgid = c.vtrgid |  | ||||||
|                 WHERE mgnr = {mgnr} AND (year_from IS NULL OR year_from <= {year}) AND (year_to IS NULL OR year_to >= {year}) |  | ||||||
|                 GROUP BY t.vtrgid |  | ||||||
|                 ORDER BY LENGTH(t.vtrgid) DESC, t.vtrgid |  | ||||||
|                 """; |  | ||||||
|  |  | ||||||
|             var reader = await cmd.ExecuteReaderAsync(); |  | ||||||
|             while (await reader.ReadAsync()) { |  | ||||||
|                 var vtrgid = reader.GetString(0); |  | ||||||
|                 obligations[vtrgid] = reader.GetInt32(1); |  | ||||||
|                 rights[vtrgid] = reader.GetInt32(2); |  | ||||||
|             } |  | ||||||
|  |  | ||||||
|             return (rights, obligations); |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         public static async Task<Dictionary<string, int>> GetMemberBucketWeights(int mgnr, int year, SqliteConnection cnx) { |  | ||||||
|             var buckets = new Dictionary<string, int>(); |  | ||||||
|  |  | ||||||
|             using var cmd = cnx.CreateCommand(); |  | ||||||
|             cmd.CommandText = $""" |  | ||||||
|                 SELECT bucket, weight |  | ||||||
|                 FROM v_bucket |  | ||||||
|                 WHERE (year, mgnr) = ({year}, {mgnr}) |  | ||||||
|                 """; |  | ||||||
|  |  | ||||||
|             var reader = await cmd.ExecuteReaderAsync(); |  | ||||||
|             while (await reader.ReadAsync()) { |  | ||||||
|                 var bucket = reader.GetString(0); |  | ||||||
|                 buckets[bucket] = reader.GetInt32(1); |  | ||||||
|             } |  | ||||||
|  |  | ||||||
|             return buckets; |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         protected async Task CalculateMember(int mgnr) { |  | ||||||
|             using var cnx = await AppDbContext.ConnectAsync(); |  | ||||||
|             var (rights, obligations) = await GetMemberRightsObligations(mgnr, Year, cnx); |  | ||||||
|  |  | ||||||
|             var deliveries = new List<(int, int, string, int, double, string, string[], string[])>(); |  | ||||||
|             using (var cmd = cnx.CreateCommand()) { |             using (var cmd = cnx.CreateCommand()) { | ||||||
|                 cmd.CommandText = $""" |                 cmd.CommandText = $""" | ||||||
|                     SELECT did, dpnr, sortid, weight, kmw, qualid, attributes, modifiers |                     UPDATE season | ||||||
|                     FROM v_delivery |                     SET (start_date, end_date) = (SELECT MIN(date), MAX(date) FROM delivery WHERE year = {Year}) | ||||||
|                     WHERE (year, mgnr) = ({Year}, {mgnr}) |                     WHERE year = {Year} | ||||||
|                     ORDER BY kmw DESC, weight DESC, did, dpnr |  | ||||||
|                     """; |                     """; | ||||||
|                 var reader = await cmd.ExecuteReaderAsync(); |                 await cmd.ExecuteNonQueryAsync(); | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                 cmd.CommandText = $"DELETE FROM delivery_part_bucket WHERE year = {Year}"; | ||||||
|  |                 await cmd.ExecuteNonQueryAsync(); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public async Task CalculateBins(bool allowAttrsIntoLowerBins, bool avoidUnderDeliveries, bool honorGebunden) { | ||||||
|  |             var attrVals = Context.WineAttributes.ToDictionary(a => a.AttrId, a => (a.IsStrict, a.FillLower)); | ||||||
|  |             var attrForced = attrVals.Where(a => a.Value.IsStrict && a.Value.FillLower == 0).Select(a => a.Key).ToArray(); | ||||||
|  |             using var cnx = await AppDbContext.ConnectAsync(); | ||||||
|  |             await Context.GetMemberRightsAndObligations(Year, 0, cnx); | ||||||
|  |             var inserts = new List<(int, int, int, string, int)>(); | ||||||
|  |  | ||||||
|  |             var deliveries = new List<(int, int, int, string, int, double, string, string?, string[], bool?)>(); | ||||||
|  |             using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                 cmd.CommandText = $""" | ||||||
|  |                     SELECT mgnr, did, dpnr, sortid, weight, kmw, qualid, attrid, modifiers, gebunden | ||||||
|  |                     FROM v_delivery | ||||||
|  |                     WHERE year = {Year} | ||||||
|  |                     ORDER BY mgnr, sortid, abgewertet ASC, {(honorGebunden ? "gebunden IS NOT NULL DESC, gebunden DESC," : "")} | ||||||
|  |                              attribute_prio DESC, COALESCE(attrid, '~'), kmw DESC, lsnr, dpnr | ||||||
|  |                     """; | ||||||
|  |                 using var reader = await cmd.ExecuteReaderAsync(); | ||||||
|                 while (await reader.ReadAsync()) { |                 while (await reader.ReadAsync()) { | ||||||
|                     deliveries.Add(( |                     deliveries.Add(( | ||||||
|                         reader.GetInt32(0), reader.GetInt32(1), reader.GetString(2), reader.GetInt32(3), |                         reader.GetInt32(0), reader.GetInt32(1), reader.GetInt32(2), reader.GetString(3), reader.GetInt32(4), | ||||||
|                         reader.GetDouble(4), reader.GetString(5), reader.GetString(6).Split(","), reader.GetString(7).Split(",") |                         reader.GetDouble(5), reader.GetString(6), | ||||||
|  |                         reader.IsDBNull(7) ? null : reader.GetString(7), | ||||||
|  |                         reader.IsDBNull(8) ? Array.Empty<string>() : reader.GetString(8).Split(",").Order().ToArray(), | ||||||
|  |                         reader.IsDBNull(9) ? null : reader.GetBoolean(9) | ||||||
|                     )); |                     )); | ||||||
|                 } |                 } | ||||||
|             } |             } | ||||||
|  |  | ||||||
|             foreach (var (did, dpnr, sortid, weight, kmw, qualid, attributes, modifiers) in deliveries) { |             int lastMgNr = 0; | ||||||
|                 if (qualid == "WEI" || qualid == "RSW" || qualid == "LDW") { |             Dictionary<string, (int, int)>? rightsAndObligations = null; | ||||||
|  |             Dictionary<string, int> used = new(); | ||||||
|  |             foreach (var (mgnr, did, dpnr, sortid, weight, kmw, qualid, attrid, modifiers, gebunden) in deliveries) { | ||||||
|  |                 if (lastMgNr != mgnr) { | ||||||
|  |                     rightsAndObligations = await Context.GetMemberRightsAndObligations(Year, mgnr); | ||||||
|  |                     used = new(); | ||||||
|  |                 } | ||||||
|  |                 if ((honorGebunden && gebunden == false) || | ||||||
|  |                     rightsAndObligations == null || rightsAndObligations.Count == 0 || | ||||||
|  |                     qualid == "WEI" || qualid == "RSW" || qualid == "LDW") | ||||||
|  |                 { | ||||||
|  |                     // Explizit als ungebunden markiert, | ||||||
|  |                     // Mitglied hat keine Flächenbindungen, oder | ||||||
|                     // Nicht mindestens Qualitätswein (QUW) |                     // Nicht mindestens Qualitätswein (QUW) | ||||||
|                     using var cmd = cnx.CreateCommand(); |                     // -> ungebunden | ||||||
|                     // TODO |                     inserts.Add((did, dpnr, 0, "_", weight)); | ||||||
|                     cmd.CommandText = $""" |  | ||||||
|                         INSERT INTO payment_delivery_part (year, did, dpnr, avnr, mod_abs, mod_rel, ) |  | ||||||
|                         VALUES ({Year}, {did}, {dpnr}, {AvNr}, ) |  | ||||||
|                         """; |  | ||||||
|                     await cmd.ExecuteNonQueryAsync(); |  | ||||||
|                     continue; |                     continue; | ||||||
|                 } |                 } | ||||||
|  |  | ||||||
|                 // TODO |                 int w = weight; | ||||||
|  |                 var attributes = attrid == null ? Array.Empty<string>() : new string[] { attrid }; | ||||||
|  |                 var isStrict = attrid != null && attrVals[attrid].IsStrict; | ||||||
|  |                 foreach (var p in Utils.Permutate(attributes, attributes.Intersect(attrForced))) { | ||||||
|  |                     var c = p.Count(); | ||||||
|  |                     var key = sortid + string.Join("", p); | ||||||
|  |                     if (rightsAndObligations.ContainsKey(key)) { | ||||||
|  |                         int i = (c == 0) ? 1 : 2; | ||||||
|  |                         var u = used.GetValueOrDefault(key, 0); | ||||||
|  |                         var vr = Math.Max(0, Math.Min(rightsAndObligations[key].Item1 - u, w)); | ||||||
|  |                         var vo = Math.Max(0, Math.Min(rightsAndObligations[key].Item2 - u, w)); | ||||||
|  |                         var v = (attributes.Length == 0 || attributes.Select(a => !attrVals[a].IsStrict ? 2 : attrVals[a].FillLower).Min() == 2) ? vr : vo; | ||||||
|  |                         used[key] = u + v; | ||||||
|  |                         if (key.Length > 2 && !isStrict) used[key[..2]] = used.GetValueOrDefault(key[..2], 0) + v; | ||||||
|  |                         inserts.Add((did, dpnr, i, key[2..], v)); | ||||||
|  |                         w -= v; | ||||||
|  |                     } | ||||||
|  |                     if (w == 0 || (!allowAttrsIntoLowerBins && isStrict)) break; | ||||||
|  |                 } | ||||||
|  |                 inserts.Add((did, dpnr, 0, "_", w)); | ||||||
|  |                 lastMgNr = mgnr; | ||||||
|             } |             } | ||||||
|  |  | ||||||
|  |             using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                 cmd.CommandText = $""" | ||||||
|  |                     INSERT INTO delivery_part_bucket (year, did, dpnr, bktnr, discr, value) | ||||||
|  |                     VALUES {string.Join(",\n       ", inserts.Select(i => $"({Year}, {i.Item1}, {i.Item2}, {i.Item3}, '{i.Item4}', {i.Item5})"))} | ||||||
|  |                     ON CONFLICT DO UPDATE | ||||||
|  |                     SET discr = excluded.discr, value = value + excluded.value | ||||||
|  |                     """; | ||||||
|  |                 await cmd.ExecuteNonQueryAsync(); | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             if (!avoidUnderDeliveries) | ||||||
|  |                 return; | ||||||
|  |  | ||||||
|  |             // FIXME avoidUnderDelivery-calculations not always right! | ||||||
|  |  | ||||||
|  |             var underDeliveries = new Dictionary<(int, string), int>(); | ||||||
|  |             using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                 cmd.CommandText = $""" | ||||||
|  |                     SELECT c.mgnr, c.bucket, COALESCE(p.weight, 0) - c.min_kg AS diff | ||||||
|  |                     FROM v_area_commitment_bucket c | ||||||
|  |                         LEFT JOIN v_payment_bucket p ON (p.year, p.mgnr, p.bucket) = (c.year, c.mgnr, c.bucket) | ||||||
|  |                     WHERE c.year = {Year} AND LENGTH(c.bucket) = 2 AND diff < 0 | ||||||
|  |                     """; | ||||||
|  |                 using var reader = await cmd.ExecuteReaderAsync(); | ||||||
|  |                 while (await reader.ReadAsync()) { | ||||||
|  |                     underDeliveries[(reader.GetInt32(0), reader.GetString(1))] = reader.GetInt32(2); | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             var fittingBins = new Dictionary<(int, string), int>(); | ||||||
|  |             using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                 cmd.CommandText = $""" | ||||||
|  |                     SELECT c.mgnr, c.bucket, COALESCE(p.weight, 0) - c.min_kg AS diff | ||||||
|  |                     FROM v_area_commitment_bucket c | ||||||
|  |                         LEFT JOIN v_payment_bucket p ON (p.year, p.mgnr, p.bucket) = (c.year, c.mgnr, c.bucket) | ||||||
|  |                     WHERE c.year = {Year} AND LENGTH(c.bucket) = 3 AND diff > 0 | ||||||
|  |                     """; | ||||||
|  |                 using var reader = await cmd.ExecuteReaderAsync(); | ||||||
|  |                 while (await reader.ReadAsync()) { | ||||||
|  |                     fittingBins[(reader.GetInt32(0), reader.GetString(1))] = reader.GetInt32(2); | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             foreach (var item in fittingBins) { | ||||||
|  |                 var mgnr = item.Key.Item1; | ||||||
|  |                 var id = item.Key.Item2[..2]; | ||||||
|  |                 var attr = item.Key.Item2[2..]; | ||||||
|  |                 var available = item.Value; | ||||||
|  |                 var needed = -underDeliveries.GetValueOrDefault((mgnr, id), 0); | ||||||
|  |                 if (needed <= 0) continue; | ||||||
|  |  | ||||||
|  |                 var fittingDeliveries = new List<(int, int, int, int)>(); | ||||||
|  |                 using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                     cmd.CommandText = $""" | ||||||
|  |                         SELECT d.did, d.dpnr, d.weight, b.value | ||||||
|  |                         FROM v_delivery d | ||||||
|  |                             JOIN delivery_part_bucket b ON (b.year, b.did, b.dpnr) = (d.year, d.did, d.dpnr) AND b.discr = '{attr}' | ||||||
|  |                         WHERE d.year = {Year} AND mgnr = {mgnr} AND sortid = '{id}' AND attrid = '{attr}' | ||||||
|  |                         ORDER BY kmw ASC, lsnr DESC, d.dpnr DESC | ||||||
|  |                         """; | ||||||
|  |                     using var reader = await cmd.ExecuteReaderAsync(); | ||||||
|  |                     while (await reader.ReadAsync()) { | ||||||
|  |                         fittingDeliveries.Add(( | ||||||
|  |                             reader.GetInt32(0), reader.GetInt32(1), reader.GetInt32(2), reader.GetInt32(3) | ||||||
|  |                         )); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 var negChanges = new List<(int, int, int, int)>(); | ||||||
|  |                 var posChanges = new List<(int, int, int, int)>(); | ||||||
|  |                 foreach (var (did, dpnr, _, w) in fittingDeliveries) { | ||||||
|  |                     int v = Math.Min(needed, w); | ||||||
|  |                     needed -= v; | ||||||
|  |                     posChanges.Add((did, dpnr, 1, v)); | ||||||
|  |                     negChanges.Add((did, dpnr, 2, w - v)); | ||||||
|  |                     if (needed == 0) break; | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                     cmd.CommandText = $""" | ||||||
|  |                         INSERT INTO delivery_part_bucket (year, did, dpnr, bktnr, discr, value) | ||||||
|  |                         VALUES {string.Join(",\n       ", posChanges.Select(i => $"({Year}, {i.Item1}, {i.Item2}, {i.Item3}, '', {i.Item4})"))} | ||||||
|  |                         ON CONFLICT DO UPDATE | ||||||
|  |                         SET value = value + excluded.value | ||||||
|  |                         """; | ||||||
|  |                     await cmd.ExecuteNonQueryAsync(); | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                     cmd.CommandText = $""" | ||||||
|  |                         INSERT INTO delivery_part_bucket (year, did, dpnr, bktnr, discr, value) | ||||||
|  |                         VALUES {string.Join(",\n       ", negChanges.Select(i => $"({Year}, {i.Item1}, {i.Item2}, {i.Item3}, '', {i.Item4})"))} | ||||||
|  |                         ON CONFLICT DO UPDATE | ||||||
|  |                         SET value = excluded.value | ||||||
|  |                         """; | ||||||
|  |                     await cmd.ExecuteNonQueryAsync(); | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										41
									
								
								Elwig/Helpers/Billing/BillingVariant.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								Elwig/Helpers/Billing/BillingVariant.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,41 @@ | |||||||
|  | using System; | ||||||
|  | using System.Collections.Generic; | ||||||
|  | using System.Linq; | ||||||
|  | using System.Text; | ||||||
|  | using System.Threading.Tasks; | ||||||
|  |  | ||||||
|  | namespace Elwig.Helpers.Billing { | ||||||
|  |     public class BillingVariant : Billing { | ||||||
|  |  | ||||||
|  |         private readonly int AvNr; | ||||||
|  |  | ||||||
|  |         public BillingVariant(int year, int avnr) : base(year) { | ||||||
|  |             AvNr = avnr; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         protected async Task DeleteInDb() { | ||||||
|  |             using var cnx = await AppDbContext.ConnectAsync(); | ||||||
|  |             using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                 cmd.CommandText = $"DELETE FROM payment_delivery_part WHERE (year, avnr) = ({Year}, {AvNr})"; | ||||||
|  |                 await cmd.ExecuteNonQueryAsync(); | ||||||
|  |             } | ||||||
|  |             using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                 cmd.CommandText = $"DELETE FROM payment_member WHERE (year, avnr) = ({Year}, {AvNr})"; | ||||||
|  |                 await cmd.ExecuteNonQueryAsync(); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public async Task CalculatePrices() { | ||||||
|  |             await DeleteInDb(); | ||||||
|  |             var tasks = new List<Task>(); | ||||||
|  |             foreach (var mgnr in Context.Members.Select(m => m.MgNr)) { | ||||||
|  |                 tasks.Add(Task.Run(() => CalculateMemberPrices(mgnr))); | ||||||
|  |             } | ||||||
|  |             await Task.WhenAll(tasks); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         protected async Task CalculateMemberPrices(int mgnr) { | ||||||
|  |  | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | } | ||||||
| @@ -15,11 +15,22 @@ namespace Elwig.Helpers { | |||||||
|         public bool IsHaugsdorf => Client == Type.Winzerkeller && App.ZwstId == "H"; |         public bool IsHaugsdorf => Client == Type.Winzerkeller && App.ZwstId == "H"; | ||||||
|         public bool IsSitzendorf => Client == Type.Winzerkeller && App.ZwstId == "S"; |         public bool IsSitzendorf => Client == Type.Winzerkeller && App.ZwstId == "S"; | ||||||
|  |  | ||||||
|  |         public bool HasRebler(string? zwstId) => IsMatzen || (IsWinzerkeller && zwstId == "W"); | ||||||
|  |         public bool HasRebler(Branch? b) => HasRebler(b?.ZwstId); | ||||||
|  |         public bool HasRebler() => HasRebler(App.ZwstId); | ||||||
|  |         public bool HasKisten(string? zwstId) => IsWinzerkeller && (zwstId == "H" || zwstId == "S"); | ||||||
|  |         public bool HasKisten(Branch? b) => HasKisten(b?.ZwstId); | ||||||
|  |         public bool HasKisten() => HasKisten(App.ZwstId); | ||||||
|  |  | ||||||
|         public string NameToken; |         public string NameToken; | ||||||
|         public string NameShort; |         public string NameShort; | ||||||
|         public string Name; |         public string Name; | ||||||
|         public string? NameSuffix; |         public string? NameSuffix; | ||||||
|         public string NameType; |         public string NameType; | ||||||
|  |         public string NameTypeFull => NameType.Replace(".", "").Replace(" ", "").ToLower() switch { | ||||||
|  |             "reggenmbh" => "registrierte Genossenschaft mit beschränkter Haftung", | ||||||
|  |             _ => NameType, | ||||||
|  |         }; | ||||||
|         public string NameFull => NameSuffix == null ? $"{Name} {NameType}" : $"{Name}, {NameSuffix}, {NameType}"; |         public string NameFull => NameSuffix == null ? $"{Name} {NameType}" : $"{Name}, {NameSuffix}, {NameType}"; | ||||||
|         public Type? Client; |         public Type? Client; | ||||||
|  |  | ||||||
| @@ -45,13 +56,10 @@ namespace Elwig.Helpers { | |||||||
|         public string? EmailAddress; |         public string? EmailAddress; | ||||||
|         public string? Website; |         public string? Website; | ||||||
|  |  | ||||||
|         public int DeliveryObligation; |         public int ModeDeliveryNoteStats; | ||||||
|         public int DeliveryRight; |  | ||||||
|         public decimal VatNormal; |  | ||||||
|         public decimal VatReduced; |  | ||||||
|         public decimal VatFlatRate; |  | ||||||
|  |  | ||||||
|         public string? TextDeliveryNote; |         public string? TextDeliveryNote; | ||||||
|  |         public string? TextDeliveryConfirmation; | ||||||
|  |  | ||||||
|         public ClientParameters(AppDbContext ctx) : this(ctx.ClientParameters.ToDictionary(e => e.Param, e => e.Value)) { } |         public ClientParameters(AppDbContext ctx) : this(ctx.ClientParameters.ToDictionary(e => e.Param, e => e.Value)) { } | ||||||
|  |  | ||||||
| @@ -79,20 +87,31 @@ namespace Elwig.Helpers { | |||||||
|                 Bic = parameters.GetValueOrDefault("CLIENT_BIC"); |                 Bic = parameters.GetValueOrDefault("CLIENT_BIC"); | ||||||
|                 Iban = parameters.GetValueOrDefault("CLIENT_IBAN"); |                 Iban = parameters.GetValueOrDefault("CLIENT_IBAN"); | ||||||
|  |  | ||||||
|                 DeliveryObligation = int.Parse(parameters["DELIVERY_OBLIGATION"] ?? ""); |                 switch (parameters.GetValueOrDefault("MODE_DELIVERYNOTE_STATS", "SHORT")?.ToUpper()) { | ||||||
|                 DeliveryRight = int.Parse(parameters["DELIVERY_RIGHT"] ?? ""); |                     case "NONE": ModeDeliveryNoteStats = 0; break; | ||||||
|                 VatNormal = decimal.Parse((parameters["VAT_NORMAL"] ?? "").Replace(".", ",")); |                     case "GA_ONLY": ModeDeliveryNoteStats = 1; break; | ||||||
|                 VatReduced = decimal.Parse((parameters["VAT_REDUCED"] ?? "").Replace(".", ",")); |                     case "SHORT": ModeDeliveryNoteStats = 2; break; | ||||||
|                 VatFlatRate = decimal.Parse((parameters["VAT_FLATRATE"] ?? "").Replace(".", ",")); |                     case "FULL": ModeDeliveryNoteStats = 3; break; | ||||||
|  |                 } | ||||||
|  |  | ||||||
|                 Sender2 = parameters.GetValueOrDefault("DOCUMENT_SENDER") ?? ""; |                 Sender2 = parameters.GetValueOrDefault("DOCUMENT_SENDER") ?? ""; | ||||||
|                 TextDeliveryNote = parameters.GetValueOrDefault("TEXT_DELIVERYNOTE"); |                 TextDeliveryNote = parameters.GetValueOrDefault("TEXT_DELIVERYNOTE"); | ||||||
|  |                 if (TextDeliveryNote == "") TextDeliveryNote = null; | ||||||
|  |                 TextDeliveryConfirmation = parameters.GetValueOrDefault("TEXT_DELIVERYCONFIRMATION"); | ||||||
|  |                 if (TextDeliveryConfirmation == "") TextDeliveryConfirmation = null; | ||||||
|             } catch { |             } catch { | ||||||
|                 throw new KeyNotFoundException(); |                 throw new KeyNotFoundException(); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         private IEnumerable<(string, string?)> GetParamValues() { |         private IEnumerable<(string, string?)> GetParamValues() { | ||||||
|  |             string deliveryNoteStats = "SHORT"; | ||||||
|  |             switch (ModeDeliveryNoteStats) { | ||||||
|  |                 case 0: deliveryNoteStats = "NONE"; break; | ||||||
|  |                 case 1: deliveryNoteStats = "GA_ONLY"; break; | ||||||
|  |                 case 2: deliveryNoteStats = "SHORT"; break; | ||||||
|  |                 case 3: deliveryNoteStats = "FULL"; break; | ||||||
|  |             } | ||||||
|             return new (string, string?)[] { |             return new (string, string?)[] { | ||||||
|                 ("CLIENT_NAME_TOKEN", NameToken), |                 ("CLIENT_NAME_TOKEN", NameToken), | ||||||
|                 ("CLIENT_NAME_SHORT", NameShort), |                 ("CLIENT_NAME_SHORT", NameShort), | ||||||
| @@ -110,13 +129,10 @@ namespace Elwig.Helpers { | |||||||
|                 ("CLIENT_USTIDNR", UstIdNr), |                 ("CLIENT_USTIDNR", UstIdNr), | ||||||
|                 ("CLIENT_BIC", Bic), |                 ("CLIENT_BIC", Bic), | ||||||
|                 ("CLIENT_IBAN", Iban), |                 ("CLIENT_IBAN", Iban), | ||||||
|                 ("DELIVERY_OBLIGATION", DeliveryObligation.ToString()), |                 ("MODE_DELIVERYNOTE_STATS", deliveryNoteStats), | ||||||
|                 ("DELIVERY_RIGHT", DeliveryRight.ToString()), |  | ||||||
|                 ("VAT_NORMAL", VatNormal.ToString().Replace(",", ".")), |  | ||||||
|                 ("VAT_REDUCED", VatReduced.ToString().Replace(",", ".")), |  | ||||||
|                 ("VAT_FLATRATE", VatFlatRate.ToString().Replace(",", ".")), |  | ||||||
|                 ("DOCUMENT_SENDER", Sender2), |                 ("DOCUMENT_SENDER", Sender2), | ||||||
|                 ("TEXT_DELIVERYNOTE", TextDeliveryNote), |                 ("TEXT_DELIVERYNOTE", TextDeliveryNote), | ||||||
|  |                 ("TEXT_DELIVERYCONFIRMATION", TextDeliveryConfirmation), | ||||||
|             }; |             }; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,14 @@ | |||||||
| namespace Elwig.Helpers { | namespace Elwig.Helpers { | ||||||
|     public class NullItem { |     public class NullItem { | ||||||
|         public static string Name => "- Keine Angabe -"; |  | ||||||
|  |         public string Name { get; private set; } | ||||||
|  |  | ||||||
|  |         public NullItem(string name = "- Keine Angabe -") { | ||||||
|  |             Name = name; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public override string ToString() { | ||||||
|  |             return Name; | ||||||
|  |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ using RazorLight; | |||||||
| using System; | using System; | ||||||
| using System.Threading.Tasks; | using System.Threading.Tasks; | ||||||
| 
 | 
 | ||||||
| namespace Elwig.Documents { | namespace Elwig.Helpers.Printing { | ||||||
|     public static class Html { |     public static class Html { | ||||||
| 
 | 
 | ||||||
|         private static RazorLightEngine? Engine = null; |         private static RazorLightEngine? Engine = null; | ||||||
| @@ -21,6 +21,7 @@ namespace Elwig.Documents { | |||||||
|             await e.CompileTemplateAsync("CreditNote"); |             await e.CompileTemplateAsync("CreditNote"); | ||||||
|             await e.CompileTemplateAsync("DeliveryJournal"); |             await e.CompileTemplateAsync("DeliveryJournal"); | ||||||
|             await e.CompileTemplateAsync("Letterhead"); |             await e.CompileTemplateAsync("Letterhead"); | ||||||
|  |             await e.CompileTemplateAsync("DeliveryConfirmation"); | ||||||
| 
 | 
 | ||||||
|             Engine = e; |             Engine = e; | ||||||
|             evtHandler(); |             evtHandler(); | ||||||
							
								
								
									
										85
									
								
								Elwig/Helpers/Printing/Pdf.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										85
									
								
								Elwig/Helpers/Printing/Pdf.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,85 @@ | |||||||
|  | using System.Threading.Tasks; | ||||||
|  | using Elwig.Windows; | ||||||
|  | using System.Diagnostics; | ||||||
|  | using System; | ||||||
|  | using System.IO; | ||||||
|  | using System.Collections.Generic; | ||||||
|  | using System.Windows; | ||||||
|  | using System.Text.RegularExpressions; | ||||||
|  | using System.Linq; | ||||||
|  |  | ||||||
|  | namespace Elwig.Helpers.Printing { | ||||||
|  |     public static class Pdf { | ||||||
|  |  | ||||||
|  |         private static readonly string PdfToPrinter = App.ExePath + "PDFtoPrinter.exe"; | ||||||
|  |         private static readonly string WinziPrint = App.ExePath + "WinziPrint.exe"; | ||||||
|  |         private static Process? WinziPrintProc; | ||||||
|  |         public static bool IsReady => WinziPrintProc != null; | ||||||
|  |  | ||||||
|  |  | ||||||
|  |         public static async Task Init(Action evtHandler) { | ||||||
|  |             var p = new Process() { StartInfo = new() { | ||||||
|  |                 FileName = WinziPrint, | ||||||
|  |                 CreateNoWindow = true, | ||||||
|  |                 UseShellExecute = false, | ||||||
|  |                 RedirectStandardInput = true, | ||||||
|  |                 RedirectStandardOutput = true | ||||||
|  |             } }; | ||||||
|  |             p.StartInfo.ArgumentList.Add("-p"); | ||||||
|  |             p.StartInfo.ArgumentList.Add("-e"); | ||||||
|  |             p.StartInfo.ArgumentList.Add("utf-8"); | ||||||
|  |             p.StartInfo.ArgumentList.Add("-d"); | ||||||
|  |             p.StartInfo.ArgumentList.Add(App.TempPath); | ||||||
|  |             p.StartInfo.ArgumentList.Add("-"); | ||||||
|  |             p.Start(); | ||||||
|  |             WinziPrintProc = p; | ||||||
|  |             evtHandler(); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public static async Task<IEnumerable<int>> Convert(string htmlPath, string pdfPath, bool doubleSided = false, IProgress<double>? progress = null) { | ||||||
|  |             return await Convert(new string[] { htmlPath }, pdfPath, doubleSided, progress); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public static async Task<IEnumerable<int>> Convert(IEnumerable<string> htmlPath, string pdfPath, bool doubleSided = false, IProgress<double>? progress = null) { | ||||||
|  |             if (WinziPrintProc == null) throw new InvalidOperationException("The WinziPrint process has not been initialized yet"); | ||||||
|  |             progress?.Report(0.0); | ||||||
|  |             await WinziPrintProc.StandardInput.WriteLineAsync((doubleSided ? "-2;" : "") + $"{string.Join(';', htmlPath)};{pdfPath}"); | ||||||
|  |             while (true) { | ||||||
|  |                 var line = await WinziPrintProc.StandardOutput.ReadLineAsync() ?? throw new IOException("Invalid response from WinziPrint"); | ||||||
|  |                 if (line.StartsWith("error:")) { | ||||||
|  |                     MessageBox.Show(line[6..].Trim(), "Fehler", MessageBoxButton.OK, MessageBoxImage.Error); | ||||||
|  |                     return Array.Empty<int>(); | ||||||
|  |                 } else if (line.StartsWith("progress:")) { | ||||||
|  |                     var parts = line[9..].Trim().Split('/').Select(int.Parse).ToArray(); | ||||||
|  |                     progress?.Report(100.0 * parts[0] / parts[1]); | ||||||
|  |                 } else if (line.StartsWith("success:")) { | ||||||
|  |                     var m = Regex.Match(line, @"\(([0-9, ]+)\)"); | ||||||
|  |                     return m.Groups[1].Value.Split(", ").Select(int.Parse); | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public static void Show(TempFile file, string title) { | ||||||
|  |             App.MainDispatcher.BeginInvoke(() => { | ||||||
|  |                 var w = new DocumentViewerWindow(title, file); | ||||||
|  |                 w.Show(); | ||||||
|  |             }); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public static void Show(string path, string title) { | ||||||
|  |             App.MainDispatcher.BeginInvoke(() => { | ||||||
|  |                 var w = new DocumentViewerWindow(title, path); | ||||||
|  |                 w.Show(); | ||||||
|  |             }); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         public static async Task Print(string path, int copies = 1) { | ||||||
|  |             var p = new Process() { StartInfo = new() { FileName = PdfToPrinter } }; | ||||||
|  |             p.StartInfo.ArgumentList.Add(path); | ||||||
|  |             p.StartInfo.ArgumentList.Add("/s"); | ||||||
|  |             p.StartInfo.ArgumentList.Add($"copies={copies}"); | ||||||
|  |             p.Start(); | ||||||
|  |             await p.WaitForExitAsync(); | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | } | ||||||
| @@ -5,6 +5,7 @@ namespace Elwig.Helpers { | |||||||
|     public sealed class TempFile : IDisposable { |     public sealed class TempFile : IDisposable { | ||||||
|         private int Usages = 0; |         private int Usages = 0; | ||||||
|         public string FilePath { get; private set; } |         public string FilePath { get; private set; } | ||||||
|  |         public string FileName => Path.GetFileName(FilePath); | ||||||
|  |  | ||||||
|         public TempFile() : this(null) { } |         public TempFile() : this(null) { } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -326,5 +326,20 @@ namespace Elwig.Helpers { | |||||||
|                 return (familyName, fullName.Replace(familyName, "").Replace("  ", " ").Trim()); |                 return (familyName, fullName.Replace(familyName, "").Replace("  ", " ").Trim()); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|  |  | ||||||
|  |         public static IEnumerable<IEnumerable<T>> Permutate<T>(IEnumerable<T> input, IEnumerable<T>? forced = null) { | ||||||
|  |             HashSet<IEnumerable<T>> output = new(); | ||||||
|  |             for (int i = 0; i < Math.Pow(2, input.Count()); i++) { | ||||||
|  |                 List<T> t = new(); | ||||||
|  |                 for (int j = 0; j < 30; j++) { | ||||||
|  |                     var e = input.ElementAtOrDefault(j); | ||||||
|  |                     if (e != null && ((forced?.Contains(e) ?? false) || (i & (1 << j)) != 0)) { | ||||||
|  |                         t.Add(e); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |                 output.Add(t); | ||||||
|  |             } | ||||||
|  |             return output.OrderByDescending(l => l.Count()); | ||||||
|  |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ using System.ComponentModel.DataAnnotations.Schema; | |||||||
| using IndexAttribute = Microsoft.EntityFrameworkCore.IndexAttribute; | using IndexAttribute = Microsoft.EntityFrameworkCore.IndexAttribute; | ||||||
|  |  | ||||||
| namespace Elwig.Models { | namespace Elwig.Models { | ||||||
|     [Table("area_commitment_type"), PrimaryKey("VtrgId"), Index("SortId", "AttrId1", "AttrId2", "Discriminator")] |     [Table("area_commitment_type"), PrimaryKey("VtrgId"), Index("SortId", "AttrId", "Discriminator", IsUnique = true)] | ||||||
|     public class AreaComType { |     public class AreaComType { | ||||||
|         [Column("vtrgid")] |         [Column("vtrgid")] | ||||||
|         public string VtrgId { get; set; } |         public string VtrgId { get; set; } | ||||||
| @@ -12,11 +12,8 @@ namespace Elwig.Models { | |||||||
|         [Column("sortid")] |         [Column("sortid")] | ||||||
|         public string SortId { get; set; } |         public string SortId { get; set; } | ||||||
|  |  | ||||||
|         [Column("attrid_1")] |         [Column("attrid")] | ||||||
|         public string? AttrId1 { get; set; } |         public string? AttrId { get; set; } | ||||||
|  |  | ||||||
|         [Column("attrid_2")] |  | ||||||
|         public string? AttrId2 { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("disc")] |         [Column("disc")] | ||||||
|         public string? Discriminator { get; set; } |         public string? Discriminator { get; set; } | ||||||
| @@ -24,29 +21,37 @@ namespace Elwig.Models { | |||||||
|         [Column("min_kg_per_ha")] |         [Column("min_kg_per_ha")] | ||||||
|         public int? MinKgPerHa { get; set; } |         public int? MinKgPerHa { get; set; } | ||||||
|  |  | ||||||
|         [Column("max_kg_per_ha")] |         [Column("penalty_per_kg")] | ||||||
|         public int? MaxKgPerHa { get; set; } |         public long? PenaltyPerKgValue { get; set; } | ||||||
|  |         [NotMapped] | ||||||
|  |         public decimal? PenaltyPerKg { | ||||||
|  |             get => PenaltyPerKgValue != null ? Utils.DecFromDb(PenaltyPerKgValue.Value, 4) : null; | ||||||
|  |             set => PenaltyPerKgValue = value != null ? Utils.DecToDb(value.Value, 4) : null; | ||||||
|  |         } | ||||||
|  |  | ||||||
|         [Column("penalty_amount")] |         [Column("penalty_amount")] | ||||||
|         public long? PenaltyAmoutValue { get; set; } |         public long? PenaltyAmoutValue { get; set; } | ||||||
|  |  | ||||||
|         [NotMapped] |         [NotMapped] | ||||||
|         public decimal? PenaltyAmount { |         public decimal? PenaltyAmount { | ||||||
|             get => PenaltyAmoutValue != null ? Utils.DecFromDb(PenaltyAmoutValue.Value, 4) : null; |             get => PenaltyAmoutValue != null ? Utils.DecFromDb(PenaltyAmoutValue.Value, 4) : null; | ||||||
|             set => PenaltyAmoutValue = value != null ? Utils.DecToDb(value.Value, 4) : null; |             set => PenaltyAmoutValue = value != null ? Utils.DecToDb(value.Value, 4) : null; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|  |         [Column("penalty_none")] | ||||||
|  |         public long? PenaltyNoneValue { get; set; } | ||||||
|  |         [NotMapped] | ||||||
|  |         public decimal? PenaltyNone { | ||||||
|  |             get => PenaltyNoneValue != null ? Utils.DecFromDb(PenaltyNoneValue.Value, 4) : null; | ||||||
|  |             set => PenaltyNoneValue = value != null ? Utils.DecToDb(value.Value, 4) : null; | ||||||
|  |         } | ||||||
|  |  | ||||||
|         [ForeignKey("SortId")] |         [ForeignKey("SortId")] | ||||||
|         public virtual WineVar WineVar { get; private set; } |         public virtual WineVar WineVar { get; private set; } | ||||||
|  |  | ||||||
|         [ForeignKey("AttrId1")] |         [ForeignKey("AttrId")] | ||||||
|         public virtual WineAttr? WineAttr1 { get; private set; } |         public virtual WineAttr? WineAttr { get; private set; } | ||||||
|  |  | ||||||
|         [ForeignKey("AttrId2")] |  | ||||||
|         public virtual WineAttr? WineAttr2 { get; private set; } |  | ||||||
|  |  | ||||||
|         [NotMapped] |         [NotMapped] | ||||||
|         public string DisplayName => WineVar.Name + (WineAttr1 != null ? $" {WineAttr1.Name}" : "") + |         public string DisplayName => WineVar.Name + (WineAttr != null ? $" {WineAttr.Name}" : "") + (Discriminator != null ? $" ({Discriminator})" : ""); | ||||||
|             (WineAttr2 != null ? $" {WineAttr2.Name}" : "") + (Discriminator != null ? $" ({Discriminator})" : ""); |  | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -1,9 +1,10 @@ | |||||||
| using Microsoft.EntityFrameworkCore; | using Microsoft.EntityFrameworkCore; | ||||||
| using System.Collections.Generic; | using System.Collections.Generic; | ||||||
| using System.ComponentModel.DataAnnotations.Schema; | using System.ComponentModel.DataAnnotations.Schema; | ||||||
|  | using IndexAttribute = Microsoft.EntityFrameworkCore.IndexAttribute; | ||||||
|  |  | ||||||
| namespace Elwig.Models { | namespace Elwig.Models { | ||||||
|     [Table("branch"), PrimaryKey("ZwstId")] |     [Table("branch"), PrimaryKey("ZwstId"), Index("Name", IsUnique = true)] | ||||||
|     public class Branch { |     public class Branch { | ||||||
|         [Column("zwstid")] |         [Column("zwstid")] | ||||||
|         public string ZwstId { get; set; } |         public string ZwstId { get; set; } | ||||||
|   | |||||||
| @@ -25,6 +25,12 @@ namespace Elwig.Models { | |||||||
|         [ForeignKey("SortId")] |         [ForeignKey("SortId")] | ||||||
|         public virtual WineVar Variant { get; private set; } |         public virtual WineVar Variant { get; private set; } | ||||||
|  |  | ||||||
|  |         [Column("attrid")] | ||||||
|  |         public string? AttrId { get; set; } | ||||||
|  |  | ||||||
|  |         [ForeignKey("AttrId")] | ||||||
|  |         public virtual WineAttr? Attribute { get; private set; } | ||||||
|  |  | ||||||
|         [Column("weight")] |         [Column("weight")] | ||||||
|         public int Weight { get; set; } |         public int Weight { get; set; } | ||||||
|  |  | ||||||
| @@ -75,6 +81,9 @@ namespace Elwig.Models { | |||||||
|         [Column("lesewagen")] |         [Column("lesewagen")] | ||||||
|         public bool? IsLesewagen { get; set; } |         public bool? IsLesewagen { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("gebunden")] | ||||||
|  |         public bool? IsGebunden { get; set; } | ||||||
|  |  | ||||||
|         [Column("temperature")] |         [Column("temperature")] | ||||||
|         public double? Temperature { get; set; } |         public double? Temperature { get; set; } | ||||||
|  |  | ||||||
| @@ -93,12 +102,6 @@ namespace Elwig.Models { | |||||||
|         [Column("comment")] |         [Column("comment")] | ||||||
|         public string? Comment { get; set; } |         public string? Comment { get; set; } | ||||||
|  |  | ||||||
|         [InverseProperty("Part")] |  | ||||||
|         public virtual ISet<DeliveryPartAttr> PartAttributes { get; private set; } |  | ||||||
|  |  | ||||||
|         [NotMapped] |  | ||||||
|         public IEnumerable<WineAttr> Attributes => PartAttributes.Select(a => a.Attr); |  | ||||||
|  |  | ||||||
|         [InverseProperty("Part")] |         [InverseProperty("Part")] | ||||||
|         public virtual ISet<DeliveryPartModifier> PartModifiers { get; private set; } |         public virtual ISet<DeliveryPartModifier> PartModifiers { get; private set; } | ||||||
|  |  | ||||||
| @@ -110,5 +113,8 @@ namespace Elwig.Models { | |||||||
|  |  | ||||||
|         [NotMapped] |         [NotMapped] | ||||||
|         public string OriginString => Origin.OriginString + "\n" + (Kg?.Gl != null ? $" / {Kg.Gl.Name}" : "") + (Kg != null ? $" / {Kg.AtKg.Gem.Name} / KG {Kg.AtKg.Name}" : "") + (Rd != null ? $" / Ried {Rd.Name}" : ""); |         public string OriginString => Origin.OriginString + "\n" + (Kg?.Gl != null ? $" / {Kg.Gl.Name}" : "") + (Kg != null ? $" / {Kg.AtKg.Gem.Name} / KG {Kg.AtKg.Name}" : "") + (Rd != null ? $" / Ried {Rd.Name}" : ""); | ||||||
|  |  | ||||||
|  |         [InverseProperty("Part")] | ||||||
|  |         public virtual ISet<DeliveryPartBucket> Bins { get; private set; } | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -2,8 +2,8 @@ using Microsoft.EntityFrameworkCore; | |||||||
| using System.ComponentModel.DataAnnotations.Schema; | using System.ComponentModel.DataAnnotations.Schema; | ||||||
| 
 | 
 | ||||||
| namespace Elwig.Models { | namespace Elwig.Models { | ||||||
|     [Table("delivery_part_attribute"), PrimaryKey("Year", "DId", "DPNr", "AttrId")] |     [Table("delivery_part_bucket"), PrimaryKey("Year", "DId", "DPNr", "BktNr")] | ||||||
|     public class DeliveryPartAttr { |     public class DeliveryPartBucket { | ||||||
|         [Column("year")] |         [Column("year")] | ||||||
|         public int Year { get; set; } |         public int Year { get; set; } | ||||||
| 
 | 
 | ||||||
| @@ -13,13 +13,16 @@ namespace Elwig.Models { | |||||||
|         [Column("dpnr")] |         [Column("dpnr")] | ||||||
|         public int DPNr { get; set; } |         public int DPNr { get; set; } | ||||||
| 
 | 
 | ||||||
|  |         [Column("bktnr")] | ||||||
|  |         public int BktNr { get; set; } | ||||||
|  | 
 | ||||||
|  |         [Column("discr")] | ||||||
|  |         public string Discr { get; set; } | ||||||
|  | 
 | ||||||
|  |         [Column("value")] | ||||||
|  |         public int Value { get; set; } | ||||||
|  | 
 | ||||||
|         [ForeignKey("Year, DId, DPNr")] |         [ForeignKey("Year, DId, DPNr")] | ||||||
|         public virtual DeliveryPart Part { get; private set; } |         public virtual DeliveryPart Part { get; private set; } | ||||||
| 
 |  | ||||||
|         [Column("attrid")] |  | ||||||
|         public string AttrId { get; set; } |  | ||||||
| 
 |  | ||||||
|         [ForeignKey("AttrId")] |  | ||||||
|         public virtual WineAttr Attr { get; private set; } |  | ||||||
|     } |     } | ||||||
| } | } | ||||||
| @@ -104,6 +104,9 @@ namespace Elwig.Models { | |||||||
|         [Column("buchführend")] |         [Column("buchführend")] | ||||||
|         public bool IsBuchführend { get; set; } |         public bool IsBuchführend { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("organic")] | ||||||
|  |         public bool IsOrganic { get; set; } | ||||||
|  |  | ||||||
|         [Column("funktionär")] |         [Column("funktionär")] | ||||||
|         public bool IsFunktionär { get; set; } |         public bool IsFunktionär { get; set; } | ||||||
|  |  | ||||||
| @@ -176,9 +179,6 @@ namespace Elwig.Models { | |||||||
|  |  | ||||||
|         public string FullAddress => $"{Address}, {PostalDest.AtPlz.Plz} {PostalDest.AtPlz.Ort.Name}"; |         public string FullAddress => $"{Address}, {PostalDest.AtPlz.Plz} {PostalDest.AtPlz.Ort.Name}"; | ||||||
|  |  | ||||||
|         public int DeliveryRight => BusinessShares * App.Client.DeliveryRight; |  | ||||||
|         public int DeliveryObligation => BusinessShares * App.Client.DeliveryObligation; |  | ||||||
|  |  | ||||||
|         public int SearchScore(IEnumerable<string> keywords) { |         public int SearchScore(IEnumerable<string> keywords) { | ||||||
|             return Utils.GetSearchScore(new string?[] { |             return Utils.GetSearchScore(new string?[] { | ||||||
|                 MgNr.ToString(), |                 MgNr.ToString(), | ||||||
|   | |||||||
| @@ -1,7 +1,5 @@ | |||||||
| using Microsoft.EntityFrameworkCore; | using Microsoft.EntityFrameworkCore; | ||||||
| using System.Collections.Generic; |  | ||||||
| using System.ComponentModel.DataAnnotations.Schema; | using System.ComponentModel.DataAnnotations.Schema; | ||||||
| using System.Linq; |  | ||||||
|  |  | ||||||
| namespace Elwig.Models { | namespace Elwig.Models { | ||||||
|     [Table("payment_delivery_part"), PrimaryKey("Year", "DId", "DPNr", "AvNr")] |     [Table("payment_delivery_part"), PrimaryKey("Year", "DId", "DPNr", "AvNr")] | ||||||
| @@ -34,109 +32,6 @@ namespace Elwig.Models { | |||||||
|             set => ModRelValue = (double)value; |             set => ModRelValue = (double)value; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         [Column("bucket_1")] |  | ||||||
|         public int? Bucket1 { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_2")] |  | ||||||
|         public int? Bucket2 { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_3")] |  | ||||||
|         public int? Bucket3 { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_4")] |  | ||||||
|         public int? Bucket4 { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_5")] |  | ||||||
|         public int? Bucket5 { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_6")] |  | ||||||
|         public int? Bucket6 { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_7")] |  | ||||||
|         public int? Bucket7 { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_8")] |  | ||||||
|         public int? Bucket8 { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_9")] |  | ||||||
|         public int? Bucket9 { get; set; } |  | ||||||
|  |  | ||||||
|         [NotMapped] |  | ||||||
|         public int[] Buckets => (new int?[] { Bucket1, Bucket2, Bucket3, Bucket4, Bucket5, Bucket6, Bucket7, Bucket8, Bucket9 }) |  | ||||||
|             .Where(b => b != null).Select(b => b.Value).ToArray(); |  | ||||||
|  |  | ||||||
|         [Column("price_1")] |  | ||||||
|         public long? Price1Value { get; set; } |  | ||||||
|         [NotMapped] |  | ||||||
|         public decimal? Price1 { |  | ||||||
|             get => Price1Value != null ? Variant.Season.DecFromDb(Price1Value.Value) : null; |  | ||||||
|             set => Price1Value = value != null ? Variant.Season.DecToDb(value.Value) : null; |  | ||||||
|         } |  | ||||||
|  |  | ||||||
|         [Column("price_2")] |  | ||||||
|         public long? Price2Value { get; set; } |  | ||||||
|         [NotMapped] |  | ||||||
|         public decimal? Price2 { |  | ||||||
| 			get => Price2Value != null ? Variant.Season.DecFromDb(Price2Value.Value) : null; |  | ||||||
| 			set => Price2Value = value != null ? Variant.Season.DecToDb(value.Value) : null; |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
|         [Column("price_3")] |  | ||||||
|         public long? Price3Value { get; set; } |  | ||||||
|         [NotMapped] |  | ||||||
|         public decimal? Price3 { |  | ||||||
| 			get => Price3Value != null ? Variant.Season.DecFromDb(Price3Value.Value) : null; |  | ||||||
| 			set => Price3Value = value != null ? Variant.Season.DecToDb(value.Value) : null; |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
|         [Column("price_4")] |  | ||||||
|         public long? Price4Value { get; set; } |  | ||||||
|         [NotMapped] |  | ||||||
|         public decimal? Price4 { |  | ||||||
| 			get => Price4Value != null ? Variant.Season.DecFromDb(Price4Value.Value) : null; |  | ||||||
| 			set => Price4Value = value != null ? Variant.Season.DecToDb(value.Value) : null; |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
|         [Column("price_5")] |  | ||||||
|         public long? Price5Value { get; set; } |  | ||||||
|         [NotMapped] |  | ||||||
|         public decimal? Price5 { |  | ||||||
| 			get => Price5Value != null ? Variant.Season.DecFromDb(Price5Value.Value) : null; |  | ||||||
| 			set => Price5Value = value != null ? Variant.Season.DecToDb(value.Value) : null; |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
|         [Column("price_6")] |  | ||||||
|         public long? Price6Value { get; set; } |  | ||||||
|         [NotMapped] |  | ||||||
|         public decimal? Price6 { |  | ||||||
| 			get => Price6Value != null ? Variant.Season.DecFromDb(Price6Value.Value) : null; |  | ||||||
| 			set => Price6Value = value != null ? Variant.Season.DecToDb(value.Value) : null; |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
|         [Column("price_7")] |  | ||||||
|         public long? Price7Value { get; set; } |  | ||||||
|         [NotMapped] |  | ||||||
|         public decimal? Price7 { |  | ||||||
| 			get => Price7Value != null ? Variant.Season.DecFromDb(Price7Value.Value) : null; |  | ||||||
| 			set => Price7Value = value != null ? Variant.Season.DecToDb(value.Value) : null; |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
|         [Column("price_8")] |  | ||||||
|         public long? Price8Value { get; set; } |  | ||||||
|         [NotMapped] |  | ||||||
|         public decimal? Price8 { |  | ||||||
| 			get => Price8Value != null ? Variant.Season.DecFromDb(Price8Value.Value) : null; |  | ||||||
| 			set => Price8Value = value != null ? Variant.Season.DecToDb(value.Value) : null; |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
|         [Column("price_9")] |  | ||||||
|         public long? Price9Value { get; set; } |  | ||||||
|         [NotMapped] |  | ||||||
|         public decimal? Price9 { |  | ||||||
| 			get => Price9Value != null ? Variant.Season.DecFromDb(Price9Value.Value) : null; |  | ||||||
| 			set => Price9Value = value != null ? Variant.Season.DecToDb(value.Value) : null; |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
|         [Column("amount")] |         [Column("amount")] | ||||||
|         public long? AmountValue { get; set; } |         public long? AmountValue { get; set; } | ||||||
|         [NotMapped] |         [NotMapped] | ||||||
| @@ -145,10 +40,6 @@ namespace Elwig.Models { | |||||||
|             set => AmountValue = value != null ? Variant.Season.DecToDb(value.Value) : null; |             set => AmountValue = value != null ? Variant.Season.DecToDb(value.Value) : null; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         [NotMapped] |  | ||||||
|         public decimal[] Prices => (new decimal?[] { Price1, Price2, Price3, Price4, Price5, Price6, Price7, Price8, Price9 }) |  | ||||||
|             .Where(p => p != null).Select(p => p.Value).ToArray(); |  | ||||||
|  |  | ||||||
|         [ForeignKey("Year, AvNr")] |         [ForeignKey("Year, AvNr")] | ||||||
|         public virtual PaymentVar Variant { get; private set; } |         public virtual PaymentVar Variant { get; private set; } | ||||||
|  |  | ||||||
|   | |||||||
							
								
								
									
										44
									
								
								Elwig/Models/PaymentDeliveryPartBucket.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								Elwig/Models/PaymentDeliveryPartBucket.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,44 @@ | |||||||
|  | using Microsoft.EntityFrameworkCore; | ||||||
|  | using System.ComponentModel.DataAnnotations.Schema; | ||||||
|  |  | ||||||
|  | namespace Elwig.Models { | ||||||
|  |     [Table("payment_delivery_part_bucket"), PrimaryKey("Year", "DId", "DPNr", "BktNr", "AvNr")] | ||||||
|  |     public class PaymentDeliveryPartBucket { | ||||||
|  |         [Column("year")] | ||||||
|  |         public int Year { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("did")] | ||||||
|  |         public int DId { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("dpnr")] | ||||||
|  |         public int DPNr { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("bktnr")] | ||||||
|  |         public int BktNr { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("avnr")] | ||||||
|  |         public int AvNr { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("price")] | ||||||
|  |         public long PriceValue { get; set; } | ||||||
|  |         [NotMapped] | ||||||
|  |         public decimal Price { | ||||||
|  |             get => Variant.Season.DecFromDb(PriceValue); | ||||||
|  |             set => PriceValue = Variant.Season.DecToDb(value); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         [Column("amount")] | ||||||
|  |         public long AmountValue { get; set; } | ||||||
|  |         [NotMapped] | ||||||
|  |         public decimal Amount { | ||||||
|  |             get => Variant.Season.DecFromDb(AmountValue); | ||||||
|  |             set => AmountValue = Variant.Season.DecToDb(value); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         [ForeignKey("Year, AvNr")] | ||||||
|  |         public virtual PaymentVar Variant { get; private set; } | ||||||
|  |  | ||||||
|  |         [ForeignKey("Year, DId, DPNr")] | ||||||
|  |         public virtual DeliveryPart DeliveryPart { get; private set; } | ||||||
|  |     } | ||||||
|  | } | ||||||
| @@ -40,37 +40,6 @@ namespace Elwig.Models { | |||||||
|         [Column("calc_time")] |         [Column("calc_time")] | ||||||
|         public int? CalcTime { get; set; } |         public int? CalcTime { get; set; } | ||||||
|  |  | ||||||
|         [Column("bucket_1_name")] |  | ||||||
|         public string? Bucket1Name { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_2_name")] |  | ||||||
|         public string? Bucket2Name { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_3_name")] |  | ||||||
|         public string? Bucket3Name { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_4_name")] |  | ||||||
|         public string? Bucket4Name { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_5_name")] |  | ||||||
|         public string? Bucket5Name { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_6_name")] |  | ||||||
|         public string? Bucket6Name { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_7_name")] |  | ||||||
|         public string? Bucket7Name { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_8_name")] |  | ||||||
|         public string? Bucket8Name { get; set; } |  | ||||||
|  |  | ||||||
|         [Column("bucket_9_name")] |  | ||||||
|         public string? Bucket9Name { get; set; } |  | ||||||
|  |  | ||||||
|         [NotMapped] |  | ||||||
|         public string[] BucketNames => (new string?[] { Bucket1Name, Bucket2Name, Bucket3Name, Bucket4Name, Bucket5Name, Bucket6Name, Bucket7Name, Bucket8Name, Bucket9Name }) |  | ||||||
| 			.Where(n => n != null).Select(n => n ?? "").ToArray(); |  | ||||||
|  |  | ||||||
|         [Column("comment")] |         [Column("comment")] | ||||||
|         public string? Comment { get; set; } |         public string? Comment { get; set; } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -16,17 +16,52 @@ namespace Elwig.Models { | |||||||
|         [Column("precision")] |         [Column("precision")] | ||||||
|         public byte Precision { get; set; } |         public byte Precision { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("max_kg_per_ha")] | ||||||
|  |         public int MaxKgPerHa { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("vat_normal")] | ||||||
|  |         public double VatNormal { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("vat_flatrate")] | ||||||
|  |         public double VatFlatrate { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("min_kg_per_bs")] | ||||||
|  |         public int MinKgPerBusinessShare { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("max_kg_per_bs")] | ||||||
|  |         public int MaxKgPerBusinessShare { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("penalty_per_kg")] | ||||||
|  |         public long? PenaltyPerKgValue { get; set; } | ||||||
|  |         [NotMapped] | ||||||
|  |         public decimal? PenaltyPerKg { | ||||||
|  |             get => PenaltyPerKgValue != null ? DecFromDb(PenaltyPerKgValue.Value) : null; | ||||||
|  |             set => PenaltyPerKgValue = value != null ? DecToDb(value.Value) : null; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         [Column("penalty_amount")] | ||||||
|  |         public long? PenaltyAmoutValue { get; set; } | ||||||
|  |         [NotMapped] | ||||||
|  |         public decimal? PenaltyAmount { | ||||||
|  |             get => PenaltyAmoutValue != null ? DecFromDb(PenaltyAmoutValue.Value) : null; | ||||||
|  |             set => PenaltyAmoutValue = value != null ? DecToDb(value.Value) : null; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         [Column("penalty_none")] | ||||||
|  |         public long? PenaltyNoneValue { get; set; } | ||||||
|  |         [NotMapped] | ||||||
|  |         public decimal? PenaltyNone { | ||||||
|  |             get => PenaltyNoneValue != null ? DecFromDb(PenaltyNoneValue.Value) : null; | ||||||
|  |             set => PenaltyNoneValue = value != null ? DecToDb(value.Value) : null; | ||||||
|  |         } | ||||||
|  |  | ||||||
|         [Column("start_date")] |         [Column("start_date")] | ||||||
|         public string? StartDateString { get; set; } |         public string? StartDateString { get; set; } | ||||||
|  |  | ||||||
|         [NotMapped] |         [NotMapped] | ||||||
|         public DateOnly? StartDate { |         public DateOnly? StartDate { | ||||||
|             get { |             get => StartDateString != null ? DateOnly.ParseExact(StartDateString, "yyyy-MM-dd") : null; | ||||||
|                 return StartDateString != null ? DateOnly.ParseExact(StartDateString, "yyyy-MM-dd") : null; |             set => StartDateString = value?.ToString("yyyy-MM-dd"); | ||||||
|             } |  | ||||||
|             set { |  | ||||||
|                 StartDateString = value?.ToString("yyyy-MM-dd"); |  | ||||||
|             } |  | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         [Column("end_date")] |         [Column("end_date")] | ||||||
| @@ -34,12 +69,8 @@ namespace Elwig.Models { | |||||||
|  |  | ||||||
|         [NotMapped] |         [NotMapped] | ||||||
|         public DateOnly? EndDate { |         public DateOnly? EndDate { | ||||||
|             get { |             get => EndDateString != null ? DateOnly.ParseExact(EndDateString, "yyyy-MM-dd") : null; | ||||||
|                 return EndDateString != null ? DateOnly.ParseExact(EndDateString, "yyyy-MM-dd") : null; |             set => EndDateString = value?.ToString("yyyy-MM-dd"); | ||||||
|             } |  | ||||||
|             set { |  | ||||||
|                 EndDateString = value?.ToString("yyyy-MM-dd"); |  | ||||||
|             } |  | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         [ForeignKey("CurrencyCode")] |         [ForeignKey("CurrencyCode")] | ||||||
|   | |||||||
| @@ -1,8 +1,9 @@ | |||||||
| using Microsoft.EntityFrameworkCore; | using Microsoft.EntityFrameworkCore; | ||||||
| using System.ComponentModel.DataAnnotations.Schema; | using System.ComponentModel.DataAnnotations.Schema; | ||||||
|  | using IndexAttribute = Microsoft.EntityFrameworkCore.IndexAttribute; | ||||||
|  |  | ||||||
| namespace Elwig.Models { | namespace Elwig.Models { | ||||||
|     [Table("wine_attribute"), PrimaryKey("AttrId")] |     [Table("wine_attribute"), PrimaryKey("AttrId"), Index("Name", IsUnique = true)] | ||||||
|     public class WineAttr { |     public class WineAttr { | ||||||
|         [Column("attrid")] |         [Column("attrid")] | ||||||
|         public string AttrId { get; set; } |         public string AttrId { get; set; } | ||||||
| @@ -10,11 +11,18 @@ namespace Elwig.Models { | |||||||
|         [Column("name")] |         [Column("name")] | ||||||
|         public string Name { get; set; } |         public string Name { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("active")] | ||||||
|  |         public bool IsActive { get; set; } | ||||||
|  |  | ||||||
|         [Column("max_kg_per_ha")] |         [Column("max_kg_per_ha")] | ||||||
|         public int? MaxKgPerHa { get; set; } |         public int? MaxKgPerHa { get; set; } | ||||||
|  |  | ||||||
|         [Column("active")] |         [Column("strict")] | ||||||
|         public bool IsActive { get; set; } |         public bool IsStrict { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("fill_lower")] | ||||||
|  |         public int FillLower { get; set; } | ||||||
|  |  | ||||||
|         public override string ToString() { |         public override string ToString() { | ||||||
|             return Name; |             return Name; | ||||||
|         } |         } | ||||||
|   | |||||||
| @@ -1,13 +1,17 @@ | |||||||
| using Microsoft.EntityFrameworkCore; | using Microsoft.EntityFrameworkCore; | ||||||
| using System.ComponentModel.DataAnnotations.Schema; | using System.ComponentModel.DataAnnotations.Schema; | ||||||
|  | using IndexAttribute = Microsoft.EntityFrameworkCore.IndexAttribute; | ||||||
|  |  | ||||||
| namespace Elwig.Models { | namespace Elwig.Models { | ||||||
|     [Table("wine_cultivation"), PrimaryKey("CultId")] |     [Table("wine_cultivation"), PrimaryKey("CultId"), Index("Name", IsUnique = true)] | ||||||
|     public class WineCult { |     public class WineCult { | ||||||
|         [Column("cultid")] |         [Column("cultid")] | ||||||
|         public string CultId { get; set; } |         public string CultId { get; set; } | ||||||
|  |  | ||||||
|         [Column("name")] |         [Column("name")] | ||||||
|         public string Name { get; set; } |         public string Name { get; set; } | ||||||
|  |  | ||||||
|  |         [Column("description")] | ||||||
|  |         public string Description { get; set; } | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
| Before Width: | Height: | Size: 229 KiB After Width: | Height: | Size: 229 KiB | 
| Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB | 
| @@ -83,7 +83,7 @@ namespace Elwig.Windows { | |||||||
|  |  | ||||||
|         private void OnClosing(object? sender, CancelEventArgs evt) { |         private void OnClosing(object? sender, CancelEventArgs evt) { | ||||||
|             if ((IsCreating || IsEditing) && HasChanged) { |             if ((IsCreating || IsEditing) && HasChanged) { | ||||||
|                 var r = System.Windows.MessageBox.Show("Soll das Fenster wirklich geschlossen werden?", "Schlie<EFBFBD>en best<EFBFBD>tigen", |                 var r = System.Windows.MessageBox.Show("Soll das Fenster wirklich geschlossen werden?", "Schließen bestätigen", | ||||||
|                     MessageBoxButton.YesNo, MessageBoxImage.Warning, MessageBoxResult.No); |                     MessageBoxButton.YesNo, MessageBoxImage.Warning, MessageBoxResult.No); | ||||||
|                 if (r != MessageBoxResult.Yes) { |                 if (r != MessageBoxResult.Yes) { | ||||||
|                     evt.Cancel = true; |                     evt.Cancel = true; | ||||||
| @@ -252,9 +252,9 @@ namespace Elwig.Windows { | |||||||
|             foreach (var ccb in CheckComboBoxInputs) |             foreach (var ccb in CheckComboBoxInputs) | ||||||
|                 ccb.SelectedItems.Clear(); |                 ccb.SelectedItems.Clear(); | ||||||
|             foreach (var cb in CheckBoxInputs) |             foreach (var cb in CheckBoxInputs) | ||||||
|                 cb.IsChecked = false; |                 cb.IsChecked = cb.IsThreeState ? null : false; | ||||||
|             foreach (var rb in RadioButtonInputs) |             foreach (var rb in RadioButtonInputs) | ||||||
|                 rb.IsChecked = false; |                 rb.IsChecked = rb.IsThreeState ? null : false; | ||||||
|             if (validate) ValidateRequiredInputs(); |             if (validate) ValidateRequiredInputs(); | ||||||
|         } |         } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -6,7 +6,7 @@ | |||||||
|         xmlns:local="clr-namespace:Elwig.Windows" |         xmlns:local="clr-namespace:Elwig.Windows" | ||||||
|         mc:Ignorable="d" |         mc:Ignorable="d" | ||||||
|         xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" |         xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" | ||||||
|         Title="Flächenbindungen - Elwig" Height="480" Width="850" |         Title="Flächenbindungen - Elwig" Height="480" Width="1100" | ||||||
|         Loaded="Window_Loaded"> |         Loaded="Window_Loaded"> | ||||||
|     <Window.Resources> |     <Window.Resources> | ||||||
|         <Style TargetType="Label"> |         <Style TargetType="Label"> | ||||||
| @@ -52,7 +52,7 @@ | |||||||
|         </Grid.RowDefinitions> |         </Grid.RowDefinitions> | ||||||
|         <Grid.ColumnDefinitions> |         <Grid.ColumnDefinitions> | ||||||
|             <ColumnDefinition Width="*"/> |             <ColumnDefinition Width="*"/> | ||||||
|             <ColumnDefinition Width="330"/> |             <ColumnDefinition Width="340"/> | ||||||
|         </Grid.ColumnDefinitions> |         </Grid.ColumnDefinitions> | ||||||
|  |  | ||||||
|         <Menu Grid.ColumnSpan="2" BorderThickness="0,0,0,1" BorderBrush="LightGray" Background="White"> |         <Menu Grid.ColumnSpan="2" BorderThickness="0,0,0,1" BorderBrush="LightGray" Background="White"> | ||||||
| @@ -74,13 +74,15 @@ | |||||||
|                     <DataGridTextColumn Header="Katastralgemeinde"  Binding="{Binding Kg.AtKg.Name}"  Width="6*"/> |                     <DataGridTextColumn Header="Katastralgemeinde"  Binding="{Binding Kg.AtKg.Name}"  Width="6*"/> | ||||||
|                     <DataGridTextColumn Header="Ried"               Binding="{Binding Rd.Name}"       Width="4*"/> |                     <DataGridTextColumn Header="Ried"               Binding="{Binding Rd.Name}"       Width="4*"/> | ||||||
|                     <DataGridTextColumn Header="Parzelle"           Binding="{Binding GstNr}"         Width="4*"/> |                     <DataGridTextColumn Header="Parzelle"           Binding="{Binding GstNr}"         Width="4*"/> | ||||||
|                     <DataGridTextColumn Header="Fläche"             Binding="{Binding Area, StringFormat='{}{0:N0} m²'}" Width="4*"> |                     <DataGridTextColumn Header="Fläche"             Binding="{Binding Area, StringFormat='{}{0:N0} m²'}" Width="3*"> | ||||||
|                         <DataGridTextColumn.CellStyle> |                         <DataGridTextColumn.CellStyle> | ||||||
|                             <Style> |                             <Style> | ||||||
|                                 <Setter Property="TextBlock.TextAlignment" Value="Right"/> |                                 <Setter Property="TextBlock.TextAlignment" Value="Right"/> | ||||||
|                             </Style> |                             </Style> | ||||||
|                         </DataGridTextColumn.CellStyle> |                         </DataGridTextColumn.CellStyle> | ||||||
|                     </DataGridTextColumn> |                     </DataGridTextColumn> | ||||||
|  |                     <DataGridTextColumn Header="Sorte"           Binding="{Binding AreaComType.WineVar.Name}" Width="4*"/> | ||||||
|  |                     <DataGridTextColumn Header="Attribut"           Binding="{Binding AreaComType.WineAttr1.Name}" Width="3*"/> | ||||||
|                 </DataGrid.Columns> |                 </DataGrid.Columns> | ||||||
|             </DataGrid> |             </DataGrid> | ||||||
|  |  | ||||||
|   | |||||||
| @@ -24,7 +24,7 @@ namespace Elwig.Windows { | |||||||
|                 AreaCommitmentResetButton, AreaCommitmentCancelButton |                 AreaCommitmentResetButton, AreaCommitmentCancelButton | ||||||
|             }; |             }; | ||||||
|             RequiredInputs = new Control[] { |             RequiredInputs = new Control[] { | ||||||
|                 FbNrInput, YearFromInput, KgInput, |                 FbNrInput, YearFromInput, KgInput, RdInput, | ||||||
|                 GstNrInput, AreaInput, AreaComTypeInput, WineCultivationInput |                 GstNrInput, AreaInput, AreaComTypeInput, WineCultivationInput | ||||||
|             }; |             }; | ||||||
|         } |         } | ||||||
| @@ -281,10 +281,10 @@ namespace Elwig.Windows { | |||||||
|             if (KgInput.SelectedItem is AT_Kg curr_kg) { |             if (KgInput.SelectedItem is AT_Kg curr_kg) { | ||||||
|                 var rdList = await Context.WbRde.Where(r => r.KgNr == curr_kg.KgNr).OrderBy(r => r.Name).Cast<object>().ToListAsync(); |                 var rdList = await Context.WbRde.Where(r => r.KgNr == curr_kg.KgNr).OrderBy(r => r.Name).Cast<object>().ToListAsync(); | ||||||
|                 rdList.Insert(0, new NullItem()); |                 rdList.Insert(0, new NullItem()); | ||||||
|                 ControlUtils.RenewItemsSource(RdInput, rdList, i => (i as WbRd)?.RdNr); |                 ControlUtils.RenewItemsSource(RdInput, rdList, i => (i as WbRd)?.RdNr, null, ControlUtils.RenewSourceDefault.First); | ||||||
|             } else { |             } else { | ||||||
|                 var rdList = new object[] { new NullItem() }; |                 var rdList = new object[] { new NullItem() }; | ||||||
|                 ControlUtils.RenewItemsSource(RdInput, rdList, i => (i as WbRd)?.RdNr); |                 ControlUtils.RenewItemsSource(RdInput, rdList, i => (i as WbRd)?.RdNr, null, ControlUtils.RenewSourceDefault.First); | ||||||
|             } |             } | ||||||
|             ComboBox_SelectionChanged(sender, evt); |             ComboBox_SelectionChanged(sender, evt); | ||||||
|         } |         } | ||||||
|   | |||||||
| @@ -215,7 +215,45 @@ | |||||||
|  |  | ||||||
|             </TabItem> |             </TabItem> | ||||||
|             <TabItem Header="Textelemente"> |             <TabItem Header="Textelemente"> | ||||||
|  |                 <ScrollViewer VerticalScrollBarVisibility="Visible"> | ||||||
|  |                     <StackPanel> | ||||||
|  |                         <GroupBox Header="Lieferschein" Margin="10,10,10,10" Height="180"> | ||||||
|  |                             <Grid> | ||||||
|  |                                 <Grid.ColumnDefinitions> | ||||||
|  |                                     <ColumnDefinition Width="*"/> | ||||||
|  |                                     <ColumnDefinition Width="370"/> | ||||||
|  |                                 </Grid.ColumnDefinitions> | ||||||
|  |  | ||||||
|  |                                 <TextBox x:Name="TextElementDeliveryNote" TextWrapping="Wrap" VerticalScrollBarVisibility="Visible" | ||||||
|  |                                          HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="10,10,10,10" Height="Auto" | ||||||
|  |                                          TextChanged="TextBox_TextChanged"/> | ||||||
|  |                                 <GroupBox Grid.Column="1" Header="Tabelle zur Gesamtlieferung" Margin="10,10,10,10" VerticalAlignment="Center"> | ||||||
|  |                                     <StackPanel Margin="5,5,0,5"> | ||||||
|  |                                         <RadioButton GroupName="ModeDeliveryNote" x:Name="ModeDeliveryNoteNone" Content="Verbergen" | ||||||
|  |                                                      Checked="RadioButton_Changed" Unchecked="RadioButton_Changed"/> | ||||||
|  |                                         <RadioButton GroupName="ModeDeliveryNote" x:Name="ModeDeliveryNoteGaOnly" Content="Nur Gesamtlieferung lt. Geschäftsanteilen anzeigen" | ||||||
|  |                                                      Checked="RadioButton_Changed" Unchecked="RadioButton_Changed"/> | ||||||
|  |                                         <RadioButton GroupName="ModeDeliveryNote" x:Name="ModeDeliveryNoteShort" Content="Nur Gesamtlieferung und Flächenbindungen von auf dem
Lieferschein angeführten Sorten anzeigen" | ||||||
|  |                                                      Checked="RadioButton_Changed" Unchecked="RadioButton_Changed"/> | ||||||
|  |                                         <RadioButton GroupName="ModeDeliveryNote" x:Name="ModeDeliveryNoteFull" Content="Vollständig anzeigen" | ||||||
|  |                                                      Checked="RadioButton_Changed" Unchecked="RadioButton_Changed"/> | ||||||
|  |                                     </StackPanel> | ||||||
|  |                                 </GroupBox> | ||||||
|  |                             </Grid> | ||||||
|  |                         </GroupBox> | ||||||
|  |                         <GroupBox Header="Anlieferungsbestätigung" Margin="10,10,10,10" Height="250"> | ||||||
|  |                             <Grid> | ||||||
|  |                                 <Grid.ColumnDefinitions> | ||||||
|  |                                     <ColumnDefinition Width="*"/> | ||||||
|  |                                 </Grid.ColumnDefinitions> | ||||||
|  |  | ||||||
|  |                                 <TextBox x:Name="TextElementDeliveryConfirmation" TextWrapping="Wrap" VerticalScrollBarVisibility="Visible" AcceptsReturn="True" | ||||||
|  |                                          HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="10,10,10,10" Height="Auto" | ||||||
|  |                                          TextChanged="TextBox_TextChanged"/> | ||||||
|  |                             </Grid> | ||||||
|  |                         </GroupBox> | ||||||
|  |                     </StackPanel> | ||||||
|  |                 </ScrollViewer> | ||||||
|             </TabItem> |             </TabItem> | ||||||
|         </TabControl> |         </TabControl> | ||||||
|  |  | ||||||
|   | |||||||
| @@ -201,6 +201,15 @@ namespace Elwig.Windows { | |||||||
|             ClientEmailAddressInput.Text = p.EmailAddress; |             ClientEmailAddressInput.Text = p.EmailAddress; | ||||||
|             ClientWebsiteInput.Text = p.Website; |             ClientWebsiteInput.Text = p.Website; | ||||||
|  |  | ||||||
|  |             TextElementDeliveryNote.Text = p.TextDeliveryNote; | ||||||
|  |             switch (p.ModeDeliveryNoteStats) { | ||||||
|  |                 case 0: ModeDeliveryNoteNone.IsChecked = true; break; | ||||||
|  |                 case 1: ModeDeliveryNoteGaOnly.IsChecked = true; break; | ||||||
|  |                 case 2: ModeDeliveryNoteShort.IsChecked = true; break; | ||||||
|  |                 case 3: ModeDeliveryNoteFull.IsChecked = true; break; | ||||||
|  |             } | ||||||
|  |             TextElementDeliveryConfirmation.Text = p.TextDeliveryConfirmation; | ||||||
|  |  | ||||||
|             FinishInputFilling(); |             FinishInputFilling(); | ||||||
|         } |         } | ||||||
|  |  | ||||||
| @@ -222,6 +231,10 @@ namespace Elwig.Windows { | |||||||
|             p.EmailAddress = ClientEmailAddressInput.Text.Length > 0 ? ClientEmailAddressInput.Text : null; |             p.EmailAddress = ClientEmailAddressInput.Text.Length > 0 ? ClientEmailAddressInput.Text : null; | ||||||
|             p.Website = ClientWebsiteInput.Text.Length > 0 ? ClientWebsiteInput.Text : null; |             p.Website = ClientWebsiteInput.Text.Length > 0 ? ClientWebsiteInput.Text : null; | ||||||
|  |  | ||||||
|  |             p.TextDeliveryNote = TextElementDeliveryNote.Text.Length > 0 ? TextElementDeliveryNote.Text : null; | ||||||
|  |             p.ModeDeliveryNoteStats = (ModeDeliveryNoteNone.IsChecked == true) ? 0 : (ModeDeliveryNoteGaOnly.IsChecked == true) ? 1 : (ModeDeliveryNoteShort.IsChecked == true) ? 2 : (ModeDeliveryNoteFull.IsChecked == true) ? 3 : 2; | ||||||
|  |             p.TextDeliveryConfirmation = TextElementDeliveryConfirmation.Text.Length > 0 ? TextElementDeliveryConfirmation.Text : null; | ||||||
|  |  | ||||||
|             await p.UpdateValues(); |             await p.UpdateValues(); | ||||||
|         } |         } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -150,6 +150,7 @@ | |||||||
|                         </DataGridTextColumn.CellStyle> |                         </DataGridTextColumn.CellStyle> | ||||||
|                     </DataGridTextColumn> |                     </DataGridTextColumn> | ||||||
|                     <DataGridTextColumn Header="LsNr." Binding="{Binding LsNr}" Width="120"/> |                     <DataGridTextColumn Header="LsNr." Binding="{Binding LsNr}" Width="120"/> | ||||||
|  |                     <DataGridTextColumn Header="Mitglied" Binding="{Binding Member.AdministrativeName}" Width="180"/> | ||||||
|                 </DataGrid.Columns> |                 </DataGrid.Columns> | ||||||
|             </DataGrid> |             </DataGrid> | ||||||
|  |  | ||||||
| @@ -270,10 +271,10 @@ | |||||||
|                               ItemTemplate="{StaticResource WineVarietyTemplate}" TextSearch.TextPath="Name"  |                               ItemTemplate="{StaticResource WineVarietyTemplate}" TextSearch.TextPath="Name"  | ||||||
|                               SelectionChanged="WineVarietyInput_SelectionChanged" KeyUp="Input_KeyUp"/> |                               SelectionChanged="WineVarietyInput_SelectionChanged" KeyUp="Input_KeyUp"/> | ||||||
|  |  | ||||||
|                     <Label Content="Attribute:" Margin="10,40,0,0" Grid.Column="0"/> |                     <Label Content="Attribut:" Margin="10,40,0,0" Grid.Column="0"/> | ||||||
|                     <xctk:CheckComboBox x:Name="AttributesInput" Grid.Row="1" Grid.Column="1" Margin="0,40,10,10" |                     <ComboBox x:Name="AttributeInput" Grid.Row="1" Grid.Column="1" Margin="0,40,10,10" | ||||||
|                                         DisplayMemberPath="Name" Delimiter=", " AllItemsSelectedContent="Alle" |                               DisplayMemberPath="Name" | ||||||
|                                         ItemSelectionChanged="AttributesInput_SelectionChanged" KeyUp="Input_KeyUp"/> |                               SelectionChanged="AttributeInput_SelectionChanged" KeyUp="Input_KeyUp"/> | ||||||
|                 </Grid> |                 </Grid> | ||||||
|             </GroupBox> |             </GroupBox> | ||||||
|  |  | ||||||
| @@ -326,7 +327,7 @@ | |||||||
|  |  | ||||||
|                     <CheckBox x:Name="GerebeltGewogenInput" Content="Gerebelt gewogen" |                     <CheckBox x:Name="GerebeltGewogenInput" Content="Gerebelt gewogen" | ||||||
|                               VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,75,10,10" Grid.Column="0" Grid.ColumnSpan="2" |                               VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,75,10,10" Grid.Column="0" Grid.ColumnSpan="2" | ||||||
|                               Checked="CheckBox_Changed" Unchecked="CheckBox_Changed"/> |                               Checked="GerebeltGewogenInput_Changed" Unchecked="GerebeltGewogenInput_Changed"/> | ||||||
|  |  | ||||||
|                     <Button x:Name="WeighingAButton" Content="Wiegen A" Width="120" |                     <Button x:Name="WeighingAButton" Content="Wiegen A" Width="120" | ||||||
|                             Click="WeighingButton_Click" |                             Click="WeighingButton_Click" | ||||||
| @@ -382,7 +383,7 @@ | |||||||
|                               Checked="LesewagenInput_Changed" Unchecked="LesewagenInput_Changed"/> |                               Checked="LesewagenInput_Changed" Unchecked="LesewagenInput_Changed"/> | ||||||
|                     <CheckBox x:Name="HandPickedInput" Content="Handlese" Margin="10,105,0,0" Grid.Column="2" IsThreeState="True" |                     <CheckBox x:Name="HandPickedInput" Content="Handlese" Margin="10,105,0,0" Grid.Column="2" IsThreeState="True" | ||||||
|                               VerticalAlignment="Top" HorizontalAlignment="Left" |                               VerticalAlignment="Top" HorizontalAlignment="Left" | ||||||
|                               Checked="CheckBox_Changed" Unchecked="CheckBox_Changed"/> |                               Checked="HandPickedInput_Changed" Unchecked="HandPickedInput_Changed"/> | ||||||
|                 </Grid> |                 </Grid> | ||||||
|             </GroupBox> |             </GroupBox> | ||||||
|  |  | ||||||
| @@ -401,7 +402,8 @@ | |||||||
|                                     <TextBlock Text="{Binding SortId}" Width="30"/> |                                     <TextBlock Text="{Binding SortId}" Width="30"/> | ||||||
|                                     <TextBlock Text="{Binding Kmw, StringFormat='{}{0:0.0}°'}" Width="40" TextAlignment="Right" Padding="0,0,10,0"/> |                                     <TextBlock Text="{Binding Kmw, StringFormat='{}{0:0.0}°'}" Width="40" TextAlignment="Right" Padding="0,0,10,0"/> | ||||||
|                                     <TextBlock Text="{Binding QualId}" Width="30"/> |                                     <TextBlock Text="{Binding QualId}" Width="30"/> | ||||||
|                                     <TextBlock Text="{Binding Weight, StringFormat='{}{0:N0} kg'}" Width="60" TextAlignment="Right"/> |                                     <TextBlock Text="{Binding Weight, StringFormat='{}{0:N0} kg'}" Width="60" TextAlignment="Right" Padding="0,0,10,0"/> | ||||||
|  |                                     <TextBlock Text="{Binding Attribute.Name}" Width="100"/> | ||||||
|                                 </StackPanel> |                                 </StackPanel> | ||||||
|                             </DataTemplate> |                             </DataTemplate> | ||||||
|                         </ListBox.ItemTemplate> |                         </ListBox.ItemTemplate> | ||||||
| @@ -436,6 +438,10 @@ | |||||||
|                     <Label Content="Ried:" Margin="10,70,0,10" Grid.Column="0"/> |                     <Label Content="Ried:" Margin="10,70,0,10" Grid.Column="0"/> | ||||||
|                     <ComboBox x:Name="WineRdInput" Margin="0,70,10,10" Grid.Column="1" |                     <ComboBox x:Name="WineRdInput" Margin="0,70,10,10" Grid.Column="1" | ||||||
|                               DisplayMemberPath="Name"/> |                               DisplayMemberPath="Name"/> | ||||||
|  |  | ||||||
|  |                     <CheckBox x:Name="GebundenInput" Content="Gebunden" Margin="10,105,0,0" Grid.Column="0" Grid.ColumnSpan="2" IsThreeState="True" | ||||||
|  |                               VerticalAlignment="Top" HorizontalAlignment="Left" | ||||||
|  |                               Checked="CheckBox_Changed" Unchecked="CheckBox_Changed"/> | ||||||
|                 </Grid> |                 </Grid> | ||||||
|             </GroupBox> |             </GroupBox> | ||||||
|         </Grid> |         </Grid> | ||||||
|   | |||||||
| @@ -208,6 +208,36 @@ namespace Elwig.Windows { | |||||||
|             } |             } | ||||||
|         } |         } | ||||||
|  |  | ||||||
|  |         private void InitialDefaultInputs() { | ||||||
|  |             if (App.Client.HasRebler(BranchInput.SelectedValue as Branch)) { | ||||||
|  |                 GerebeltGewogenInput.IsEnabled = false; | ||||||
|  |                 SetDefaultValue(GerebeltGewogenInput, true); | ||||||
|  |             } else { | ||||||
|  |                 GerebeltGewogenInput.IsEnabled = true; | ||||||
|  |                 UnsetDefaultValue(GerebeltGewogenInput); | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             if (App.Client.HasKisten(BranchInput.SelectedValue as Branch)) { | ||||||
|  |                 LesewagenInput.IsEnabled = false; | ||||||
|  |                 SetDefaultValue(LesewagenInput, false); | ||||||
|  |                 HandPickedInput.IsThreeState = false; | ||||||
|  |                 UnsetDefaultValue(HandPickedInput); | ||||||
|  |             } else { | ||||||
|  |                 LesewagenInput.IsEnabled = true; | ||||||
|  |                 UnsetDefaultValue(LesewagenInput); | ||||||
|  |                 HandPickedInput.IsThreeState = true; | ||||||
|  |                 SetDefaultValue(HandPickedInput, null); | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             if (App.Client.IsMatzen || App.Client.IsWinzerkeller) { | ||||||
|  |                 GebundenInput.IsEnabled = false; | ||||||
|  |                 SetDefaultValue(GebundenInput, null); | ||||||
|  |             } else { | ||||||
|  |                 GebundenInput.IsEnabled = true; | ||||||
|  |                 UnsetDefaultValue(GebundenInput); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |  | ||||||
|         private void InitialInputs() { |         private void InitialInputs() { | ||||||
|             LastScaleError = null; |             LastScaleError = null; | ||||||
|             WeighingId = null; |             WeighingId = null; | ||||||
| @@ -217,20 +247,13 @@ namespace Elwig.Windows { | |||||||
|             ClearOriginalValues(); |             ClearOriginalValues(); | ||||||
|             ClearDefaultValues(); |             ClearDefaultValues(); | ||||||
|  |  | ||||||
|             HandPickedInput.IsChecked = null; |             GerebeltGewogenInput.IsChecked = App.Client.HasRebler(BranchInput.SelectedValue as Branch); | ||||||
|             if (App.Client.IsMatzen || App.Client.IsWolkersdorf) { |             LesewagenInput.IsChecked = false; | ||||||
|                 GerebeltGewogenInput.IsChecked = true; |             HandPickedInput.IsChecked = App.Client.HasKisten(BranchInput.SelectedValue as Branch) ? true : null; | ||||||
|                 GerebeltGewogenInput.IsEnabled = false; |             GebundenInput.IsChecked = null; | ||||||
|                 SetDefaultValue(GerebeltGewogenInput); |             InitialDefaultInputs(); | ||||||
|             } else { |  | ||||||
|                 GerebeltGewogenInput.IsChecked = false; |  | ||||||
|                 GerebeltGewogenInput.IsEnabled = true; |  | ||||||
|                 UnsetDefaultValue(GerebeltGewogenInput); |  | ||||||
|             } |  | ||||||
|  |  | ||||||
|             WineQualityLevelInput.IsEnabled = false; |             WineQualityLevelInput.IsEnabled = false; | ||||||
|  |  | ||||||
|             SetDefaultValue(HandPickedInput); |  | ||||||
|             ValidateRequiredInputs(); |             ValidateRequiredInputs(); | ||||||
|         } |         } | ||||||
|  |  | ||||||
| @@ -257,7 +280,7 @@ namespace Elwig.Windows { | |||||||
|             if (ctrl == MgNrInput || ctrl == MemberInput) { |             if (ctrl == MgNrInput || ctrl == MemberInput) { | ||||||
|                 SortIdInput.Focus(); |                 SortIdInput.Focus(); | ||||||
|                 SortIdInput.SelectAll(); |                 SortIdInput.SelectAll(); | ||||||
|             } else if (ctrl == SortIdInput || ctrl == WineVarietyInput || ctrl == AttributesInput) { |             } else if (ctrl == SortIdInput || ctrl == WineVarietyInput || ctrl == AttributeInput) { | ||||||
|                 GradationOeInput.Focus(); |                 GradationOeInput.Focus(); | ||||||
|                 GradationOeInput.SelectAll(); |                 GradationOeInput.SelectAll(); | ||||||
|             } else if (ctrl == GradationKmwInput || ctrl == GradationOeInput || ctrl == WineQualityLevelInput) { |             } else if (ctrl == GradationKmwInput || ctrl == GradationOeInput || ctrl == WineQualityLevelInput) { | ||||||
| @@ -309,7 +332,7 @@ namespace Elwig.Windows { | |||||||
|             var filter = TextFilter.ToList(); |             var filter = TextFilter.ToList(); | ||||||
|             if (filter.Count > 0) { |             if (filter.Count > 0) { | ||||||
|                 var var = await Context.WineVarieties.ToDictionaryAsync(v => v.SortId, v => v); |                 var var = await Context.WineVarieties.ToDictionaryAsync(v => v.SortId, v => v); | ||||||
|                 var qual = await Context.WineQualityLevels.ToDictionaryAsync(q => q.QualId, q => q); |                 var qual = await Context.WineQualityLevels.Where(q => !q.IsPredicate).ToDictionaryAsync(q => q.QualId, q => q); | ||||||
|                 var mgnr = await Context.Members.ToDictionaryAsync(m => m.MgNr.ToString(), m => m); |                 var mgnr = await Context.Members.ToDictionaryAsync(m => m.MgNr.ToString(), m => m); | ||||||
|                 var zwst = await Context.Branches.ToDictionaryAsync(b => b.Name.ToLower().Split(" ")[0], b => b); |                 var zwst = await Context.Branches.ToDictionaryAsync(b => b.Name.ToLower().Split(" ")[0], b => b); | ||||||
|                 var attr = await Context.WineAttributes.ToDictionaryAsync(a => a.Name.ToLower().Split(" ")[0], a => a); |                 var attr = await Context.WineAttributes.ToDictionaryAsync(a => a.Name.ToLower().Split(" ")[0], a => a); | ||||||
| @@ -463,12 +486,8 @@ namespace Elwig.Windows { | |||||||
|                 if (filterNotVar.Count > 0) dpq = dpq.Where(p => !filterNotVar.Contains(p.SortId)); |                 if (filterNotVar.Count > 0) dpq = dpq.Where(p => !filterNotVar.Contains(p.SortId)); | ||||||
|                 if (filterQual.Count > 0) dpq = dpq.Where(p => filterQual.Contains(p.QualId)); |                 if (filterQual.Count > 0) dpq = dpq.Where(p => filterQual.Contains(p.QualId)); | ||||||
|                 if (filterZwst.Count > 0) dpq = dpq.Where(p => filterZwst.Contains(p.Delivery.ZwstId)); |                 if (filterZwst.Count > 0) dpq = dpq.Where(p => filterZwst.Contains(p.Delivery.ZwstId)); | ||||||
|                 if (filterAttr.Count > 0) |                 if (filterAttr.Count > 0) dpq = dpq.Where(p => p.AttrId != null && filterAttr.Contains(p.AttrId)); | ||||||
|                     foreach (var a in filterAttr) |                 if (filterNotAttr.Count > 0) dpq = dpq.Where(p => p.AttrId == null || !filterAttr.Contains(p.AttrId)); | ||||||
|                         dpq = dpq.Where(p => p.PartAttributes.Select(a => a.Attr.AttrId).Contains(a)); |  | ||||||
|                 if (filterNotAttr.Count > 0) |  | ||||||
|                     foreach (var a in filterNotAttr) |  | ||||||
|                         dpq = dpq.Where(p => !p.PartAttributes.Select(a => a.Attr.AttrId).Contains(a)); |  | ||||||
|                 if (filterKmwGt > 0) dpq = dpq.Where(p => p.Kmw >= filterKmwGt); |                 if (filterKmwGt > 0) dpq = dpq.Where(p => p.Kmw >= filterKmwGt); | ||||||
|                 if (filterKmwLt > 0) dpq = dpq.Where(p => p.Kmw < filterKmwLt); |                 if (filterKmwLt > 0) dpq = dpq.Where(p => p.Kmw < filterKmwLt); | ||||||
|                 if (filterOeGt > 0) dpq = dpq.Where(p => p.Kmw * (4.54 + 0.022 * p.Kmw) >= filterOeGt); |                 if (filterOeGt > 0) dpq = dpq.Where(p => p.Kmw * (4.54 + 0.022 * p.Kmw) >= filterOeGt); | ||||||
| @@ -547,7 +566,7 @@ namespace Elwig.Windows { | |||||||
|                 if (n > 0 && (n <= 200 || TodayOnlyInput.IsChecked == true)) { |                 if (n > 0 && (n <= 200 || TodayOnlyInput.IsChecked == true)) { | ||||||
|                     var parts = await deliveryParts.ToListAsync(); |                     var parts = await deliveryParts.ToListAsync(); | ||||||
|                     var groups = parts |                     var groups = parts | ||||||
|                         .GroupBy(p => string.Join("/", p.Attributes.Select(a => a.Name))) |                         .GroupBy(p => p.Attribute?.Name) | ||||||
|                         .Select(g => (g.Key, g.Sum(p => p.Weight), g.Min(p => p.Kmw), Utils.AggregateDeliveryPartsKmw(g), g.Max(p => p.Kmw))) |                         .Select(g => (g.Key, g.Sum(p => p.Weight), g.Min(p => p.Kmw), Utils.AggregateDeliveryPartsKmw(g), g.Max(p => p.Kmw))) | ||||||
|                         .OrderByDescending(g => g.Item2) |                         .OrderByDescending(g => g.Item2) | ||||||
|                         .ToList(); |                         .ToList(); | ||||||
| @@ -581,6 +600,7 @@ namespace Elwig.Windows { | |||||||
|             } |             } | ||||||
|  |  | ||||||
|             StatusVarieties.ToolTip = StatusVarieties.Text; |             StatusVarieties.ToolTip = StatusVarieties.Text; | ||||||
|  |             // TODO display Weight/Gradation with newlines in ToolTip and grouped by sortid AND attributes | ||||||
|             StatusWeight.ToolTip = StatusWeight.Text; |             StatusWeight.ToolTip = StatusWeight.Text; | ||||||
|             StatusGradation.ToolTip = StatusGradation.Text; |             StatusGradation.ToolTip = StatusGradation.Text; | ||||||
|         } |         } | ||||||
| @@ -612,7 +632,9 @@ namespace Elwig.Windows { | |||||||
|             ControlUtils.RenewItemsSource(MemberInput, await Context.Members.Where(m => m.IsActive || !IsCreating).OrderBy(m => m.FamilyName).ThenBy(m => m.GivenName).ToListAsync(), i => (i as Member)?.MgNr); |             ControlUtils.RenewItemsSource(MemberInput, await Context.Members.Where(m => m.IsActive || !IsCreating).OrderBy(m => m.FamilyName).ThenBy(m => m.GivenName).ToListAsync(), i => (i as Member)?.MgNr); | ||||||
|             ControlUtils.RenewItemsSource(BranchInput, await Context.Branches.OrderBy(b => b.Name).ToListAsync(), i => (i as Branch)?.ZwstId); |             ControlUtils.RenewItemsSource(BranchInput, await Context.Branches.OrderBy(b => b.Name).ToListAsync(), i => (i as Branch)?.ZwstId); | ||||||
|             ControlUtils.RenewItemsSource(WineVarietyInput, await Context.WineVarieties.OrderBy(v => v.Name).ToListAsync(), i => (i as WineVar)?.SortId); |             ControlUtils.RenewItemsSource(WineVarietyInput, await Context.WineVarieties.OrderBy(v => v.Name).ToListAsync(), i => (i as WineVar)?.SortId); | ||||||
|             ControlUtils.RenewItemsSource(AttributesInput, await Context.WineAttributes.Where(a => !IsCreating || a.IsActive).OrderBy(a => a.Name).ToListAsync(), i => (i as WineAttr)?.AttrId); |             var attrList = await Context.WineAttributes.Where(a => !IsCreating || a.IsActive).OrderBy(a => a.Name).Cast<object>().ToListAsync(); | ||||||
|  |             attrList.Insert(0, new NullItem("")); | ||||||
|  |             ControlUtils.RenewItemsSource(AttributeInput, attrList, i => (i as WineAttr)?.AttrId, null, ControlUtils.RenewSourceDefault.First); | ||||||
|             ControlUtils.RenewItemsSource(WineQualityLevelInput, await Context.WineQualityLevels.ToListAsync(), i => (i as WineQualLevel)?.QualId); |             ControlUtils.RenewItemsSource(WineQualityLevelInput, await Context.WineQualityLevels.ToListAsync(), i => (i as WineQualLevel)?.QualId); | ||||||
|             ControlUtils.RenewItemsSource(ModifiersInput, await Context.Modifiers.Where(m => m.Year == y).OrderBy(m => m.Ordering).ToListAsync(), i => (i as Modifier)?.ModId); |             ControlUtils.RenewItemsSource(ModifiersInput, await Context.Modifiers.Where(m => m.Year == y).OrderBy(m => m.Ordering).ToListAsync(), i => (i as Modifier)?.ModId); | ||||||
|             ControlUtils.RenewItemsSource(WineOriginInput, (await Context.WineOrigins.ToListAsync()).OrderByDescending(o => o.SortKey).ThenBy(o => o.HkId), i => (i as WineOrigin)?.HkId); |             ControlUtils.RenewItemsSource(WineOriginInput, (await Context.WineOrigins.ToListAsync()).OrderByDescending(o => o.SortKey).ThenBy(o => o.HkId), i => (i as WineOrigin)?.HkId); | ||||||
| @@ -686,7 +708,7 @@ namespace Elwig.Windows { | |||||||
|             ClearDefaultValues(); |             ClearDefaultValues(); | ||||||
|  |  | ||||||
|             SortIdInput.Text = p?.SortId ?? ""; |             SortIdInput.Text = p?.SortId ?? ""; | ||||||
|             ControlUtils.SelectCheckComboBoxItems(AttributesInput, p?.Attributes, i => (i as WineAttr)?.AttrId); |             ControlUtils.SelectComboBoxItem(AttributeInput, p?.Attribute, i => (i as WineAttr)?.AttrId); | ||||||
|             GradationKmwInput.Text = (p != null) ? $"{p.Kmw:N1}" : ""; |             GradationKmwInput.Text = (p != null) ? $"{p.Kmw:N1}" : ""; | ||||||
|             ControlUtils.SelectComboBoxItem(WineQualityLevelInput, q => (q as WineQualLevel)?.QualId, p?.QualId); |             ControlUtils.SelectComboBoxItem(WineQualityLevelInput, q => (q as WineQualLevel)?.QualId, p?.QualId); | ||||||
|             ControlUtils.SelectComboBoxItem(WineKgInput, k => (k as AT_Kg)?.KgNr, p?.KgNr); |             ControlUtils.SelectComboBoxItem(WineKgInput, k => (k as AT_Kg)?.KgNr, p?.KgNr); | ||||||
| @@ -701,6 +723,7 @@ namespace Elwig.Windows { | |||||||
|             AcidInput.Text = (p != null && p.Acid != null) ? $"{p.Acid:N1}" : ""; |             AcidInput.Text = (p != null && p.Acid != null) ? $"{p.Acid:N1}" : ""; | ||||||
|             LesewagenInput.IsChecked = p?.IsLesewagen ?? false; |             LesewagenInput.IsChecked = p?.IsLesewagen ?? false; | ||||||
|             HandPickedInput.IsChecked = p?.IsHandPicked; |             HandPickedInput.IsChecked = p?.IsHandPicked; | ||||||
|  |             GebundenInput.IsChecked = p?.IsGebunden; | ||||||
|  |  | ||||||
|             ScaleId = p?.ScaleId; |             ScaleId = p?.ScaleId; | ||||||
|             WeighingId = p?.WeighingId; |             WeighingId = p?.WeighingId; | ||||||
| @@ -749,6 +772,7 @@ namespace Elwig.Windows { | |||||||
|             d.Comment = (CommentInput.Text == "") ? null : CommentInput.Text; |             d.Comment = (CommentInput.Text == "") ? null : CommentInput.Text; | ||||||
|  |  | ||||||
|             p.SortId = (WineVarietyInput.SelectedItem as WineVar)?.SortId; |             p.SortId = (WineVarietyInput.SelectedItem as WineVar)?.SortId; | ||||||
|  |             p.AttrId = (AttributeInput.SelectedItem as WineAttr)?.AttrId; | ||||||
|             p.Kmw = double.Parse(GradationKmwInput.Text); |             p.Kmw = double.Parse(GradationKmwInput.Text); | ||||||
|             p.QualId = (WineQualityLevelInput.SelectedItem as WineQualLevel)?.QualId; |             p.QualId = (WineQualityLevelInput.SelectedItem as WineQualLevel)?.QualId; | ||||||
|             p.HkId = (WineOriginInput.SelectedItem as WineOrigin)?.HkId; |             p.HkId = (WineOriginInput.SelectedItem as WineOrigin)?.HkId; | ||||||
| @@ -758,6 +782,7 @@ namespace Elwig.Windows { | |||||||
|             p.IsGerebelt = GerebeltGewogenInput.IsChecked ?? false; |             p.IsGerebelt = GerebeltGewogenInput.IsChecked ?? false; | ||||||
|             p.IsHandPicked = HandPickedInput.IsChecked; |             p.IsHandPicked = HandPickedInput.IsChecked; | ||||||
|             p.IsLesewagen = LesewagenInput.IsChecked; |             p.IsLesewagen = LesewagenInput.IsChecked; | ||||||
|  |             p.IsGebunden = GebundenInput.IsChecked; | ||||||
|             p.Temperature = (TemperatureInput.Text == "") ? null : double.Parse(TemperatureInput.Text); |             p.Temperature = (TemperatureInput.Text == "") ? null : double.Parse(TemperatureInput.Text); | ||||||
|             p.Acid = (AcidInput.Text == "") ? null : double.Parse(AcidInput.Text); |             p.Acid = (AcidInput.Text == "") ? null : double.Parse(AcidInput.Text); | ||||||
|             p.Comment = (PartCommentInput.Text == "") ? null : PartCommentInput.Text; |             p.Comment = (PartCommentInput.Text == "") ? null : PartCommentInput.Text; | ||||||
| @@ -779,7 +804,6 @@ namespace Elwig.Windows { | |||||||
|                     pEntry = partNew ? await Context.AddAsync(p) : Context.Update(p); |                     pEntry = partNew ? await Context.AddAsync(p) : Context.Update(p); | ||||||
|                 } |                 } | ||||||
|  |  | ||||||
|                 await Context.UpdateDeliveryPartAttributes(p, AttributesInput.SelectedItems.Cast<WineAttr>()); |  | ||||||
|                 await Context.UpdateDeliveryPartModifiers(p, ModifiersInput.SelectedItems.Cast<Modifier>()); |                 await Context.UpdateDeliveryPartModifiers(p, ModifiersInput.SelectedItems.Cast<Modifier>()); | ||||||
|  |  | ||||||
|                 if (originalMgNr != null && originalMgNr.Value != d.MgNr) { |                 if (originalMgNr != null && originalMgNr.Value != d.MgNr) { | ||||||
| @@ -987,7 +1011,9 @@ namespace Elwig.Windows { | |||||||
|                 if (r != MessageBoxResult.Yes) return; |                 if (r != MessageBoxResult.Yes) return; | ||||||
|             } |             } | ||||||
|  |  | ||||||
|             ControlUtils.RenewItemsSource(AttributesInput, await Context.WineAttributes.OrderBy(a => a.Name).ToListAsync(), i => (i as WineAttr)?.AttrId); |             var attrList = await Context.WineAttributes.OrderBy(a => a.Name).Cast<object>().ToListAsync(); | ||||||
|  |             attrList.Insert(0, new NullItem("")); | ||||||
|  |             ControlUtils.RenewItemsSource(AttributeInput, attrList, i => (i as WineAttr)?.AttrId, null, ControlUtils.RenewSourceDefault.First); | ||||||
|             ControlUtils.RenewItemsSource(MemberInput, await Context.Members.Where(m => m.IsActive || !IsReceipt).OrderBy(m => m.FamilyName).ThenBy(m => m.GivenName).ToListAsync(), i => (i as Member)?.MgNr); |             ControlUtils.RenewItemsSource(MemberInput, await Context.Members.Where(m => m.IsActive || !IsReceipt).OrderBy(m => m.FamilyName).ThenBy(m => m.GivenName).ToListAsync(), i => (i as Member)?.MgNr); | ||||||
|             if (DeliveryList.SelectedItem is not Delivery d) { |             if (DeliveryList.SelectedItem is not Delivery d) { | ||||||
|                 // switch away from creating mode |                 // switch away from creating mode | ||||||
| @@ -1013,7 +1039,9 @@ namespace Elwig.Windows { | |||||||
|         private async void NewDeliveryButton_Click(object? sender, RoutedEventArgs? evt) { |         private async void NewDeliveryButton_Click(object? sender, RoutedEventArgs? evt) { | ||||||
|             TodayOnlyInput.IsChecked = true; |             TodayOnlyInput.IsChecked = true; | ||||||
|             SearchInput.Text = ""; |             SearchInput.Text = ""; | ||||||
|             ControlUtils.RenewItemsSource(AttributesInput, await Context.WineAttributes.Where(a => a.IsActive).OrderBy(a => a.Name).ToListAsync(), i => (i as WineAttr)?.AttrId); |             var attrList = await Context.WineAttributes.Where(a => a.IsActive).OrderBy(a => a.Name).Cast<object>().ToListAsync(); | ||||||
|  |             attrList.Insert(0, new NullItem("")); | ||||||
|  |             ControlUtils.RenewItemsSource(AttributeInput, attrList, i => (i as WineAttr)?.AttrId, null, ControlUtils.RenewSourceDefault.First); | ||||||
|             ControlUtils.RenewItemsSource(MemberInput, await Context.Members.Where(m => m.IsActive || !IsReceipt).OrderBy(m => m.FamilyName).ThenBy(m => m.GivenName).ToListAsync(), i => (i as Member)?.MgNr); |             ControlUtils.RenewItemsSource(MemberInput, await Context.Members.Where(m => m.IsActive || !IsReceipt).OrderBy(m => m.FamilyName).ThenBy(m => m.GivenName).ToListAsync(), i => (i as Member)?.MgNr); | ||||||
|             IsCreating = true; |             IsCreating = true; | ||||||
|             DeliveryList.IsEnabled = false; |             DeliveryList.IsEnabled = false; | ||||||
| @@ -1058,7 +1086,6 @@ namespace Elwig.Windows { | |||||||
|                     p2.HkId = "OEST"; |                     p2.HkId = "OEST"; | ||||||
|                     entry2 = await Context.AddAsync(p2); |                     entry2 = await Context.AddAsync(p2); | ||||||
|  |  | ||||||
|                     await Context.UpdateDeliveryPartAttributes(p2, p.Attributes); |  | ||||||
|                     await Context.UpdateDeliveryPartModifiers(p2, p.Modifiers); |                     await Context.UpdateDeliveryPartModifiers(p2, p.Modifiers); | ||||||
|                 } |                 } | ||||||
|                 await Context.SaveChangesAsync(); |                 await Context.SaveChangesAsync(); | ||||||
| @@ -1381,14 +1408,17 @@ namespace Elwig.Windows { | |||||||
|             } |             } | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         private void DateInput_TextChanged(object sender, TextChangedEventArgs evt) { |         private async void DateInput_TextChanged(object sender, TextChangedEventArgs evt) { | ||||||
|             base.DateInput_TextChanged(sender, evt); |             base.DateInput_TextChanged(sender, evt); | ||||||
|             if (IsEditing ||  IsCreating) UpdateLsNr().GetAwaiter().GetResult(); |             if (IsEditing || IsCreating) await UpdateLsNr(); | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         private void BranchInput_SelectionChanged(object sender, RoutedEventArgs evt) { |         private async void BranchInput_SelectionChanged(object sender, RoutedEventArgs evt) { | ||||||
|             base.ComboBox_SelectionChanged(sender, evt); |             base.ComboBox_SelectionChanged(sender, evt); | ||||||
|             if (IsEditing || IsCreating) UpdateLsNr().GetAwaiter().GetResult(); |             if (IsEditing || IsCreating) { | ||||||
|  |                 await UpdateLsNr(); | ||||||
|  |                 InitialDefaultInputs(); | ||||||
|  |             } | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         private void UpdateWineVariety(bool valid) { |         private void UpdateWineVariety(bool valid) { | ||||||
| @@ -1396,13 +1426,12 @@ namespace Elwig.Windows { | |||||||
|                 var text = SortIdInput.Text; |                 var text = SortIdInput.Text; | ||||||
|                 WineVarietyInput.SelectedItem = Context.WineVarieties.Find(text[0..2]); |                 WineVarietyInput.SelectedItem = Context.WineVarieties.Find(text[0..2]); | ||||||
|                 if (text.Length >= 3) { |                 if (text.Length >= 3) { | ||||||
|                     AttributesInput.UnSelectAll(); |                     ControlUtils.SelectComboBoxItem(AttributeInput, Context.WineAttributes.Find(text[2..]), a => (a as WineAttr)?.AttrId); | ||||||
|                     AttributesInput.SelectedItems.Add(Context.WineAttributes.Find(text[2..])); |  | ||||||
|                     SortIdInput.Text = text[0..2]; |                     SortIdInput.Text = text[0..2]; | ||||||
|                 } |                 } | ||||||
|             } else { |             } else { | ||||||
|                 WineVarietyInput.SelectedItem = null; |                 WineVarietyInput.SelectedItem = null; | ||||||
|                 AttributesInput.UnSelectAll(); |                 AttributeInput.SelectedIndex = 0; | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|  |  | ||||||
| @@ -1479,7 +1508,7 @@ namespace Elwig.Windows { | |||||||
|                 GradationKmwInput.Text += ",0"; |                 GradationKmwInput.Text += ",0"; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         private void AttributesInput_SelectionChanged(object sender, ItemSelectionChangedEventArgs evt) { |         private void AttributeInput_SelectionChanged(object sender, SelectionChangedEventArgs evt) { | ||||||
|  |  | ||||||
|         } |         } | ||||||
|  |  | ||||||
| @@ -1575,5 +1604,19 @@ namespace Elwig.Windows { | |||||||
|             } |             } | ||||||
|             InputLostFocus(tb, Validator.CheckDecimal(tb, false, 2, 1)); |             InputLostFocus(tb, Validator.CheckDecimal(tb, false, 2, 1)); | ||||||
|         } |         } | ||||||
|  |  | ||||||
|  |         private void GerebeltGewogenInput_Changed(object sender, RoutedEventArgs evt) { | ||||||
|  |             if (App.Client.HasKisten(BranchInput.SelectedValue as Branch)) { | ||||||
|  |                 HandPickedInput.IsChecked = !GerebeltGewogenInput.IsChecked; | ||||||
|  |             } | ||||||
|  |             CheckBox_Changed(sender, evt); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private void HandPickedInput_Changed(object sender, RoutedEventArgs evt) { | ||||||
|  |             if (App.Client.HasKisten(BranchInput.SelectedValue as Branch)) { | ||||||
|  |                 GerebeltGewogenInput.IsChecked = !HandPickedInput.IsChecked; | ||||||
|  |             } | ||||||
|  |             CheckBox_Changed(sender, evt); | ||||||
|  |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										38
									
								
								Elwig/Windows/DeliveryConfirmationsWindow.xaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								Elwig/Windows/DeliveryConfirmationsWindow.xaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,38 @@ | |||||||
|  | <local:ContextWindow x:Class="Elwig.Dialogs.DeliveryConfirmationsWindow" | ||||||
|  |                      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||||||
|  |                      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||||||
|  |                      xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||||||
|  |                      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||||||
|  |                      xmlns:local="clr-namespace:Elwig.Windows" | ||||||
|  |                      mc:Ignorable="d" | ||||||
|  |                      Loaded="Window_Loaded" | ||||||
|  |                      Title="Anlieferungsbestätingungen - Elwig" Height="500" Width="800" MinHeight="400" MinWidth="600"> | ||||||
|  |     <Grid> | ||||||
|  |         <GroupBox Header="Sortieren nach" Margin="10,10,10,10" Width="180" Height="80" VerticalAlignment="Top" HorizontalAlignment="Left"> | ||||||
|  |             <StackPanel Margin="5,5,0,5"> | ||||||
|  |                 <RadioButton GroupName="Order" x:Name="OrderMgNrInput" Content="Mitgliedsnummer" IsChecked="True"/> | ||||||
|  |                 <RadioButton GroupName="Order" x:Name="OrderNameInput" Content="Name"/> | ||||||
|  |                 <RadioButton GroupName="Order" x:Name="OrderPlzInput" Content="PLZ, Ort, Name"/> | ||||||
|  |             </StackPanel> | ||||||
|  |         </GroupBox> | ||||||
|  |  | ||||||
|  |         <CheckBox x:Name="AllMembersInput" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,100,10,10"> | ||||||
|  |             <TextBlock>Auch Mitglieder ohne<LineBreak/>Lieferungen miteinbeziehen</TextBlock> | ||||||
|  |         </CheckBox> | ||||||
|  |  | ||||||
|  |         <TextBox x:Name="TextElement" TextWrapping="Wrap" VerticalScrollBarVisibility="Visible" AcceptsReturn="True" | ||||||
|  |                  HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="200,10,10,10" Height="Auto"/> | ||||||
|  |  | ||||||
|  |         <ProgressBar x:Name="ProgressBar" Margin="10,10,10,106" Height="27" Width="180" | ||||||
|  |                      VerticalAlignment="Bottom" HorizontalAlignment="Left"/> | ||||||
|  |         <Button x:Name="TestButton" Content="Stichprobe" FontSize="14" Width="180" Margin="10,10,10,74" Height="27" Tag="Print" IsEnabled="False" | ||||||
|  |                 Click="TestButton_Click" | ||||||
|  |                 VerticalAlignment="Bottom" HorizontalAlignment="Left"/> | ||||||
|  |         <Button x:Name="ShowButton" Content="Vorschau" FontSize="14" Width="180" Margin="10,10,10,42" Height="27" Tag="Print" IsEnabled="False" | ||||||
|  |                 Click="ShowButton_Click" | ||||||
|  |                 VerticalAlignment="Bottom" HorizontalAlignment="Left"/> | ||||||
|  |         <Button x:Name="PrintButton" Content="Drucken" FontSize="14" Width="180" Margin="10,10,10,10" Height="27" Tag="Print" IsEnabled="False" | ||||||
|  |                 Click="PrintButton_Click" | ||||||
|  |                 VerticalAlignment="Bottom" HorizontalAlignment="Left"/> | ||||||
|  |     </Grid> | ||||||
|  | </local:ContextWindow> | ||||||
							
								
								
									
										131
									
								
								Elwig/Windows/DeliveryConfirmationsWindow.xaml.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										131
									
								
								Elwig/Windows/DeliveryConfirmationsWindow.xaml.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,131 @@ | |||||||
|  | using Elwig.Documents; | ||||||
|  | using Elwig.Models; | ||||||
|  | using Elwig.Windows; | ||||||
|  | using Microsoft.EntityFrameworkCore; | ||||||
|  | using System; | ||||||
|  | using System.Collections.Generic; | ||||||
|  | using System.Linq; | ||||||
|  | using System.Threading.Tasks; | ||||||
|  | using System.Windows; | ||||||
|  | using System.Windows.Input; | ||||||
|  |  | ||||||
|  | namespace Elwig.Dialogs { | ||||||
|  |     public partial class DeliveryConfirmationsWindow : ContextWindow { | ||||||
|  |  | ||||||
|  |         public readonly int Year; | ||||||
|  |  | ||||||
|  |         public DeliveryConfirmationsWindow(int year) { | ||||||
|  |             InitializeComponent(); | ||||||
|  |             Year = year; | ||||||
|  |             Title = $"Anlieferungsbestätigungen - Lese {Year} - Elwig"; | ||||||
|  |             TextElement.Text = App.Client.TextDeliveryConfirmation; | ||||||
|  |             if (!App.Config.Debug) { | ||||||
|  |                 TestButton.Visibility = Visibility.Hidden; | ||||||
|  |                 var m = ProgressBar.Margin; | ||||||
|  |                 ProgressBar.Margin = new(m.Left, m.Top, m.Right, m.Bottom - 32); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private void Window_Loaded(object sender, RoutedEventArgs evt) { | ||||||
|  |             TestButton.IsEnabled = App.IsPrintingReady; | ||||||
|  |             ShowButton.IsEnabled = App.IsPrintingReady; | ||||||
|  |             PrintButton.IsEnabled = App.IsPrintingReady; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         protected override async Task OnRenewContext() { } | ||||||
|  |  | ||||||
|  |         private async Task UpdateTextParameter() { | ||||||
|  |             var text = TextElement.Text; | ||||||
|  |             if (text.Length == 0) text = null; | ||||||
|  |             if (text != App.Client.TextDeliveryConfirmation) { | ||||||
|  |                 App.Client.TextDeliveryConfirmation = text; | ||||||
|  |                 await App.Client.UpdateValues(); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private async Task Generate(int mode) { | ||||||
|  |  | ||||||
|  |             Mouse.OverrideCursor = Cursors.AppStarting; | ||||||
|  |             await UpdateTextParameter(); | ||||||
|  |  | ||||||
|  |             IQueryable<Member> members; | ||||||
|  |             if (AllMembersInput.IsChecked == true) { | ||||||
|  |                 members = Context.Members.Where(m => m.IsActive); | ||||||
|  |             } else { | ||||||
|  |                 members = Context.Members.FromSqlRaw($""" | ||||||
|  |                     SELECT m.* | ||||||
|  |                     FROM member m | ||||||
|  |                         INNER JOIN delivery d ON d.mgnr = m.mgnr | ||||||
|  |                     WHERE d.year = {Year} | ||||||
|  |                     GROUP BY m.mgnr | ||||||
|  |                     """); | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             if (OrderMgNrInput.IsChecked == true) { | ||||||
|  |                 members = members | ||||||
|  |                     .OrderBy(m => m.MgNr); | ||||||
|  |             } else if (OrderNameInput.IsChecked == true) { | ||||||
|  |                 members = members | ||||||
|  |                     .OrderBy(m => m.FamilyName) | ||||||
|  |                     .ThenBy(m => m.GivenName) | ||||||
|  |                     .ThenBy(m => m.MgNr); | ||||||
|  |             } else if (OrderPlzInput.IsChecked == true) { | ||||||
|  |                 members = members | ||||||
|  |                     .OrderBy(m => m.PostalDest.AtPlz.Plz) | ||||||
|  |                     .ThenBy(m => m.PostalDest.AtPlz.Ort.Name) | ||||||
|  |                     .ThenBy(m => m.FamilyName) | ||||||
|  |                     .ThenBy(m => m.GivenName) | ||||||
|  |                     .ThenBy(m => m.MgNr); | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             IEnumerable<Member> list = await members.ToListAsync(); | ||||||
|  |             if (mode == 0) { | ||||||
|  |                 var r = new Random().Next(0, 10); | ||||||
|  |                 list = list.Where((_, n) => n % 10 == r); | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             var deliveries = await Context.DeliveryParts.FromSqlRaw($""" | ||||||
|  |                 SELECT p.* | ||||||
|  |                 FROM v_delivery v | ||||||
|  |                     JOIN delivery_part p ON (p.year, p.did, p.dpnr) = (v.year, v.did, v.dpnr) | ||||||
|  |                 WHERE v.year = {Year} | ||||||
|  |                 ORDER BY v.sortid, v.abgewertet ASC, v.attribute_prio DESC, COALESCE(v.attrid, '~'), v.kmw DESC, v.lsnr, v.dpnr | ||||||
|  |                 """) | ||||||
|  |                 .ToListAsync(); | ||||||
|  |  | ||||||
|  |             using var doc = Document.Merge(list.Select(m => | ||||||
|  |                 new DeliveryConfirmation(Context, Year, m, deliveries.Where(d => d.Delivery.MgNr == m.MgNr).ToList()) { | ||||||
|  |                     //DoubleSided = true | ||||||
|  |                 } | ||||||
|  |             )); | ||||||
|  |             //doc.DoubleSided = true; | ||||||
|  |             await doc.Generate(new Progress<double>(v => { | ||||||
|  |                 ProgressBar.Value = v; | ||||||
|  |             })); | ||||||
|  |             Mouse.OverrideCursor = null; | ||||||
|  |  | ||||||
|  |             if (mode < 2) { | ||||||
|  |                 doc.Show(); | ||||||
|  |                 return; | ||||||
|  |             } | ||||||
|  |             if (App.Config.Debug) { | ||||||
|  |                 doc.Show(); | ||||||
|  |             } else { | ||||||
|  |                 await doc.Print(); | ||||||
|  |             } | ||||||
|  |             Close(); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private async void TestButton_Click(object sender, RoutedEventArgs evt) { | ||||||
|  |             await Generate(0); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private async void ShowButton_Click(object sender, RoutedEventArgs evt) { | ||||||
|  |             await Generate(1); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private async void PrintButton_Click(object sender, RoutedEventArgs evt) { | ||||||
|  |             await Generate(2); | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | } | ||||||
| @@ -8,6 +8,8 @@ | |||||||
|         Loaded="Window_Loaded"> |         Loaded="Window_Loaded"> | ||||||
|     <Window.Resources> |     <Window.Resources> | ||||||
|         <Style TargetType="Button"> |         <Style TargetType="Button"> | ||||||
|  |             <Setter Property="VerticalAlignment" Value="Top"/> | ||||||
|  |             <Setter Property="HorizontalAlignment" Value="Left"/> | ||||||
|             <Setter Property="FontSize" Value="14"/> |             <Setter Property="FontSize" Value="14"/> | ||||||
|             <Setter Property="Padding" Value="9,3"/> |             <Setter Property="Padding" Value="9,3"/> | ||||||
|             <Setter Property="Height" Value="32"/> |             <Setter Property="Height" Value="32"/> | ||||||
| @@ -28,30 +30,34 @@ | |||||||
|                 <ColumnDefinition Width="100"/> |                 <ColumnDefinition Width="100"/> | ||||||
|                 <ColumnDefinition Width="*"/> |                 <ColumnDefinition Width="*"/> | ||||||
|             </Grid.ColumnDefinitions> |             </Grid.ColumnDefinitions> | ||||||
|             <Image Source="/elwig.png" RenderOptions.BitmapScalingMode="HighQuality" Grid.Column="0" |             <Image Source="\Resources\Images\Elwig.png" RenderOptions.BitmapScalingMode="HighQuality" Grid.Column="0" | ||||||
|                    HorizontalAlignment="Left" Margin="5,5,5,5" VerticalAlignment="Top"/> |                    HorizontalAlignment="Left" Margin="5,5,5,5" VerticalAlignment="Top"/> | ||||||
|             <Label Grid.Column="1" Content="Elwig" FontSize="32" |             <TextBlock Grid.Column="1" FontSize="32" HorizontalAlignment="Left" Margin="0,5,0,0" VerticalAlignment="Top"> | ||||||
|                    HorizontalAlignment="Left" Margin="0,10,0,0" VerticalAlignment="Top"/> |                 Elwig | ||||||
|             <Label Grid.Column="1" Content="Elektonische Winzer-" |             </TextBlock> | ||||||
|                    HorizontalAlignment="Left" Margin="0,55,0,0" VerticalAlignment="Top"/> |             <TextBlock Grid.Column="1" HorizontalAlignment="Left" Margin="0,50,0,0" VerticalAlignment="Top" LineHeight="14" LineStackingStrategy="BlockLineHeight"> | ||||||
|             <Label Grid.Column="1" Content="genossenschaftsverwaltung" |                 Elektonische Winzer-<LineBreak/> | ||||||
|                    HorizontalAlignment="Left" Margin="0,70,0,0" VerticalAlignment="Top"/> |                 genossenschaftsverwaltung | ||||||
|  |             </TextBlock> | ||||||
|  |             <TextBlock x:Name="VersionField" Grid.Column="1" FontSize="10" HorizontalAlignment="Left" Margin="0,80,0,0" VerticalAlignment="Top"> | ||||||
|  |                 Version: ? | ||||||
|  |             </TextBlock> | ||||||
|         </Grid> |         </Grid> | ||||||
|  |  | ||||||
|         <Button x:Name="MemberAdminButton" Content="Mitglieder" Click="MemberAdminButton_Click" |         <Button x:Name="MemberAdminButton" Content="Mitglieder" Click="MemberAdminButton_Click" | ||||||
|                 Margin="50,160,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"/> |                 Margin="50,160,0,0"/> | ||||||
|         <Button x:Name="ReceiptButton" Content="Übernahme" Click="ReceiptButton_Click" |         <Button x:Name="ReceiptButton" Content="Übernahme" Click="ReceiptButton_Click" | ||||||
|                 Margin="50,200,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"/> |                 Margin="50,200,0,0"/> | ||||||
|         <Button x:Name="DeliveryAdminButton" Content="Lieferungen" Click="DeliveryAdminButton_Click" |         <Button x:Name="DeliveryAdminButton" Content="Lieferungen" Click="DeliveryAdminButton_Click" | ||||||
|                 Margin="50,240,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"/> |                 Margin="50,240,0,0"/> | ||||||
|         <Button x:Name="PaymentWindowButton" Content="Auszahlung" Click="PaymentWindowButton_Click" |         <Button x:Name="SeasonFinishButton" Content="Leseabschluss" Click="SeasonFinishButton_Click" | ||||||
|                 Margin="50,280,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"/> |                 Margin="50,280,0,0"/> | ||||||
|         <Button x:Name="BaseDataButton" Content="Stammdaten" Click="BaseDataButton_Click" |         <Button x:Name="BaseDataButton" Content="Stammdaten" Click="BaseDataButton_Click" | ||||||
|                 Margin="50,320,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"/> |                 Margin="50,320,0,0"/> | ||||||
|  |  | ||||||
|         <Button x:Name="TestWindowButton" Content="Test Fenster" Click="TestWindowButton_Click" |         <Button x:Name="TestWindowButton" Content="Test Fenster" Click="TestWindowButton_Click" | ||||||
|                 Margin="260,280,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"/> |                 Margin="260,280,0,0"/> | ||||||
|         <Button x:Name="QueryWindowButton" Content="Datenbankabfragen" Click="QueryWindowButton_Click" |         <Button x:Name="QueryWindowButton" Content="Datenbankabfragen" Click="QueryWindowButton_Click" | ||||||
|                 Margin="260,320,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"/> |                 Margin="260,320,0,0"/> | ||||||
|     </Grid> |     </Grid> | ||||||
| </Window> | </Window> | ||||||
|   | |||||||
| @@ -1,3 +1,4 @@ | |||||||
|  | using System.Reflection; | ||||||
| using System.Windows; | using System.Windows; | ||||||
|  |  | ||||||
| namespace Elwig.Windows { | namespace Elwig.Windows { | ||||||
| @@ -5,6 +6,8 @@ namespace Elwig.Windows { | |||||||
|  |  | ||||||
|         public MainWindow() { |         public MainWindow() { | ||||||
|             InitializeComponent(); |             InitializeComponent(); | ||||||
|  |             var v = Assembly.GetExecutingAssembly().GetName().Version; | ||||||
|  |             VersionField.Text = "Version: " + (v == null ? "?" : $"{v.Major}.{v.Minor}.{v.Build}") + $" – {App.BranchName}"; | ||||||
|             if (!App.Config.Debug) { |             if (!App.Config.Debug) { | ||||||
|                 TestWindowButton.Visibility = Visibility.Hidden; |                 TestWindowButton.Visibility = Visibility.Hidden; | ||||||
|                 //QueryWindowButton.Visibility = Visibility.Hidden; |                 //QueryWindowButton.Visibility = Visibility.Hidden; | ||||||
| @@ -52,8 +55,8 @@ namespace Elwig.Windows { | |||||||
|             w.Show(); |             w.Show(); | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         private void PaymentWindowButton_Click(object sender, RoutedEventArgs e) { |         private void SeasonFinishButton_Click(object sender, RoutedEventArgs e) { | ||||||
|             var w = new ChartWindow(); |             var w = new SeasonFinishWindow(); | ||||||
|             w.Show(); |             w.Show(); | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|   | |||||||
| @@ -4,7 +4,7 @@ | |||||||
|         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||||||
|         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||||||
|         xmlns:local="clr-namespace:Elwig.Windows" |         xmlns:local="clr-namespace:Elwig.Windows" | ||||||
|         Title="Mitglieder - Elwig" Height="670" Width="1250" MinHeight="600" MinWidth="1000" |         Title="Mitglieder - Elwig" Height="700" Width="1250" MinHeight="650" MinWidth="1150" | ||||||
|         Loaded="Window_Loaded"> |         Loaded="Window_Loaded"> | ||||||
|     <Window.Resources> |     <Window.Resources> | ||||||
|         <Style TargetType="Label"> |         <Style TargetType="Label"> | ||||||
| @@ -36,16 +36,13 @@ | |||||||
|     <Grid> |     <Grid> | ||||||
|         <Grid.RowDefinitions> |         <Grid.RowDefinitions> | ||||||
|             <RowDefinition Height="19"/> |             <RowDefinition Height="19"/> | ||||||
|             <RowDefinition Height="0.8*"/> |             <RowDefinition Height="1*"/> | ||||||
|             <RowDefinition Height="0.8*"/> |             <RowDefinition Height="24"/> | ||||||
|             <RowDefinition Height="0.2*"/> |  | ||||||
|             <RowDefinition Height="1.3*"/> |  | ||||||
|             <RowDefinition Height="0.8*"/> |  | ||||||
|         </Grid.RowDefinitions> |         </Grid.RowDefinitions> | ||||||
|         <Grid.ColumnDefinitions> |         <Grid.ColumnDefinitions> | ||||||
|             <ColumnDefinition Width="370"/> |             <ColumnDefinition Width="1*" MinWidth="300"/> | ||||||
|             <ColumnDefinition Width="1*"/> |             <ColumnDefinition Width="5"/> | ||||||
|             <ColumnDefinition Width="1*"/> |             <ColumnDefinition Width="2.5*" MinWidth="800"/> | ||||||
|         </Grid.ColumnDefinitions> |         </Grid.ColumnDefinitions> | ||||||
|  |  | ||||||
|         <Menu Grid.ColumnSpan="3" BorderThickness="0,0,0,1" BorderBrush="LightGray" Background="White"> |         <Menu Grid.ColumnSpan="3" BorderThickness="0,0,0,1" BorderBrush="LightGray" Background="White"> | ||||||
| @@ -54,12 +51,16 @@ | |||||||
|                           Click="Menu_Member_SendEmail_Click"/> |                           Click="Menu_Member_SendEmail_Click"/> | ||||||
|             </MenuItem> |             </MenuItem> | ||||||
|             <MenuItem Header="Drucken"> |             <MenuItem Header="Drucken"> | ||||||
|  |                 <MenuItem x:Name="Menu_Print_Letterhead" Header="Briefkopf drucken" | ||||||
|  |                           Click="Menu_Print_Letterhead_Click"/> | ||||||
|                 <MenuItem Header="Stammdatenblatt drucken"/> |                 <MenuItem Header="Stammdatenblatt drucken"/> | ||||||
|                 <MenuItem Header="Briefköpfe drucken"> |                 <MenuItem Header="Briefköpfe drucken"> | ||||||
|                     <MenuItem x:Name="Menu_Print_Letterheads_MgNr" Header="nach MgNr. sortiert" IsEnabled="False" Tag="Print" |                     <MenuItem x:Name="Menu_Print_Letterheads_MgNr" Header="nach MgNr. sortiert" IsEnabled="False" Tag="Print" | ||||||
|                               Click="Menu_Print_Letterheads_MgNr_Click"/> |                               Click="Menu_Print_Letterheads_MgNr_Click"/> | ||||||
|                     <MenuItem x:Name="Menu_Print_Letterheads_Name" Header="nach Name sortiert" IsEnabled="False" Tag="Print" |                     <MenuItem x:Name="Menu_Print_Letterheads_Name" Header="nach Name sortiert" IsEnabled="False" Tag="Print" | ||||||
|                               Click="Menu_Print_Letterheads_Name_Click"/> |                               Click="Menu_Print_Letterheads_Name_Click"/> | ||||||
|  |                     <MenuItem x:Name="Menu_Print_Letterheads_Plz" Header="nach PLZ, Ort, Name sortiert" IsEnabled="False" Tag="Print" | ||||||
|  |                               Click="Menu_Print_Letterheads_Plz_Click"/> | ||||||
|                 </MenuItem> |                 </MenuItem> | ||||||
|             </MenuItem> |             </MenuItem> | ||||||
|             <MenuItem Header="Rundschreiben"> |             <MenuItem Header="Rundschreiben"> | ||||||
| @@ -71,7 +72,7 @@ | |||||||
|             </MenuItem> |             </MenuItem> | ||||||
|         </Menu> |         </Menu> | ||||||
|  |  | ||||||
|         <Grid Grid.RowSpan="5" Grid.Row="1" Margin="5,0,5,0"> |         <Grid Grid.Row="1" Margin="5,0,0,0"> | ||||||
|             <Grid.RowDefinitions> |             <Grid.RowDefinitions> | ||||||
|                 <RowDefinition Height="39"/> |                 <RowDefinition Height="39"/> | ||||||
|                 <RowDefinition Height="*"/> |                 <RowDefinition Height="*"/> | ||||||
| @@ -93,15 +94,23 @@ | |||||||
|                       SelectionChanged="MemberList_SelectionChanged" |                       SelectionChanged="MemberList_SelectionChanged" | ||||||
|                       Margin="5,0,5,0" Grid.Row="1" FontSize="14" Grid.ColumnSpan="3"> |                       Margin="5,0,5,0" Grid.Row="1" FontSize="14" Grid.ColumnSpan="3"> | ||||||
|                 <DataGrid.Columns> |                 <DataGrid.Columns> | ||||||
|                     <DataGridTextColumn Header="MgNr."    Binding="{Binding MgNr, StringFormat='{}{0} '}" Width="50"> |                     <DataGridTextColumn Header="MgNr." Binding="{Binding MgNr, StringFormat='{}{0} '}" Width="50"> | ||||||
|                         <DataGridTextColumn.CellStyle> |                         <DataGridTextColumn.CellStyle> | ||||||
|                             <Style> |                             <Style> | ||||||
|                                 <Setter Property="TextBlock.TextAlignment" Value="Right"/> |                                 <Setter Property="TextBlock.TextAlignment" Value="Right"/> | ||||||
|                             </Style> |                             </Style> | ||||||
|                         </DataGridTextColumn.CellStyle> |                         </DataGridTextColumn.CellStyle> | ||||||
|                     </DataGridTextColumn> |                     </DataGridTextColumn> | ||||||
|                     <DataGridTextColumn Header="Nachname" Binding="{Binding FamilyName}" Width="4*"/> |                     <DataGridTextColumn Header="Nachname" Binding="{Binding FamilyName}" Width="140"/> | ||||||
|                     <DataGridTextColumn Header="Vorname"  Binding="{Binding GivenName}" Width="3*"/> |                     <DataGridTextColumn Header="Vorname" Binding="{Binding GivenName}" Width="140"/> | ||||||
|  |                     <DataGridTextColumn Header="GA" Binding="{Binding BusinessShares, StringFormat='{}{0} '}" Width="40"> | ||||||
|  |                         <DataGridTextColumn.CellStyle> | ||||||
|  |                             <Style> | ||||||
|  |                                 <Setter Property="TextBlock.TextAlignment" Value="Right"/> | ||||||
|  |                             </Style> | ||||||
|  |                         </DataGridTextColumn.CellStyle> | ||||||
|  |                     </DataGridTextColumn> | ||||||
|  |                     <DataGridTextColumn Header="Rechnungsadresse" Binding="{Binding BillingAddress.Name}" Width="200"/> | ||||||
|                 </DataGrid.Columns> |                 </DataGrid.Columns> | ||||||
|             </DataGrid> |             </DataGrid> | ||||||
|  |  | ||||||
| @@ -126,256 +135,307 @@ | |||||||
|                     Click="CancelButton_Click"/> |                     Click="CancelButton_Click"/> | ||||||
|         </Grid> |         </Grid> | ||||||
|  |  | ||||||
|         <GroupBox Header="Persönliche Daten" Grid.Column="1" Grid.Row="1" Grid.RowSpan="2" Margin="5,5,5,5"> |         <GridSplitter Grid.Column="1" Grid.Row="1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/> | ||||||
|             <Grid> |  | ||||||
|                 <Grid.ColumnDefinitions> |  | ||||||
|                     <ColumnDefinition Width="80"/> |  | ||||||
|                     <ColumnDefinition Width="3*"/> |  | ||||||
|                     <ColumnDefinition Width="50"/> |  | ||||||
|                     <ColumnDefinition Width="2*"/> |  | ||||||
|                 </Grid.ColumnDefinitions> |  | ||||||
|  |  | ||||||
|                 <Label Content="MgNr.:" Margin="10,10,0,0" Grid.Column="0"/> |         <Grid Grid.Column="2" Grid.Row="1"> | ||||||
|                 <TextBox x:Name="MgNrInput" Margin="0,10,0,0" Width="48" Grid.Column="1" TextAlignment="Right" HorizontalAlignment="Left" |             <Grid.RowDefinitions> | ||||||
|                          TextChanged="MgNrInput_TextChanged" LostFocus="MgNrInput_LostFocus"/> |                 <RowDefinition Height="0.8*"/> | ||||||
|  |                 <RowDefinition Height="0.8*"/> | ||||||
|  |                 <RowDefinition Height="0.2*"/> | ||||||
|  |                 <RowDefinition Height="1.3*"/> | ||||||
|  |                 <RowDefinition Height="0.8*"/> | ||||||
|  |             </Grid.RowDefinitions> | ||||||
|  |             <Grid.ColumnDefinitions> | ||||||
|  |                 <ColumnDefinition Width="*"/> | ||||||
|  |                 <ColumnDefinition Width="*"/> | ||||||
|  |             </Grid.ColumnDefinitions> | ||||||
|  |  | ||||||
|                 <Label Content="Vorg.:" Margin="10,10,0,0" Grid.Column="2"/> |             <GroupBox Header="Persönliche Daten" Grid.Column="0" Grid.Row="0" Grid.RowSpan="2" Margin="5,5,5,5"> | ||||||
|                 <TextBox x:Name="PredecessorMgNrInput" Margin="0,10,10,0" Width="48" Grid.Column="3" TextAlignment="Right" HorizontalAlignment="Left" |                 <Grid> | ||||||
|                          TextChanged="PredecessorMgNrInput_TextChanged" LostFocus="PredecessorMgNrInput_LostFocus"/> |                     <Grid.ColumnDefinitions> | ||||||
|  |                         <ColumnDefinition Width="80"/> | ||||||
|  |                         <ColumnDefinition Width="3*"/> | ||||||
|  |                         <ColumnDefinition Width="50"/> | ||||||
|  |                         <ColumnDefinition Width="2*"/> | ||||||
|  |                     </Grid.ColumnDefinitions> | ||||||
|  |  | ||||||
|                 <Label Content="Präfix:" Margin="10,40,0,0" Grid.Column="2"/> |                     <Label Content="MgNr.:" Margin="10,10,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="PrefixInput" Margin="0,40,10,0" Grid.Column="3" |                     <TextBox x:Name="MgNrInput" Margin="0,10,0,0" Width="48" Grid.Column="1" TextAlignment="Right" HorizontalAlignment="Left" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="MgNrInput_TextChanged" LostFocus="MgNrInput_LostFocus"/> | ||||||
|  |  | ||||||
|                 <Label Content="Vorname:" Margin="10,40,0,0" Grid.Column="0"/> |                     <Label Content="Vorg.:" Margin="10,10,0,0" Grid.Column="2"/> | ||||||
|                 <TextBox x:Name="GivenNameInput" Margin="0,40,0,0" Grid.Column="1" |                     <TextBox x:Name="PredecessorMgNrInput" Margin="0,10,10,0" Width="48" Grid.Column="3" TextAlignment="Right" HorizontalAlignment="Left" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="PredecessorMgNrInput_TextChanged" LostFocus="PredecessorMgNrInput_LostFocus"/> | ||||||
|  |  | ||||||
|                 <Label Content="Nachname:" Margin="10,70,0,0" Grid.Column="0"/> |                     <Label Content="Präfix:" Margin="10,40,0,0" Grid.Column="2"/> | ||||||
|                 <TextBox x:Name="FamilyNameInput" Margin="0,70,0,0" Grid.Column="1" |                     <TextBox x:Name="PrefixInput" Margin="0,40,10,0" Grid.Column="3" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <Label Content="Suffix:" Margin="10,70,0,0" Grid.Column="2"/> |                     <Label Content="Vorname:" Margin="10,40,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="SuffixInput" Margin="0,70,10,0" Grid.Column="3" |                     <TextBox x:Name="GivenNameInput" Margin="0,40,0,0" Grid.Column="1" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <Label Content="Geburtstag:" Margin="10,100,0,0" Grid.Column="0"/> |                     <Label Content="Nachname:" Margin="10,70,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="BirthdayInput" Margin="0,100,0,0" Grid.Column="1" Width="78" TextAlignment="Right" HorizontalAlignment="Left" |                     <TextBox x:Name="FamilyNameInput" Margin="0,70,0,0" Grid.Column="1" | ||||||
|                          TextChanged="PartialDateInput_TextChanged" LostFocus="PartialDateInput_LostFocus"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <Label Content="Alter:" Margin="85,100,0,0" Grid.Column="1" Grid.ColumnSpan="3"/> |                     <Label Content="Suffix:" Margin="10,70,0,0" Grid.Column="2"/> | ||||||
|                 <TextBlock x:Name="Age" Text="-" Margin="119,104,0,0" Grid.Column="1" Grid.ColumnSpan="3" TextWrapping="NoWrap" VerticalAlignment="Top"/> |                     <TextBox x:Name="SuffixInput" Margin="0,70,10,0" Grid.Column="3" | ||||||
|  |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <CheckBox x:Name="DeceasedInput" Content="Verstorben" IsEnabled="False" |                     <Label Content="Geburtstag:" Margin="10,100,0,0" Grid.Column="0"/> | ||||||
|                           Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" |                     <TextBox x:Name="BirthdayInput" Margin="0,100,0,0" Grid.Column="1" Width="78" TextAlignment="Right" HorizontalAlignment="Left" | ||||||
|                           Grid.Column="3" HorizontalAlignment="Left" Margin="0,105,0,0" VerticalAlignment="Top" IsChecked="False"/> |                              TextChanged="PartialDateInput_TextChanged" LostFocus="PartialDateInput_LostFocus"/> | ||||||
|  |  | ||||||
|                 <Label Content="Adresse:" Margin="10,130,0,0"/> |                     <Label Content="Alter:" Margin="85,100,0,0" Grid.Column="1" Grid.ColumnSpan="3"/> | ||||||
|                 <TextBox x:Name="AddressInput" Margin="0,130,10,0" Grid.Column="1" Grid.ColumnSpan="3" |                     <TextBlock x:Name="Age" Text="-" Margin="119,104,0,0" Grid.Column="1" Grid.ColumnSpan="3" TextWrapping="NoWrap" VerticalAlignment="Top"/> | ||||||
|                          TextChanged="TextBox_TextChanged"/> |  | ||||||
|  |  | ||||||
|                 <Label Content="PLZ/Ort:" Margin="10,160,0,0" Grid.Column="0"/> |                     <CheckBox x:Name="DeceasedInput" Content="Verstorben" IsEnabled="False" | ||||||
|                 <TextBox x:Name="PlzInput" Margin="0,160,0,0" Width="42" Grid.Column="1" HorizontalAlignment="Left" |                               Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" | ||||||
|                          TextChanged="PlzInput_TextChanged" LostFocus="PlzInput_LostFocus" Tag="PLZ"/> |                               Grid.Column="3" HorizontalAlignment="Left" Margin="0,105,0,0" VerticalAlignment="Top" IsChecked="False"/> | ||||||
|                 <ComboBox x:Name="OrtInput" ItemTemplate="{StaticResource PostalDestTemplate}" TextSearch.TextPath="Ort.Name" |  | ||||||
|                           Margin="47,160,10,0" Grid.Column="1" Grid.ColumnSpan="3"/> |  | ||||||
|             </Grid> |  | ||||||
|         </GroupBox> |  | ||||||
|         <GroupBox Header="Kontaktdaten" Grid.Column="1" Grid.Row="3" Grid.RowSpan="2" Margin="5,5,5,5"> |  | ||||||
|             <Grid> |  | ||||||
|                 <Grid.ColumnDefinitions> |  | ||||||
|                     <ColumnDefinition Width="135"/> |  | ||||||
|                     <ColumnDefinition Width="*" MinWidth="180"/> |  | ||||||
|                     <ColumnDefinition Width="2*"/> |  | ||||||
|                 </Grid.ColumnDefinitions> |  | ||||||
|  |  | ||||||
|                 <Label Content="E-Mail-Adresse (1):" Margin="10,10,0,0" Grid.Column="0"/> |                     <Label Content="Adresse:" Margin="10,130,0,0"/> | ||||||
|                 <TextBox x:Name="EmailAddress1Input" Margin="0,10,10,0" Grid.Column="1" Grid.ColumnSpan="2" |                     <TextBox x:Name="AddressInput" Margin="0,130,10,0" Grid.Column="1" Grid.ColumnSpan="3" | ||||||
|                          TextChanged="EmailAddressInput_TextChanged" LostFocus="EmailAddressInput_LostFocus"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <Label Content="E-Mail-Adresse (2):" Margin="10,40,0,0" Grid.Column="0"/> |                     <Label Content="PLZ/Ort:" Margin="10,160,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="EmailAddress2Input" Margin="0,40,10,0" Grid.Column="1" Grid.ColumnSpan="2" |                     <TextBox x:Name="PlzInput" Margin="0,160,0,0" Width="42" Grid.Column="1" HorizontalAlignment="Left" | ||||||
|                          TextChanged="EmailAddressInput_TextChanged" LostFocus="EmailAddressInput_LostFocus"/> |                              TextChanged="PlzInput_TextChanged" LostFocus="PlzInput_LostFocus" Tag="PLZ"/> | ||||||
|  |                     <ComboBox x:Name="OrtInput" ItemTemplate="{StaticResource PostalDestTemplate}" TextSearch.TextPath="Ort.Name" | ||||||
|  |                               Margin="47,160,10,0" Grid.Column="1" Grid.ColumnSpan="3"/> | ||||||
|  |                 </Grid> | ||||||
|  |             </GroupBox> | ||||||
|  |             <GroupBox Header="Kontaktdaten" Grid.Column="0" Grid.Row="2" Grid.RowSpan="2" Margin="5,5,5,5"> | ||||||
|  |                 <Grid> | ||||||
|  |                     <Grid.ColumnDefinitions> | ||||||
|  |                         <ColumnDefinition Width="135"/> | ||||||
|  |                         <ColumnDefinition Width="*" MinWidth="180"/> | ||||||
|  |                         <ColumnDefinition Width="2*"/> | ||||||
|  |                     </Grid.ColumnDefinitions> | ||||||
|  |  | ||||||
|                 <ComboBox x:Name="PhoneNr1TypeInput" DisplayMemberPath="Value" Margin="6,70,5,0" FontSize="12" Padding="6,4,4,4"/> |                     <Label Content="E-Mail-Adresse (1):" Margin="10,10,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="PhoneNr1Input" Margin="0,70,5,0" Grid.Column="1" |                     <TextBox x:Name="EmailAddress1Input" Margin="0,10,10,0" Grid.Column="1" Grid.ColumnSpan="2" | ||||||
|                          TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> |                              TextChanged="EmailAddressInput_TextChanged" LostFocus="EmailAddressInput_LostFocus"/> | ||||||
|                 <TextBox x:Name="PhoneNr1CommentInput" Margin="0,70,10,0" Grid.Column="2" |  | ||||||
|                          TextChanged="TextBox_TextChanged"/> |  | ||||||
|  |  | ||||||
|                 <ComboBox x:Name="PhoneNr2TypeInput" DisplayMemberPath="Value" Margin="6,100,5,0" FontSize="12" Padding="6,4,4,4"/> |                     <Label Content="E-Mail-Adresse (2):" Margin="10,40,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="PhoneNr2Input" Margin="0,100,5,0" Grid.Column="1" |                     <TextBox x:Name="EmailAddress2Input" Margin="0,40,10,0" Grid.Column="1" Grid.ColumnSpan="2" | ||||||
|                          TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> |                              TextChanged="EmailAddressInput_TextChanged" LostFocus="EmailAddressInput_LostFocus"/> | ||||||
|                 <TextBox x:Name="PhoneNr2CommentInput" Margin="0,100,10,0" Grid.Column="2" |  | ||||||
|                          TextChanged="TextBox_TextChanged"/> |  | ||||||
|  |  | ||||||
|                 <ComboBox x:Name="PhoneNr3TypeInput" DisplayMemberPath="Value" Margin="6,130,5,0" FontSize="12" Padding="6,4,4,4"/> |                     <ComboBox x:Name="PhoneNr1TypeInput" DisplayMemberPath="Value" Margin="6,70,5,0" FontSize="12" Padding="6,4,4,4"/> | ||||||
|                 <TextBox x:Name="PhoneNr3Input" Margin="0,130,5,0" Grid.Column="1" |                     <TextBox x:Name="PhoneNr1Input" Margin="0,70,5,0" Grid.Column="1" | ||||||
|                          TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> |                              TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> | ||||||
|                 <TextBox x:Name="PhoneNr3CommentInput" Margin="0,130,10,0" Grid.Column="2" |                     <TextBox x:Name="PhoneNr1CommentInput" Margin="0,70,10,0" Grid.Column="2" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <ComboBox x:Name="PhoneNr4TypeInput" DisplayMemberPath="Value" Margin="6,160,5,0" FontSize="12" Padding="6,4,4,4"/> |                     <ComboBox x:Name="PhoneNr2TypeInput" DisplayMemberPath="Value" Margin="6,100,5,0" FontSize="12" Padding="6,4,4,4"/> | ||||||
|                 <TextBox x:Name="PhoneNr4Input" Margin="0,160,5,0" Grid.Column="1" |                     <TextBox x:Name="PhoneNr2Input" Margin="0,100,5,0" Grid.Column="1" | ||||||
|                          TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> |                              TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> | ||||||
|                 <TextBox x:Name="PhoneNr4CommentInput" Margin="0,160,10,0" Grid.Column="2" |                     <TextBox x:Name="PhoneNr2CommentInput" Margin="0,100,10,0" Grid.Column="2" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <ComboBox x:Name="PhoneNr5TypeInput" DisplayMemberPath="Value" Margin="6,190,5,0" FontSize="12" Padding="6,4,4,4"/> |                     <ComboBox x:Name="PhoneNr3TypeInput" DisplayMemberPath="Value" Margin="6,130,5,0" FontSize="12" Padding="6,4,4,4"/> | ||||||
|                 <TextBox x:Name="PhoneNr5Input" Margin="0,190,5,0" Grid.Column="1" |                     <TextBox x:Name="PhoneNr3Input" Margin="0,130,5,0" Grid.Column="1" | ||||||
|                          TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> |                              TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> | ||||||
|                 <TextBox x:Name="PhoneNr5CommentInput" Margin="0,190,10,0" Grid.Column="2" |                     <TextBox x:Name="PhoneNr3CommentInput" Margin="0,130,10,0" Grid.Column="2" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <ComboBox x:Name="PhoneNr6TypeInput" DisplayMemberPath="Value" Margin="6,220,5,0" FontSize="12" Padding="6,4,4,4"/> |                     <ComboBox x:Name="PhoneNr4TypeInput" DisplayMemberPath="Value" Margin="6,160,5,0" FontSize="12" Padding="6,4,4,4"/> | ||||||
|                 <TextBox x:Name="PhoneNr6Input" Margin="0,220,5,0" Grid.Column="1" |                     <TextBox x:Name="PhoneNr4Input" Margin="0,160,5,0" Grid.Column="1" | ||||||
|                          TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> |                              TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> | ||||||
|                 <TextBox x:Name="PhoneNr6CommentInput" Margin="0,220,10,0" Grid.Column="2" |                     <TextBox x:Name="PhoneNr4CommentInput" Margin="0,160,10,0" Grid.Column="2" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <ComboBox x:Name="PhoneNr7TypeInput" DisplayMemberPath="Value" Margin="6,250,5,0" FontSize="12" Padding="6,4,4,4"/> |                     <ComboBox x:Name="PhoneNr5TypeInput" DisplayMemberPath="Value" Margin="6,190,5,0" FontSize="12" Padding="6,4,4,4"/> | ||||||
|                 <TextBox x:Name="PhoneNr7Input" Margin="0,250,5,0" Grid.Column="1" |                     <TextBox x:Name="PhoneNr5Input" Margin="0,190,5,0" Grid.Column="1" | ||||||
|                          TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> |                              TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> | ||||||
|                 <TextBox x:Name="PhoneNr7CommentInput" Margin="0,250,10,0" Grid.Column="2" |                     <TextBox x:Name="PhoneNr5CommentInput" Margin="0,190,10,0" Grid.Column="2" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <ComboBox x:Name="PhoneNr8TypeInput" DisplayMemberPath="Value" Margin="6,280,5,0" FontSize="12" Padding="6,4,4,4"/> |                     <ComboBox x:Name="PhoneNr6TypeInput" DisplayMemberPath="Value" Margin="6,220,5,0" FontSize="12" Padding="6,4,4,4"/> | ||||||
|                 <TextBox x:Name="PhoneNr8Input" Margin="0,280,5,0" Grid.Column="1" |                     <TextBox x:Name="PhoneNr6Input" Margin="0,220,5,0" Grid.Column="1" | ||||||
|                          TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> |                              TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> | ||||||
|                 <TextBox x:Name="PhoneNr8CommentInput" Margin="0,280,10,0" Grid.Column="2" |                     <TextBox x:Name="PhoneNr6CommentInput" Margin="0,220,10,0" Grid.Column="2" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <ComboBox x:Name="PhoneNr9TypeInput" DisplayMemberPath="Value" Margin="6,310,5,0" FontSize="12" Padding="6,4,4,4"/> |                     <ComboBox x:Name="PhoneNr7TypeInput" DisplayMemberPath="Value" Margin="6,250,5,0" FontSize="12" Padding="6,4,4,4"/> | ||||||
|                 <TextBox x:Name="PhoneNr9Input" Margin="0,310,5,0" Grid.Column="1" |                     <TextBox x:Name="PhoneNr7Input" Margin="0,250,5,0" Grid.Column="1" | ||||||
|                          TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> |                              TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> | ||||||
|                 <TextBox x:Name="PhoneNr9CommentInput" Margin="0,280,10,0" Grid.Column="2" |                     <TextBox x:Name="PhoneNr7CommentInput" Margin="0,250,10,0" Grid.Column="2" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|             </Grid> |  | ||||||
|         </GroupBox> |  | ||||||
|         <GroupBox Header="Bankverbindung" Grid.Column="1" Grid.Row="5" Margin="5,5,5,10"> |  | ||||||
|             <Grid> |  | ||||||
|                 <Grid.ColumnDefinitions> |  | ||||||
|                     <ColumnDefinition Width="65"/> |  | ||||||
|                     <ColumnDefinition/> |  | ||||||
|                 </Grid.ColumnDefinitions> |  | ||||||
|  |  | ||||||
|                 <Label Content="IBAN:" Margin="10,10,0,0" Grid.Column="0"/> |                     <ComboBox x:Name="PhoneNr8TypeInput" DisplayMemberPath="Value" Margin="6,280,5,0" FontSize="12" Padding="6,4,4,4"/> | ||||||
|                 <TextBox x:Name="IbanInput" Margin="0,10,10,0" Grid.Column="1" |                     <TextBox x:Name="PhoneNr8Input" Margin="0,280,5,0" Grid.Column="1" | ||||||
|                          TextChanged="IbanInput_TextChanged" LostFocus="IbanInput_LostFocus"/> |                              TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> | ||||||
|  |                     <TextBox x:Name="PhoneNr8CommentInput" Margin="0,280,10,0" Grid.Column="2" | ||||||
|  |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <Label Content="BIC:" Margin="10,40,0,0" Grid.Column="0"/> |                     <ComboBox x:Name="PhoneNr9TypeInput" DisplayMemberPath="Value" Margin="6,310,5,0" FontSize="12" Padding="6,4,4,4"/> | ||||||
|                 <TextBox x:Name="BicInput" Margin="0,40,10,0" Grid.Column="1" |                     <TextBox x:Name="PhoneNr9Input" Margin="0,310,5,0" Grid.Column="1" | ||||||
|                          TextChanged="BicInput_TextChanged" LostFocus="BicInput_LostFocus"/> |                              TextChanged="PhoneNrInput_TextChanged" LostFocus="PhoneNrInput_LostFocus"/> | ||||||
|             </Grid> |                     <TextBox x:Name="PhoneNr9CommentInput" Margin="0,280,10,0" Grid.Column="2" | ||||||
|         </GroupBox> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|         <GroupBox Header="Betrieb" Grid.Column="2" Grid.Row="1" Grid.RowSpan="1" Margin="5,5,5,5"> |                 </Grid> | ||||||
|             <Grid> |             </GroupBox> | ||||||
|                 <Grid.ColumnDefinitions> |             <GroupBox Header="Bankverbindung" Grid.Column="0" Grid.Row="4" Margin="5,5,5,10"> | ||||||
|                     <ColumnDefinition Width="90"/> |                 <Grid> | ||||||
|                     <ColumnDefinition Width="150"/> |                     <Grid.ColumnDefinitions> | ||||||
|                     <ColumnDefinition/> |                         <ColumnDefinition Width="65"/> | ||||||
|                 </Grid.ColumnDefinitions> |                         <ColumnDefinition/> | ||||||
|  |                     </Grid.ColumnDefinitions> | ||||||
|  |  | ||||||
|                 <Label Content="UID:" Margin="10,10,0,0" Grid.Column="0"/> |                     <Label Content="IBAN:" Margin="10,10,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="UstIdNrInput" Margin="0,10,10,0" Grid.Column="1" Width="96" HorizontalAlignment="Left" |                     <TextBox x:Name="IbanInput" Margin="0,10,10,0" Grid.Column="1" | ||||||
|                          TextChanged="UstIdNrInput_TextChanged" LostFocus="UstIdNrInput_LostFocus"/> |                              TextChanged="IbanInput_TextChanged" LostFocus="IbanInput_LostFocus"/> | ||||||
|  |  | ||||||
|                 <Label Content="Betriebs-Nr.:" Margin="10,40,0,0" Grid.Column="0"/> |                     <Label Content="BIC:" Margin="10,40,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="LfbisNrInput" Margin="0,40,10,0" Grid.Column="1" Width="64" HorizontalAlignment="Left" TextAlignment="Right" |                     <TextBox x:Name="BicInput" Margin="0,40,10,0" Grid.Column="1" | ||||||
|                          TextChanged="LfbisNrInput_TextChanged" LostFocus="LfbisNrInput_LostFocus"/> |                              TextChanged="BicInput_TextChanged" LostFocus="BicInput_LostFocus"/> | ||||||
|  |                 </Grid> | ||||||
|  |             </GroupBox> | ||||||
|  |             <GroupBox Header="Betrieb" Grid.Column="1" Grid.Row="0" Grid.RowSpan="1" Margin="5,5,5,5"> | ||||||
|  |                 <Grid> | ||||||
|  |                     <Grid.ColumnDefinitions> | ||||||
|  |                         <ColumnDefinition Width="90"/> | ||||||
|  |                         <ColumnDefinition Width="150"/> | ||||||
|  |                         <ColumnDefinition/> | ||||||
|  |                     </Grid.ColumnDefinitions> | ||||||
|  |  | ||||||
|                 <CheckBox x:Name="BuchführendInput" Content="Buchführend" IsEnabled="False" |                     <Label Content="UID:" Margin="10,10,0,0" Grid.Column="0"/> | ||||||
|                           Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" |                     <TextBox x:Name="UstIdNrInput" Margin="0,10,10,0" Grid.Column="1" Width="96" HorizontalAlignment="Left" | ||||||
|                           Grid.Column="2" HorizontalAlignment="Left" Margin="10,15,0,0" VerticalAlignment="Top" IsChecked="False"/> |                              TextChanged="UstIdNrInput_TextChanged" LostFocus="UstIdNrInput_LostFocus"/> | ||||||
|             </Grid> |  | ||||||
|         </GroupBox> |  | ||||||
|         <GroupBox Header="Rechnungsadresse (optional)" Grid.Column="2" Grid.Row="2" Grid.RowSpan="2" Margin="5,5,5,5"> |  | ||||||
|             <Grid> |  | ||||||
|                 <Grid.ColumnDefinitions> |  | ||||||
|                     <ColumnDefinition Width="65"/> |  | ||||||
|                     <ColumnDefinition/> |  | ||||||
|                 </Grid.ColumnDefinitions> |  | ||||||
|  |  | ||||||
|                 <Label Content="Name:" Margin="10,10,0,0" Grid.Column="0"/> |                     <Label Content="Betriebs-Nr.:" Margin="10,40,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="BillingNameInput" Margin="0,10,10,10" Grid.Column="1" Grid.ColumnSpan="2" |                     <TextBox x:Name="LfbisNrInput" Margin="0,40,10,0" Grid.Column="1" Width="64" HorizontalAlignment="Left" TextAlignment="Right" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="LfbisNrInput_TextChanged" LostFocus="LfbisNrInput_LostFocus"/> | ||||||
|  |  | ||||||
|                 <Label Content="Adresse:" Margin="10,40,0,0" Grid.Column="0"/> |                     <CheckBox x:Name="BuchführendInput" Content="Buchführend" IsEnabled="False" | ||||||
|                 <TextBox x:Name="BillingAddressInput" Margin="0,40,10,0" Grid.Column="1" |                               Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                               Grid.Column="2" HorizontalAlignment="Left" Margin="10,15,0,0" VerticalAlignment="Top" IsChecked="False"/> | ||||||
|  |                 </Grid> | ||||||
|  |             </GroupBox> | ||||||
|  |             <GroupBox Header="Rechnungsadresse (optional)" Grid.Column="1" Grid.Row="1" Grid.RowSpan="2" Margin="5,5,5,5"> | ||||||
|  |                 <Grid> | ||||||
|  |                     <Grid.ColumnDefinitions> | ||||||
|  |                         <ColumnDefinition Width="65"/> | ||||||
|  |                         <ColumnDefinition/> | ||||||
|  |                     </Grid.ColumnDefinitions> | ||||||
|  |  | ||||||
|                 <Label Content="PLZ/Ort:" Margin="10,70,0,0" Grid.Column="0"/> |                     <Label Content="Name:" Margin="10,10,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="BillingPlzInput" Margin="0,70,0,0" Width="42" Grid.Column="1" HorizontalAlignment="Left" |                     <TextBox x:Name="BillingNameInput" Margin="0,10,10,10" Grid.Column="1" Grid.ColumnSpan="2" | ||||||
|                          TextChanged="PlzInput_TextChanged" LostFocus="PlzInput_LostFocus" Tag="PLZ"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|                 <ComboBox x:Name="BillingOrtInput" ItemTemplate="{StaticResource PostalDestTemplate}" TextSearch.TextPath="Ort.Name" |  | ||||||
|                           Margin="47,70,10,0" Grid.Column="1"/> |  | ||||||
|             </Grid> |  | ||||||
|         </GroupBox> |  | ||||||
|         <GroupBox Header="Genossenschaft" Grid.Column="2" Grid.Row="4" Grid.RowSpan="2" Margin="5,5,5,10"> |  | ||||||
|             <Grid> |  | ||||||
|                 <Grid.ColumnDefinitions> |  | ||||||
|                     <ColumnDefinition Width="120"/> |  | ||||||
|                     <ColumnDefinition Width="120"/> |  | ||||||
|                     <ColumnDefinition/> |  | ||||||
|                 </Grid.ColumnDefinitions> |  | ||||||
|  |  | ||||||
|                 <Label Content="Eintritt:" Margin="10,10,0,0" Grid.Column="0"/> |                     <Label Content="Adresse:" Margin="10,40,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="EntryDateInput" Margin="0,10,10,0" Width="78" Grid.Column="1" HorizontalAlignment="Left" TextAlignment="Right" |                     <TextBox x:Name="BillingAddressInput" Margin="0,40,10,0" Grid.Column="1" | ||||||
|                          TextChanged="DateInput_TextChanged" LostFocus="DateInput_LostFocus"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <Label Content="Austritt:" Margin="10,40,0,0" Grid.Column="0"/> |                     <Label Content="PLZ/Ort:" Margin="10,70,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="ExitDateInput" Margin="0,40,10,0" Width="78" Grid.Column="1" HorizontalAlignment="Left" TextAlignment="Right" |                     <TextBox x:Name="BillingPlzInput" Margin="0,70,0,0" Width="42" Grid.Column="1" HorizontalAlignment="Left" | ||||||
|                          TextChanged="DateInput_TextChanged" LostFocus="DateInput_LostFocus"/> |                              TextChanged="PlzInput_TextChanged" LostFocus="PlzInput_LostFocus" Tag="PLZ"/> | ||||||
|  |                     <ComboBox x:Name="BillingOrtInput" ItemTemplate="{StaticResource PostalDestTemplate}" TextSearch.TextPath="Ort.Name" | ||||||
|  |                               Margin="47,70,10,0" Grid.Column="1"/> | ||||||
|  |                 </Grid> | ||||||
|  |             </GroupBox> | ||||||
|  |             <GroupBox Header="Genossenschaft" Grid.Column="1" Grid.Row="3" Grid.RowSpan="2" Margin="5,5,5,10"> | ||||||
|  |                 <Grid> | ||||||
|  |                     <Grid.ColumnDefinitions> | ||||||
|  |                         <ColumnDefinition Width="120"/> | ||||||
|  |                         <ColumnDefinition Width="120"/> | ||||||
|  |                         <ColumnDefinition/> | ||||||
|  |                     </Grid.ColumnDefinitions> | ||||||
|  |  | ||||||
|                 <Label Content="Geschäftsanteile:" Margin="10,70,0,0" Grid.Column="0"/> |                     <Label Content="Eintritt:" Margin="10,10,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="BusinessSharesInput" Margin="0,70,10,0" Width="48" Grid.Column="1" HorizontalAlignment="Left" TextAlignment="Right" |                     <TextBox x:Name="EntryDateInput" Margin="0,10,10,0" Width="78" Grid.Column="1" HorizontalAlignment="Left" TextAlignment="Right" | ||||||
|                          TextChanged="IntegerInput_TextChanged"/> |                              TextChanged="DateInput_TextChanged" LostFocus="DateInput_LostFocus"/> | ||||||
|  |  | ||||||
|                 <Label Content="BH-Konto:" Margin="10,100,0,0" Grid.Column="0"/> |                     <Label Content="Austritt:" Margin="10,40,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="AccountingNrInput" Margin="0,100,10,0" Grid.Column="1" |                     <TextBox x:Name="ExitDateInput" Margin="0,40,10,0" Width="78" Grid.Column="1" HorizontalAlignment="Left" TextAlignment="Right" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                              TextChanged="DateInput_TextChanged" LostFocus="DateInput_LostFocus"/> | ||||||
|  |  | ||||||
|                 <CheckBox x:Name="ActiveInput" Content="Aktiv" IsEnabled="False" |                     <Label Content="Geschäftsanteile:" Margin="10,70,0,0" Grid.Column="0"/> | ||||||
|                           Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" |                     <TextBox x:Name="BusinessSharesInput" Margin="0,70,10,0" Width="48" Grid.Column="1" HorizontalAlignment="Left" TextAlignment="Right" | ||||||
|                           Grid.Column="2" HorizontalAlignment="Left" Margin="10,15,0,0" VerticalAlignment="Top" IsChecked="False"/> |                              TextChanged="IntegerInput_TextChanged"/> | ||||||
|  |  | ||||||
|                 <CheckBox x:Name="VollLieferantInput" Content="Volllieferant" IsEnabled="False" |                     <Label Content="BH-Konto:" Margin="10,100,0,0" Grid.Column="0"/> | ||||||
|                           Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" |                     <TextBox x:Name="AccountingNrInput" Margin="0,100,10,0" Grid.Column="1" | ||||||
|                           Grid.Column="2" HorizontalAlignment="Left" Margin="10,45,0,0" VerticalAlignment="Top" IsChecked="False"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <CheckBox x:Name="FunkionärInput" Content="Funktionär" IsEnabled="False" |                     <CheckBox x:Name="ActiveInput" Content="Aktiv" IsEnabled="False" | ||||||
|                           Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" |                               Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" | ||||||
|                           Grid.Column="2" HorizontalAlignment="Left" Margin="10,75,0,0" VerticalAlignment="Top" IsChecked="False"/> |                               Grid.Column="2" HorizontalAlignment="Left" Margin="10,15,0,0" VerticalAlignment="Top" IsChecked="False"/> | ||||||
|  |  | ||||||
|                 <Label Content="Stamm-Zwst.:" Margin="10,130,0,0" Grid.Column="0"/> |                     <CheckBox x:Name="VollLieferantInput" Content="Volllieferant" IsEnabled="False" | ||||||
|                 <ComboBox x:Name="BranchInput" DisplayMemberPath="Name" TextSearch.TextPath="Name" |                               Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" | ||||||
|                           Margin="0,130,10,0" Grid.Column="1" Grid.ColumnSpan="2"/> |                               Grid.Column="2" HorizontalAlignment="Left" Margin="10,45,0,0" VerticalAlignment="Top" IsChecked="False"/> | ||||||
|  |  | ||||||
|                 <Label Content="Stammgemeinde:" Margin="10,160,0,0" Grid.Column="0"/> |                     <CheckBox x:Name="FunkionärInput" Content="Funktionär" IsEnabled="False" | ||||||
|                 <ComboBox x:Name="DefaultKgInput" DisplayMemberPath="Name" TextSearch.TextPath="Name" |                               Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" | ||||||
|                           Margin="0,160,10,0" Grid.Column="1" Grid.ColumnSpan="2"/> |                               Grid.Column="2" HorizontalAlignment="Left" Margin="10,75,0,0" VerticalAlignment="Top" IsChecked="False"/> | ||||||
|  |  | ||||||
|                 <Label Content="Anmerkung:" Margin="10,190,0,0" Grid.Column="0"/> |                     <Label Content="Stamm-Zwst.:" Margin="10,130,0,0" Grid.Column="0"/> | ||||||
|                 <TextBox x:Name="CommentInput" Margin="0,190,10,0" Grid.Column="1" Grid.ColumnSpan="2" |                     <ComboBox x:Name="BranchInput" DisplayMemberPath="Name" TextSearch.TextPath="Name" | ||||||
|                          TextChanged="TextBox_TextChanged"/> |                               Margin="0,130,10,0" Grid.Column="1" Grid.ColumnSpan="2"/> | ||||||
|  |  | ||||||
|                 <Label Content="Kontaktart:" Margin="10,220,0,0" Grid.Column="0"/> |                     <Label Content="Stammgemeinde:" Margin="10,160,0,0" Grid.Column="0"/> | ||||||
|                 <CheckBox x:Name="ContactPostalInput" Content="Post" IsEnabled="False" |                     <ComboBox x:Name="DefaultKgInput" DisplayMemberPath="Name" TextSearch.TextPath="Name" | ||||||
|                           Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" |                               Margin="0,160,10,0" Grid.Column="1" Grid.ColumnSpan="2"/> | ||||||
|                           HorizontalAlignment="Left" Margin="0,225,0,0" VerticalAlignment="Top" Grid.Column="1" Grid.ColumnSpan="2"/> |  | ||||||
|                 <CheckBox x:Name="ContactEmailInput" Content="E-Mail" IsEnabled="False" |  | ||||||
|                           Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" |  | ||||||
|                           HorizontalAlignment="Left" Margin="60,225,0,0" VerticalAlignment="Top" Grid.Column="1" Grid.ColumnSpan="2"/> |  | ||||||
|  |  | ||||||
|                 <Label Content="Gebundene Fläche:" Margin="10,250,0,0" Grid.Column="0"/> |                     <Label Content="Anmerkung:" Margin="10,190,0,0" Grid.Column="0"/> | ||||||
|                 <TextBlock x:Name="AreaCommitment" Text="- m²" |                     <TextBox x:Name="CommentInput" Margin="0,190,10,0" Grid.Column="1" Grid.ColumnSpan="2" | ||||||
|                            Grid.Column="1" HorizontalAlignment="Stretch" Margin="5,252,5,0" TextWrapping="NoWrap" VerticalAlignment="Top" FontSize="14" TextAlignment="Right"/> |                              TextChanged="TextBox_TextChanged"/> | ||||||
|  |  | ||||||
|                 <Button x:Name="DeliveryButton" Content="Lieferungen" Click="DeliveryButton_Click" IsEnabled="False" |                     <Label Content="Kontaktart:" Margin="10,220,0,0" Grid.Column="0"/> | ||||||
|                         HorizontalAlignment="Right" Margin="10,00,10,37" Width="150" VerticalAlignment="Bottom" Grid.ColumnSpan="3"/> |                     <CheckBox x:Name="ContactPostalInput" Content="Post" IsEnabled="False" | ||||||
|                 <Button x:Name="AreaCommitmentButton" Content="Flächenbindungen" Click="AreaCommitmentButton_Click" IsEnabled="False" |                               Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" | ||||||
|                         HorizontalAlignment="Right" Margin="10,10,10,5" Width="150" VerticalAlignment="Bottom" Grid.ColumnSpan="3"/> |                               HorizontalAlignment="Left" Margin="0,225,0,0" VerticalAlignment="Top" Grid.Column="1" Grid.ColumnSpan="2"/> | ||||||
|             </Grid> |                     <CheckBox x:Name="ContactEmailInput" Content="E-Mail" IsEnabled="False" | ||||||
|         </GroupBox> |                               Checked="CheckBox_Changed" Unchecked="CheckBox_Changed" | ||||||
|  |                               HorizontalAlignment="Left" Margin="60,225,0,0" VerticalAlignment="Top" Grid.Column="1" Grid.ColumnSpan="2"/> | ||||||
|  |  | ||||||
|  |                     <Button x:Name="DeliveryButton" Content="Lieferungen" Click="DeliveryButton_Click" IsEnabled="False" | ||||||
|  |                             HorizontalAlignment="Right" Margin="10,00,10,37" Width="150" VerticalAlignment="Bottom" Grid.ColumnSpan="3"/> | ||||||
|  |                     <Button x:Name="AreaCommitmentButton" Content="Flächenbindungen" Click="AreaCommitmentButton_Click" IsEnabled="False" | ||||||
|  |                             HorizontalAlignment="Right" Margin="10,10,10,5" Width="150" VerticalAlignment="Bottom" Grid.ColumnSpan="3"/> | ||||||
|  |                 </Grid> | ||||||
|  |             </GroupBox> | ||||||
|  |         </Grid> | ||||||
|  |  | ||||||
|  |         <StatusBar Grid.Row="5" Grid.ColumnSpan="3" BorderThickness="0,1,0,0" BorderBrush="Gray"> | ||||||
|  |             <StatusBar.ItemsPanel> | ||||||
|  |                 <ItemsPanelTemplate> | ||||||
|  |                     <Grid> | ||||||
|  |                         <Grid.ColumnDefinitions> | ||||||
|  |                             <ColumnDefinition Width="150"/> | ||||||
|  |                             <ColumnDefinition Width="Auto"/> | ||||||
|  |                             <ColumnDefinition Width="200"/> | ||||||
|  |                             <ColumnDefinition Width="Auto"/> | ||||||
|  |                             <ColumnDefinition Width="2*"/> | ||||||
|  |                             <ColumnDefinition Width="Auto"/> | ||||||
|  |                             <ColumnDefinition Width="3*"/> | ||||||
|  |                             <ColumnDefinition Width="Auto"/> | ||||||
|  |                             <ColumnDefinition Width="3*"/> | ||||||
|  |                         </Grid.ColumnDefinitions> | ||||||
|  |                     </Grid> | ||||||
|  |                 </ItemsPanelTemplate> | ||||||
|  |             </StatusBar.ItemsPanel> | ||||||
|  |             <StatusBarItem> | ||||||
|  |                 <TextBlock Name="StatusMembers" Text="Mitglieder: -"/> | ||||||
|  |             </StatusBarItem> | ||||||
|  |             <Separator Grid.Column="1"/> | ||||||
|  |             <StatusBarItem Grid.Column="2"> | ||||||
|  |                 <TextBlock Name="StatusBusinessShares" Text="Geschäftsanteile: -"/> | ||||||
|  |             </StatusBarItem> | ||||||
|  |             <Separator Grid.Column="3"/> | ||||||
|  |             <StatusBarItem Grid.Column="4"> | ||||||
|  |                 <TextBlock Name="StatusAreaCommitment" Text="Gebundene Fläche: -"/> | ||||||
|  |             </StatusBarItem> | ||||||
|  |             <Separator Grid.Column="5"/> | ||||||
|  |             <StatusBarItem Grid.Column="6"> | ||||||
|  |                 <TextBlock Name="StatusDeliveriesLastSeason" Text="Lieferungen (letzte Saison): -"/> | ||||||
|  |             </StatusBarItem> | ||||||
|  |             <Separator Grid.Column="7"/> | ||||||
|  |             <StatusBarItem Grid.Column="8"> | ||||||
|  |                 <TextBlock Name="StatusDeliveriesThisSeason" Text="Lieferungen (aktuelle Saison): -"/> | ||||||
|  |             </StatusBarItem> | ||||||
|  |         </StatusBar> | ||||||
|     </Grid> |     </Grid> | ||||||
| </local:AdministrationWindow> | </local:AdministrationWindow> | ||||||
|   | |||||||
| @@ -140,6 +140,8 @@ namespace Elwig.Windows { | |||||||
|             ControlUtils.RenewItemsSource(BranchInput, await Context.Branches.OrderBy(b => b.Name).ToListAsync(), i => (i as Branch)?.ZwstId); |             ControlUtils.RenewItemsSource(BranchInput, await Context.Branches.OrderBy(b => b.Name).ToListAsync(), i => (i as Branch)?.ZwstId); | ||||||
|             ControlUtils.RenewItemsSource(DefaultKgInput, await Context.WbKgs.Select(k => k.AtKg).OrderBy(k => k.Name).ToListAsync(), i => (i as AT_Kg)?.KgNr); |             ControlUtils.RenewItemsSource(DefaultKgInput, await Context.WbKgs.Select(k => k.AtKg).OrderBy(k => k.Name).ToListAsync(), i => (i as AT_Kg)?.KgNr); | ||||||
|             await RefreshMemberList(); |             await RefreshMemberList(); | ||||||
|  |             StatusMembers.Text = $"Mitglieder: {await Context.Members.CountAsync(m => m.IsActive):N0} ({await Context.Members.CountAsync():N0})"; | ||||||
|  |             StatusBusinessShares.Text = $"Geschäftsanteile: {await Context.Members.Where(m => m.IsActive).SumAsync(m => m.BusinessShares):N0} ({await Context.Members.SumAsync(m => m.BusinessShares):N0})"; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         private void SetPhoneNrInput(int nr, string? type, string? number, string? comment) { |         private void SetPhoneNrInput(int nr, string? type, string? number, string? comment) { | ||||||
| @@ -270,50 +272,71 @@ namespace Elwig.Windows { | |||||||
|         } |         } | ||||||
|  |  | ||||||
|         private void Menu_Member_SendEmail_Click(object sender, RoutedEventArgs evt) { |         private void Menu_Member_SendEmail_Click(object sender, RoutedEventArgs evt) { | ||||||
|             Utils.MailTo(((Member)MemberList.SelectedItem).EmailAddresses.Select(a => a.Address)); |             if (MemberList.SelectedItem is not Member m) | ||||||
|  |                 return; | ||||||
|  |             Utils.MailTo(m.EmailAddresses.Select(a => a.Address)); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private async void Menu_Print_Letterhead_Click(object sender, RoutedEventArgs evt) { | ||||||
|  |             if (MemberList.SelectedItem is not Member m) | ||||||
|  |                 return; | ||||||
|  |             Mouse.OverrideCursor = Cursors.AppStarting; | ||||||
|  |             using var doc = new Letterhead(m); | ||||||
|  |             await doc.Generate(); | ||||||
|  |             Mouse.OverrideCursor = null; | ||||||
|  |             if (App.Config.Debug) { | ||||||
|  |                 doc.Show(); | ||||||
|  |             } else { | ||||||
|  |                 await doc.Print(); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private async Task PrintLetterheads(int ordering) { | ||||||
|  |             var n = await Context.Members.CountAsync(m => m.IsActive); | ||||||
|  |             var res = MessageBox.Show( | ||||||
|  |                 $"Sollen wirklich {n} Seiten gedruckt werden?", "Ausdruck Bestätigen", | ||||||
|  |                 MessageBoxButton.YesNo, MessageBoxImage.Warning, MessageBoxResult.No); | ||||||
|  |             if (res != MessageBoxResult.Yes) | ||||||
|  |                 return; | ||||||
|  |             Mouse.OverrideCursor = Cursors.AppStarting; | ||||||
|  |             var members = Context.Members.Where(m => m.IsActive && m.ContactViaPost); | ||||||
|  |             switch (ordering) { | ||||||
|  |                 case 0: members = members | ||||||
|  |                         .OrderBy(m => m.MgNr); | ||||||
|  |                     break; | ||||||
|  |                 case 1: members = members | ||||||
|  |                         .OrderBy(m => m.FamilyName) | ||||||
|  |                         .ThenBy(m => m.GivenName) | ||||||
|  |                         .ThenBy(m => m.MgNr); | ||||||
|  |                     break; | ||||||
|  |                 case 2: members = members | ||||||
|  |                         .OrderBy(m => m.PostalDest.AtPlz.Plz) | ||||||
|  |                         .ThenBy(m => m.PostalDest.AtPlz.Ort.Name) | ||||||
|  |                         .ThenBy(m => m.FamilyName) | ||||||
|  |                         .ThenBy(m => m.GivenName) | ||||||
|  |                         .ThenBy(m => m.MgNr); | ||||||
|  |                     break; | ||||||
|  |             } | ||||||
|  |             using var doc = Document.Merge((await members.ToListAsync()).Select(m => new Letterhead(m))); | ||||||
|  |             await doc.Generate(); | ||||||
|  |             Mouse.OverrideCursor = null; | ||||||
|  |             if (App.Config.Debug) { | ||||||
|  |                 doc.Show(); | ||||||
|  |             } else { | ||||||
|  |                 await doc.Print(); | ||||||
|  |             } | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         private async void Menu_Print_Letterheads_MgNr_Click(object sender, RoutedEventArgs evt) { |         private async void Menu_Print_Letterheads_MgNr_Click(object sender, RoutedEventArgs evt) { | ||||||
|             var n = await Context.Members.CountAsync(m => m.IsActive); |             await PrintLetterheads(0); | ||||||
|             var res = MessageBox.Show( |  | ||||||
|                 $"Sollen wirklich {n} Seiten gedruckt werden?", "Ausdruck Bestätigen", |  | ||||||
|                 MessageBoxButton.YesNo, MessageBoxImage.Warning, MessageBoxResult.No); |  | ||||||
|             if (res != MessageBoxResult.Yes) |  | ||||||
|                 return; |  | ||||||
|             Mouse.OverrideCursor = Cursors.AppStarting; |  | ||||||
|             using var doc = await Document.Merge(Context.Members |  | ||||||
|                 .Where(m => m.IsActive && m.ContactViaPost) |  | ||||||
|                 .OrderBy(m => m.MgNr) |  | ||||||
|                 .Select(m => new Letterhead(m))); |  | ||||||
|             await doc.Generate(); |  | ||||||
|             Mouse.OverrideCursor = null; |  | ||||||
|             if (App.Config.Debug) { |  | ||||||
|                 doc.Show(); |  | ||||||
|             } else { |  | ||||||
|                 await doc.Print(); |  | ||||||
|             } |  | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         private async void Menu_Print_Letterheads_Name_Click(object sender, RoutedEventArgs evt) { |         private async void Menu_Print_Letterheads_Name_Click(object sender, RoutedEventArgs evt) { | ||||||
|             var n = await Context.Members.CountAsync(m => m.IsActive); |             await PrintLetterheads(1); | ||||||
|             var res = MessageBox.Show( |         } | ||||||
|                 $"Sollen wirklich {n} Seiten gedruckt werden?", "Ausdruck Bestätigen", |  | ||||||
|                 MessageBoxButton.YesNo, MessageBoxImage.Warning, MessageBoxResult.No); |         private async void Menu_Print_Letterheads_Plz_Click(object sender, RoutedEventArgs evt) { | ||||||
|             if (res != MessageBoxResult.Yes) |             await PrintLetterheads(2); | ||||||
|                 return; |  | ||||||
|             Mouse.OverrideCursor = Cursors.AppStarting; |  | ||||||
|             using var doc = await Document.Merge(Context.Members |  | ||||||
|                 .Where(m => m.IsActive && m.ContactViaPost) |  | ||||||
|                 .OrderBy(m => m.FamilyName) |  | ||||||
|                 .ThenBy(m => m.GivenName) |  | ||||||
|                 .Select(m => new Letterhead(m))); |  | ||||||
|             await doc.Generate(); |  | ||||||
|             Mouse.OverrideCursor = null; |  | ||||||
|             if (App.Config.Debug) { |  | ||||||
|                 doc.Show(); |  | ||||||
|             } else { |  | ||||||
|                 await doc.Print(); |  | ||||||
|             } |  | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         private void FocusSearchInput(object sender, RoutedEventArgs evt) { |         private void FocusSearchInput(object sender, RoutedEventArgs evt) { | ||||||
| @@ -592,16 +615,24 @@ namespace Elwig.Windows { | |||||||
|             ContactPostalInput.IsChecked = m.ContactViaPost; |             ContactPostalInput.IsChecked = m.ContactViaPost; | ||||||
|             ContactEmailInput.IsChecked = m.ContactViaEmail; |             ContactEmailInput.IsChecked = m.ContactViaEmail; | ||||||
|  |  | ||||||
|             AreaCommitment.Text = $"{m.ActiveAreaCommitments.Select(c => c.Area).Sum():N0} m²"; |             var d1 = Context.Deliveries.Where(d => d.Year == Utils.CurrentLastSeason && d.MgNr == m.MgNr); | ||||||
|  |             var d2 = Context.Deliveries.Where(d => d.Year == Utils.CurrentLastSeason - 1 && d.MgNr == m.MgNr); | ||||||
|  |             StatusDeliveriesLastSeason.Text = $"Lieferungen ({Utils.CurrentLastSeason - 1}): {d2.Count():N0} ({d2.Sum(d => d.Parts.Count):N0}), {d2.SelectMany(d => d.Parts).Sum(p => p.Weight):N0} kg"; | ||||||
|  |             StatusDeliveriesThisSeason.Text = $"Lieferungen ({Utils.CurrentLastSeason}): {d1.Count():N0} ({d1.Sum(d => d.Parts.Count):N0}), {d1.SelectMany(d => d.Parts).Sum(p => p.Weight):N0} kg"; | ||||||
|  |             StatusAreaCommitment.Text = $"Gebundene Fläche: {m.ActiveAreaCommitments.Select(c => c.Area).Sum():N0} m²"; | ||||||
|  |  | ||||||
|             Menu_Member_SendEmail.IsEnabled = m.EmailAddresses.Count > 0; |             Menu_Member_SendEmail.IsEnabled = m.EmailAddresses.Count > 0; | ||||||
|  |             Menu_Print_Letterhead.IsEnabled = true; | ||||||
|  |  | ||||||
|             FinishInputFilling(); |             FinishInputFilling(); | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         new protected void ClearInputs(bool validate = false) { |         new protected void ClearInputs(bool validate = false) { | ||||||
|             Menu_Member_SendEmail.IsEnabled = false; |             Menu_Member_SendEmail.IsEnabled = false; | ||||||
|             AreaCommitment.Text = "- m²"; |             Menu_Print_Letterhead.IsEnabled = false; | ||||||
|  |             StatusDeliveriesLastSeason.Text = $"Lieferungen ({Utils.CurrentLastSeason - 1}): -"; | ||||||
|  |             StatusDeliveriesThisSeason.Text = $"Lieferungen ({Utils.CurrentLastSeason}): -"; | ||||||
|  |             StatusAreaCommitment.Text = "Gebundene Fläche: -"; | ||||||
|             Age.Text = "-"; |             Age.Text = "-"; | ||||||
|             base.ClearInputs(validate); |             base.ClearInputs(validate); | ||||||
|         } |         } | ||||||
|   | |||||||
| @@ -44,7 +44,7 @@ namespace Elwig.Windows { | |||||||
|             for (int i = 0; i < header.Count; i++) { |             for (int i = 0; i < header.Count; i++) { | ||||||
|                 var h = header[i]; |                 var h = header[i]; | ||||||
|                 DataList.Columns.Add(new DataGridTextColumn { |                 DataList.Columns.Add(new DataGridTextColumn { | ||||||
|                     Header = h.ColumnName, |                     Header = h.ColumnName.Replace("_", "__"), | ||||||
|                     Binding = new Binding($"[{i}]"), |                     Binding = new Binding($"[{i}]"), | ||||||
|                     CellStyle = (h.DataTypeName == "INTEGER" || h.DataTypeName == "REAL") ? styleRight : null, |                     CellStyle = (h.DataTypeName == "INTEGER" || h.DataTypeName == "REAL") ? styleRight : null, | ||||||
|                 }); |                 }); | ||||||
|   | |||||||
							
								
								
									
										50
									
								
								Elwig/Windows/SeasonFinishWindow.xaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								Elwig/Windows/SeasonFinishWindow.xaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,50 @@ | |||||||
|  | <local:ContextWindow x:Class="Elwig.Windows.SeasonFinishWindow" | ||||||
|  |         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||||||
|  |         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||||||
|  |         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||||||
|  |         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||||||
|  |         xmlns:local="clr-namespace:Elwig.Windows" | ||||||
|  |         xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" | ||||||
|  |         mc:Ignorable="d" | ||||||
|  |         Loaded="Window_Loaded" | ||||||
|  |         Title="Leseabschluss - Elwig" Height="450" Width="800"> | ||||||
|  |     <Window.Resources> | ||||||
|  |         <Style TargetType="Button"> | ||||||
|  |             <Setter Property="VerticalAlignment" Value="Top"/> | ||||||
|  |             <Setter Property="HorizontalAlignment" Value="Left"/> | ||||||
|  |             <Setter Property="FontSize" Value="14"/> | ||||||
|  |             <Setter Property="Padding" Value="9,3"/> | ||||||
|  |             <Setter Property="Height" Value="32"/> | ||||||
|  |             <Setter Property="Width" Value="200"/> | ||||||
|  |         </Style> | ||||||
|  |     </Window.Resources> | ||||||
|  |     <Grid> | ||||||
|  |         <Label Content="Saison:" Margin="50,40,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Padding="2,4,2,4" Height="25"/> | ||||||
|  |         <xctk:IntegerUpDown Name="SeasonInput" Height="25" Width="56" FontSize="14" Minimum="1000" Maximum="9999" | ||||||
|  |                             Margin="110,40,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" | ||||||
|  |                             ValueChanged="SeasonInput_ValueChanged"/> | ||||||
|  |  | ||||||
|  |         <Button x:Name="CalculateBinsButton" Content="Aufteilung Berechnen" | ||||||
|  |                 Click="CalculateBinsButton_Click" | ||||||
|  |                 Margin="50,80,0,0"/> | ||||||
|  |         <CheckBox x:Name="AllowAttrIntoLowerBinsInput" Content="Erlauben Lieferungen auch auf (konfigurierte) "schlechtere" Flächenbindungen aufzuteilen" | ||||||
|  |                   VerticalAlignment="Top" HorizontalAlignment="Left" Margin="255,68,0,0"/> | ||||||
|  |         <CheckBox x:Name="AvoidUnderDeliveriesInput" Content="Unterlieferungen durch Abzug bei "besseren" Flächenbindungen vermeiden" | ||||||
|  |                   VerticalAlignment="Top" HorizontalAlignment="Left" Margin="255,88,0,0"/> | ||||||
|  |         <CheckBox x:Name="HonorGebundenInput" Margin="255,108,0,0" VerticalAlignment="Top"> | ||||||
|  |             <TextBlock>Bei Lieferungen das Feld <Italic>Gebunden</Italic> berücksichtigen</TextBlock> | ||||||
|  |         </CheckBox> | ||||||
|  |  | ||||||
|  |         <Button x:Name="DeliveryConfirmationButton" Content="Anlieferungsbestätigungen" | ||||||
|  |                 Click="DeliveryConfirmationButton_Click" | ||||||
|  |                 Margin="50,122,0,0"/> | ||||||
|  |  | ||||||
|  |         <Button x:Name="OverUnderDeliveryButton" Content="Über-/Unterlieferungen" | ||||||
|  |                 Click="OverUnderDeliveryButton_Click" | ||||||
|  |                 Margin="50,164,0,0"/> | ||||||
|  |  | ||||||
|  |         <Button x:Name="PaymentButton" Content="Auszahlung" | ||||||
|  |                 Click="PaymentButton_Click" | ||||||
|  |                 Margin="50,206,0,0"/> | ||||||
|  |     </Grid> | ||||||
|  | </local:ContextWindow> | ||||||
							
								
								
									
										155
									
								
								Elwig/Windows/SeasonFinishWindow.xaml.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										155
									
								
								Elwig/Windows/SeasonFinishWindow.xaml.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,155 @@ | |||||||
|  | using Elwig.Dialogs; | ||||||
|  | using Elwig.Helpers; | ||||||
|  | using Elwig.Helpers.Billing; | ||||||
|  | using Microsoft.Win32; | ||||||
|  | using System; | ||||||
|  | using System.IO; | ||||||
|  | using System.Text; | ||||||
|  | using System.Threading.Tasks; | ||||||
|  | using System.Windows; | ||||||
|  | using System.Windows.Input; | ||||||
|  |  | ||||||
|  | namespace Elwig.Windows { | ||||||
|  |     public partial class SeasonFinishWindow : ContextWindow { | ||||||
|  |         public SeasonFinishWindow() { | ||||||
|  |             InitializeComponent(); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private void Window_Loaded(object sender, RoutedEventArgs evt) { | ||||||
|  |             SeasonInput.Value = Utils.CurrentLastSeason; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         protected override async Task OnRenewContext() { | ||||||
|  |             SeasonInput_ValueChanged(null, null); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private async void SeasonInput_ValueChanged(object? sender, RoutedEventArgs? evt) { | ||||||
|  |             var s0 = await Context.Seasons.FindAsync(SeasonInput.Value); | ||||||
|  |             var s1 = await Context.Seasons.FindAsync(SeasonInput.Value + 1); | ||||||
|  |             var valid = (s0 != null); | ||||||
|  |             var last = (s1 == null); | ||||||
|  |             CalculateBinsButton.IsEnabled = valid && last; | ||||||
|  |             DeliveryConfirmationButton.IsEnabled = valid; | ||||||
|  |             OverUnderDeliveryButton.IsEnabled = valid; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private async void CalculateBinsButton_Click(object sender, RoutedEventArgs evt) { | ||||||
|  |             if (SeasonInput.Value is not int year) | ||||||
|  |                 return; | ||||||
|  |             CalculateBinsButton.IsEnabled = false; | ||||||
|  |             Mouse.OverrideCursor = Cursors.AppStarting; | ||||||
|  |             var b = new Billing(year); | ||||||
|  |             await b.FinishSeason(); | ||||||
|  |             await b.CalculateBins( | ||||||
|  |                 AllowAttrIntoLowerBinsInput.IsChecked ?? false, | ||||||
|  |                 AvoidUnderDeliveriesInput.IsChecked ?? false, | ||||||
|  |                 HonorGebundenInput.IsChecked ?? false); | ||||||
|  |             Mouse.OverrideCursor = null; | ||||||
|  |             CalculateBinsButton.IsEnabled = true; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private void DeliveryConfirmationButton_Click(object sender, RoutedEventArgs evt) { | ||||||
|  |             if (SeasonInput.Value is not int year) | ||||||
|  |                 return; | ||||||
|  |             var w = new DeliveryConfirmationsWindow(year); | ||||||
|  |             w.Show(); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private async void OverUnderDeliveryButton_Click(object sender, RoutedEventArgs evt) { | ||||||
|  |             if (SeasonInput.Value is not int year) | ||||||
|  |                 return; | ||||||
|  |             var d = new SaveFileDialog() { | ||||||
|  |                 FileName = $"Über-Unterlieferungen-{year}.csv", | ||||||
|  |                 DefaultExt = "csv", | ||||||
|  |                 Filter = "CSV-Datei (*.csv)|*.csv", | ||||||
|  |                 Title = $"Über-/Unterlieferungen {year} speichern unter - Elwig" | ||||||
|  |             }; | ||||||
|  |             if (d.ShowDialog() == false) | ||||||
|  |                 return; | ||||||
|  |  | ||||||
|  |             Mouse.OverrideCursor = Cursors.AppStarting; | ||||||
|  |  | ||||||
|  |             try { | ||||||
|  |                 using var file = new StreamWriter(d.FileName, false, Encoding.Latin1); | ||||||
|  |                 using var cnx = await AppDbContext.ConnectAsync(); | ||||||
|  |                 await file.WriteLineAsync($"Auswertungen {year};;;;;;;;;;;"); | ||||||
|  |  | ||||||
|  |                 await file.WriteLineAsync($";;;;;;;;;;;"); | ||||||
|  |                 await file.WriteLineAsync($"Über-/Unterlieferungen lt. gez. GA;;;;;;;;;;;"); | ||||||
|  |                 await file.WriteLineAsync($"MgNr;Name;Vorname;Adresse;PLZ;Ort;GA;Lieferpflicht;Lieferrecht;Geliefert;Über-/Unterliefert;Prozent"); | ||||||
|  |                 using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                     cmd.CommandText = $""" | ||||||
|  |                     SELECT m.mgnr, m.family_name, m.given_name, p.plz, o.name, m.address, m.business_shares, | ||||||
|  |                            m.business_shares * (SELECT value FROM client_parameter WHERE param = 'DELIVERY_OBLIGATION') AS min_kg, | ||||||
|  |                            m.business_shares * (SELECT value FROM client_parameter WHERE param = 'DELIVERY_RIGHT') AS max_kg, | ||||||
|  |                            COALESCE(SUM(d.weight), 0) AS sum | ||||||
|  |                     FROM member m | ||||||
|  |                         LEFT JOIN AT_plz_dest p ON p.id = m.postal_dest | ||||||
|  |                         LEFT JOIN AT_ort o ON o.okz = p.okz | ||||||
|  |                         LEFT JOIN v_delivery d ON d.mgnr = m.mgnr AND d.year = {year} | ||||||
|  |                     WHERE m.active = 1 | ||||||
|  |                     GROUP BY d.year, m.mgnr | ||||||
|  |                     ORDER BY sum = 0 DESC, 100.0 * sum / max_kg, m.mgnr; | ||||||
|  |                     """; | ||||||
|  |                     using var reader = await cmd.ExecuteReaderAsync(); | ||||||
|  |                     while (await reader.ReadAsync()) { | ||||||
|  |                         var mgnr = reader.GetInt32(0); | ||||||
|  |                         var familyName = reader.GetString(1); | ||||||
|  |                         var givenName = reader.GetString(2); | ||||||
|  |                         var plz = reader.GetInt32(3); | ||||||
|  |                         var ort = reader.GetString(4); | ||||||
|  |                         var addr = reader.GetString(5); | ||||||
|  |                         var ga = reader.GetInt32(6); | ||||||
|  |                         var minKg = reader.GetInt32(7); | ||||||
|  |                         var maxKg = reader.GetInt32(8); | ||||||
|  |                         var sum = reader.GetInt32(9); | ||||||
|  |                         var s1 = sum < minKg ? $"{sum - minKg}" : sum > maxKg ? $"{sum - maxKg}" : ""; | ||||||
|  |                         var s2 = sum < minKg ? $"{sum * 100.0 / minKg - 100.0:0.0}" : sum > maxKg ? $"{sum * 100.0 / maxKg - 100:0.0}" : ""; | ||||||
|  |                         await file.WriteLineAsync($"{mgnr};{familyName};{givenName};{addr};{plz};{ort};{ga};{minKg};{maxKg};{sum};{s1};{s2}"); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 await file.WriteLineAsync($";;;;;;;;;;;"); | ||||||
|  |                 await file.WriteLineAsync($"Unterlieferungen lt. Flächenbindungen;;;;;;;;;;;"); | ||||||
|  |                 await file.WriteLineAsync($"MgNr;Name;Vorname;Adresse;PLZ;Ort;Vertrag;Lieferpflicht;Lieferrecht;Geliefert;Unterliefert;Prozent"); | ||||||
|  |                 using (var cmd = cnx.CreateCommand()) { | ||||||
|  |                     cmd.CommandText = $""" | ||||||
|  |                     SELECT m.mgnr, m.family_name, m.given_name, p.plz, o.name, m.address, | ||||||
|  |                            c.bucket, c.min_kg, c.max_kg, b.weight | ||||||
|  |                     FROM member m | ||||||
|  |                         LEFT JOIN AT_plz_dest p ON p.id = m.postal_dest | ||||||
|  |                         LEFT JOIN AT_ort o ON o.okz = p.okz | ||||||
|  |                         JOIN v_area_commitment_bucket c ON c.mgnr = m.mgnr AND c.year = {year} | ||||||
|  |                         LEFT JOIN v_payment_bucket b ON (b.mgnr, b.bucket) = (m.mgnr, c.bucket) AND b.year = {year} | ||||||
|  |                     WHERE m.active = 1 AND b.weight < c.min_kg | ||||||
|  |                     ORDER BY m.mgnr, c.bucket | ||||||
|  |                     """; | ||||||
|  |                     using var reader = await cmd.ExecuteReaderAsync(); | ||||||
|  |                     while (await reader.ReadAsync()) { | ||||||
|  |                         var mgnr = reader.GetInt32(0); | ||||||
|  |                         var familyName = reader.GetString(1); | ||||||
|  |                         var givenName = reader.GetString(2); | ||||||
|  |                         var plz = reader.GetInt32(3); | ||||||
|  |                         var ort = reader.GetString(4); | ||||||
|  |                         var addr = reader.GetString(5); | ||||||
|  |                         var id = reader.GetString(6); | ||||||
|  |                         var minKg = reader.GetInt32(7); | ||||||
|  |                         var maxKg = reader.GetInt32(8); | ||||||
|  |                         var sum = reader.GetInt32(9); | ||||||
|  |                         await file.WriteLineAsync($"{mgnr};{familyName};{givenName};{addr};{plz};{ort};{id};{minKg};{maxKg};{sum};{sum - minKg};{sum * 100.0 / minKg - 100.0:0.0}"); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |             } catch (Exception exc) { | ||||||
|  |                 MessageBox.Show(exc.Message, "Fehler", MessageBoxButton.OK, MessageBoxImage.Error); | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             Mouse.OverrideCursor = null; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         private void PaymentButton_Click(object sender, RoutedEventArgs evt) { | ||||||
|  |             var w = new ChartWindow(); | ||||||
|  |             w.Show(); | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | } | ||||||
| @@ -1,5 +1,6 @@ | |||||||
| using Elwig.Documents; | using Elwig.Documents; | ||||||
| using Elwig.Helpers; | using Elwig.Helpers; | ||||||
|  | using Elwig.Helpers.Billing; | ||||||
| using Microsoft.EntityFrameworkCore; | using Microsoft.EntityFrameworkCore; | ||||||
| using System; | using System; | ||||||
| using System.Linq; | using System.Linq; | ||||||
|   | |||||||
| @@ -3,3 +3,4 @@ | |||||||
| mkdir "C:\ProgramData\Elwig\resources" | mkdir "C:\ProgramData\Elwig\resources" | ||||||
| copy /b /y Documents\*.css "C:\ProgramData\Elwig\resources" | copy /b /y Documents\*.css "C:\ProgramData\Elwig\resources" | ||||||
| copy /b /y Documents\*.cshtml "C:\ProgramData\Elwig\resources" | copy /b /y Documents\*.cshtml "C:\ProgramData\Elwig\resources" | ||||||
|  | ::copy /b /y ..\Installer\Files\*.exe "C:\Program Files\Elwig\" | ||||||
|   | |||||||
							
								
								
									
										
											BIN
										
									
								
								Installer/Files/WinziPrint.exe
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Installer/Files/WinziPrint.exe
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| @@ -7,9 +7,12 @@ | |||||||
|       <Component Directory="ConfigFolder" Permanent="true" NeverOverwrite="true"> |       <Component Directory="ConfigFolder" Permanent="true" NeverOverwrite="true"> | ||||||
|         <File Source="$(ProjectDir)\Files\config.ini" Id="config.ini"/> |         <File Source="$(ProjectDir)\Files\config.ini" Id="config.ini"/> | ||||||
|       </Component> |       </Component> | ||||||
| 	  <Component Directory="InstallFolder"> |       <Component Directory="InstallFolder"> | ||||||
| 	    <File Source="$(TargetDir)\PDFtoPrinter.exe" Id="PDFtoPrinter.exe"/> |         <File Source="$(ProjectDir)\Files\WinziPrint.exe" Id="WinziPrint.exe"/> | ||||||
| 	  </Component> |       </Component> | ||||||
|  |       <Component Directory="InstallFolder"> | ||||||
|  |         <File Source="$(TargetDir)\PDFtoPrinter.exe" Id="PDFtoPrinter.exe"/> | ||||||
|  |       </Component> | ||||||
|     </ComponentGroup> |     </ComponentGroup> | ||||||
|   </Fragment> |   </Fragment> | ||||||
| </Wix> | </Wix> | ||||||
|   | |||||||
| @@ -3,7 +3,7 @@ | |||||||
|     <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" AllowSameVersionUpgrades="no" /> |     <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" AllowSameVersionUpgrades="no" /> | ||||||
| 	<MediaTemplate EmbedCab="true" MaximumUncompressedMediaSize="10"/> | 	<MediaTemplate EmbedCab="true" MaximumUncompressedMediaSize="10"/> | ||||||
|  |  | ||||||
| 	<Icon Id="icon.ico" SourceFile="$(var.ElwigProjectDir)\elwig.ico"/> | 	<Icon Id="icon.ico" SourceFile="$(var.ElwigProjectDir)\Resourcs\Images\Elwig.ico"/> | ||||||
| 	<Property Id="ARPPRODUCTICON" Value="icon.ico"/> | 	<Property Id="ARPPRODUCTICON" Value="icon.ico"/> | ||||||
|  |  | ||||||
| 	<Feature Id="Main"> | 	<Feature Id="Main"> | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> | ||||||
|   <Bundle Name="Elwig" Manufacturer="Elwig" Version="!(bind.packageVersion.ElwigMsi)" UpgradeCode="f3c8fcab-c37c-43aa-9ab8-e42f4bb518b7" IconSourceFile="$(var.ElwigProjectDir)\elwig.ico" > |   <Bundle Name="Elwig" Manufacturer="Elwig" Version="!(bind.packageVersion.ElwigMsi)" UpgradeCode="f3c8fcab-c37c-43aa-9ab8-e42f4bb518b7" IconSourceFile="$(var.ElwigProjectDir)\Resources\Images\Elwig.ico" > | ||||||
| 	<BootstrapperApplication> | 	<BootstrapperApplication> | ||||||
|       <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLicense" LogoFile="$(var.ElwigProjectDir)\elwig.png" SuppressOptionsUI="yes" ShowVersion="yes" />    |       <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLicense" LogoFile="$(var.ElwigProjectDir)\elwig.png" SuppressOptionsUI="yes" ShowVersion="yes" />    | ||||||
| 	</BootstrapperApplication> | 	</BootstrapperApplication> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user