|
|
@@ -95,9 +95,9 @@ public class TripSyncBillUtils {
|
|
|
//城市分类名称
|
|
|
dHotelTravelStandards.put("cityClassifyName", tripAreaName);
|
|
|
//淡季差标金额
|
|
|
- dHotelTravelStandards.put("lowSeasonPrice", ObjectUtils.isEmpty(standardAmount) ? BigDecimal.ZERO : standardAmount);
|
|
|
+ dHotelTravelStandards.put("lowSeasonPrice", ObjectUtils.isEmpty(standardAmount) ? BigDecimal.ZERO : standardAmount.setScale(2));
|
|
|
//旺季差标金额
|
|
|
- dHotelTravelStandards.put("busySeasonPrice", ObjectUtils.isEmpty(highSeasonStandardAmount) ? BigDecimal.ZERO : highSeasonStandardAmount);
|
|
|
+ dHotelTravelStandards.put("busySeasonPrice", ObjectUtils.isEmpty(highSeasonStandardAmount) ? BigDecimal.ZERO : highSeasonStandardAmount.setScale(2));
|
|
|
//旺季月份 多个月份逗号隔开(例:1,2,3,4,5,6,7,8)
|
|
|
dHotelTravelStandards.put("busySeasonMonths", processMonthRanges(dateEntry));
|
|
|
|