minor things

pull/1/head
Sascha 2023-06-26 14:59:40 +07:00
parent e6baf1756b
commit 526936d3a3
1 changed files with 1 additions and 1 deletions

@ -129,7 +129,7 @@ public class QuoteHandling {
private static decimal GetTotal(Quote quote, string type) {
decimal total = 0;
if (quote.LineItems is null || quote.LineItems.Count == 0) return total;
if (quote.LineItems.Count == 0) return total;
foreach (LineItem lineItem in quote.LineItems)
switch (type) {