Fixed utilization greater than 100 percent

This commit is contained in:
AJ
2021-11-15 09:10:20 -05:00
parent 029414099e
commit 90d770e10c
2 changed files with 12 additions and 1 deletions

View File

@@ -63,6 +63,8 @@ namespace CutList.Forms
foreach (var bin in Bins)
{
var idString = id++.ToString();
var binDescription = $"{idString}. {bin.ToString()}";
writer.WriteLine(id++.ToString() + ". " + bin.ToString());
var groups = bin.Items.GroupBy(i => $"{i.Name} {i.Length}");