Browse Source

批次DataToVo设置值 fixedbug

qh 2 years ago
parent
commit
c25470f7bd

+ 15 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/business/service/impl/BusRoomBookingOrdersServiceImpl.java

@@ -574,6 +574,21 @@ public class BusRoomBookingOrdersServiceImpl extends ServiceImpl<BusRoomBookingO
         batch.setArrivalTime(data.getArrivalTime());
         batch.setDueOutTime(data.getDueOutTime());
         batch.setDayCount(data.getDayCount());
+        batch.setBreakfastNum(data.getBreakfastNum());
+        batch.setLunchNum(data.getLunchNum());
+        batch.setDinnerNum(data.getDinnerNum());
+        batch.setCustomerType(data.getCustomerType());
+        batch.setVipCustomerId(data.getVipCustomerId());
+        batch.setContractTeamId(data.getContractTeamId());
+        batch.setContractTeamProtocolId(data.getContractTeamProtocolId());
+        batch.setRoomPriceSlnId(data.getRoomPriceSlnId());
+        batch.setAgencyName(data.getAgencyName());
+        batch.setContactId(data.getContactId());
+        batch.setWarrantType(data.getWarrantType());
+        batch.setWarranter(data.getWarranter());
+        batch.setOuterOrdersNo(data.getOuterOrdersNo());
+        batch.setRemark(data.getRemark());
+        batch.setHourRoomId(data.getHourRoomId());
         return batch;
     }