-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Обед
- |
-
- Цена
- |
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@section Scripts
diff --git a/Hotel/HotelBusinessLogic/OfficePackage/AbstractSaveToPdfHeadwaiter.cs b/Hotel/HotelBusinessLogic/OfficePackage/AbstractSaveToPdfHeadwaiter.cs
index de48720..f2393ed 100644
--- a/Hotel/HotelBusinessLogic/OfficePackage/AbstractSaveToPdfHeadwaiter.cs
+++ b/Hotel/HotelBusinessLogic/OfficePackage/AbstractSaveToPdfHeadwaiter.cs
@@ -34,9 +34,15 @@ namespace HotelBusinessLogic.OfficePackage
});
foreach (var dinner in info.Dinners)
{
+
+ bool IsCost = true;
+ if (dinner.RoomPrice.ToString() == "0")
+ {
+ IsCost = false;
+ }
CreateRow(new PdfRowParameters
{
- Texts = new List
{ dinner.DinnerName.ToString(), dinner.RoomName, dinner.RoomPrice.ToString(), dinner.NameHall, dinner.BookingDate?.ToShortDateString() ?? string.Empty },
+ Texts = new List { dinner.DinnerName.ToString(), dinner.RoomName, IsCost is true ? dinner.RoomPrice.ToString() : string.Empty, dinner.NameHall, dinner.BookingDate?.ToShortDateString() ?? string.Empty },
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Left
});