diff --git a/ConfectionaryBusinessLogic/ShopLogic.cs b/ConfectionaryBusinessLogic/ShopLogic.cs index 5956da2..bf255f6 100644 --- a/ConfectionaryBusinessLogic/ShopLogic.cs +++ b/ConfectionaryBusinessLogic/ShopLogic.cs @@ -181,16 +181,25 @@ namespace ConfectioneryBusinessLogic public bool AddPastriesInShops(IPastryModel pastry, int count) { + if (count <= 0) + { + _logger.LogWarning("AddPastriesInShops. Количество добавляемых изделий должно быть больше 0. Количество - {count}", count); + return false; + } var freePlaces = GetFreePlacesWithPastriesInShops(count); if (freePlaces < 0) { _logger.LogInformation("AddPastriesInShops. Не удалось добавить изделия в магазины, поскольку они переполнены." + - $"Освободите магазины на {-freePlaces} изделий"); + "Освободите магазины на {places} изделий", -freePlaces); return false; } foreach (var shop in _shopStorage.GetFullList()) { var cnt = Math.Min(count, shop.MaxCountPastries - shop.Pastries.Select(x => x.Value.Item2).Sum()); + if (cnt <= 0) + { + continue; + } if (!AddPastry(new() { Id = shop.Id }, pastry, cnt)) { _logger.LogWarning("При добавления изделий во все магазины произошла ошибка");