LEIYI 3 months ago
parent
commit
703d077b8b
1 changed files with 4 additions and 4 deletions
  1. 4 4
      OASystem/OASystem.Api/Controllers/GroupsController.cs

+ 4 - 4
OASystem/OASystem.Api/Controllers/GroupsController.cs

@@ -2008,22 +2008,22 @@ FROM
 
                                 if (hotelReservations.SingleRoomPrice > 0)
                                 {
-                                    roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount} * {(int)hotel_days}<br/>";
+                                    roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>单间:{hotelReservations.SingleRoomPrice.ToString("#0.00")} * {hotelReservations.SingleRoomCount} * {(int)hotel_days}<br/>";
                                     __isSingle = true;
                                 }
                                 if (hotelReservations.DoubleRoomPrice > 0)
                                 {
-                                    roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount} * {(int)hotel_days}<br/>";
+                                    roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>双人间:{hotelReservations.DoubleRoomPrice.ToString("#0.00")} * {hotelReservations.DoubleRoomCount} * {(int)hotel_days}<br/>";
                                     __isDouble = true;
                                 }
                                 if (hotelReservations.SuiteRoomPrice > 0)
                                 {
-                                    roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount} * {(int)hotel_days}<br/>";
+                                    roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>套房:{hotelReservations.SuiteRoomPrice.ToString("#0.00")} * {hotelReservations.SuiteRoomCount} * {(int)hotel_days}<br/>";
                                     __isSuite = true;
                                 }
                                 if (hotelReservations.OtherRoomPrice > 0)
                                 {
-                                    roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount} * {(int)hotel_days}";
+                                    roomFeestr1 += $"<span style='width:70px;display: inline-block;'></span>其他:{hotelReservations.OtherRoomPrice.ToString("#0.00")} * {hotelReservations.OtherRoomCount} * {(int)hotel_days}晚)";
                                     __isOther = true;
                                 }