|
|
@@ -11,12 +11,14 @@ import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
import org.jeecg.common.api.vo.Result;
|
|
|
+import org.jeecg.common.exception.JeecgBootException;
|
|
|
import org.jeecg.common.system.query.QueryGenerator;
|
|
|
import org.jeecg.common.util.oConvertUtils;
|
|
|
import org.jeecg.modules.business.dto.BatchOrderSavaDto;
|
|
|
import org.jeecg.modules.business.dto.BookingOrderSaveDto;
|
|
|
import org.jeecg.modules.business.entity.BusBookingBatch;
|
|
|
import org.jeecg.modules.business.entity.BusLivingCustomer;
|
|
|
+import org.jeecg.modules.business.entity.BusOrderFee;
|
|
|
import org.jeecg.modules.business.entity.BusRoomBookingOrders;
|
|
|
import org.jeecg.modules.business.service.IBusRoomBookingOrdersService;
|
|
|
|
|
|
@@ -274,6 +276,18 @@ public class BusRoomBookingOrdersController extends JeecgController<BusRoomBooki
|
|
|
return Result.OK("入住成功",service.customerLiving(param,isTeam));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取入住订单费用账单
|
|
|
+ * @param livingOrderId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @ApiOperation(value="酒店预定订单-获取入住订单费用账单", notes="酒店预定订单-获取入住订单费用账单")
|
|
|
+ @RequestMapping(value = "/living-fees",method = RequestMethod.GET)
|
|
|
+ public Result<List<BusOrderFee>> getLivingOrderFees(String livingOrderId) {
|
|
|
+ if(livingOrderId == null || livingOrderId.isEmpty()) throw new JeecgBootException("参数错误");
|
|
|
+ return Result.ok(service.getLivingOrderFee(livingOrderId));
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
|
|
|
}
|