| | |
| | | import com.java110.core.annotation.Java110Cmd; |
| | | import com.java110.core.annotation.Java110Transactional; |
| | | import com.java110.core.context.ICmdDataFlowContext; |
| | | import com.java110.core.event.cmd.AbstractServiceCmdListener; |
| | | import com.java110.core.event.cmd.Cmd; |
| | | import com.java110.core.event.cmd.CmdEvent; |
| | | import com.java110.core.factory.GenerateCodeFactory; |
| | | import com.java110.dto.UnitDto; |
| | |
| | | import com.java110.utils.util.StringUtil; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Java110Cmd(serviceCode = "room.updateRoom") |
| | | public class UpdateRoomCmd extends AbstractServiceCmdListener { |
| | | public class UpdateRoomCmd extends Cmd { |
| | | |
| | | @Autowired |
| | | private IUnitV1InnerServiceSMO unitV1InnerServiceSMOImpl; |
| | |
| | | private IOwnerRoomRelInnerServiceSMO ownerRoomRelInnerServiceSMOImpl; |
| | | |
| | | @Override |
| | | public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws Exception { |
| | | public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException { |
| | | Assert.jsonObjectHaveKey(reqJson, "roomId", "请求报文中未包含roomId节点"); |
| | | Assert.jsonObjectHaveKey(reqJson, "communityId", "请求报文中未包含communityId节点"); |
| | | Assert.jsonObjectHaveKey(reqJson, "roomNum", "请求报文中未包含roomNum节点"); |
| | |
| | | String state = reqJson.getString("state"); |
| | | if (!StringUtil.isEmpty(state) && state.equals("2006")) { //已出租 |
| | | //获取起租时间 |
| | | Date startTime = DateUtil.getDateFromString(reqJson.getString("startTime"), DateUtil.DATE_FORMATE_STRING_B); |
| | | Date startTime = null; |
| | | Date endTime = null; |
| | | |
| | | try { |
| | | startTime = DateUtil.getDateFromString(reqJson.getString("startTime"), DateUtil.DATE_FORMATE_STRING_B); |
| | | endTime = DateUtil.getDateFromString(reqJson.getString("endTime"), DateUtil.DATE_FORMATE_STRING_B); |
| | | |
| | | } catch (Exception e) { |
| | | throw new CmdException(e.getMessage()); |
| | | } |
| | | //获取截租时间 |
| | | Date endTime = DateUtil.getDateFromString(reqJson.getString("endTime"), DateUtil.DATE_FORMATE_STRING_B); |
| | | |
| | | |
| | | if (startTime.getTime() > endTime.getTime()) { |
| | | throw new IllegalArgumentException("起租时间不能大于截租时间!"); |
| | |
| | | JSONObject businessUnit = new JSONObject(); |
| | | businessUnit.putAll(paramInJson); |
| | | RoomPo roomPo = BeanConvertUtil.covertBean(businessUnit, RoomPo.class); |
| | | if (paramInJson.containsKey("apartment1") && paramInJson.getString("apartment1").equals("10")) { |
| | | roomPo.setSection("1"); |
| | | } else if (paramInJson.containsKey("apartment1") && paramInJson.getString("apartment1").equals("20")) { |
| | | roomPo.setSection("2"); |
| | | } else if (paramInJson.containsKey("apartment1") && paramInJson.getString("apartment1").equals("30")) { |
| | | roomPo.setSection("3"); |
| | | } else if (paramInJson.containsKey("apartment1") && paramInJson.getString("apartment1").equals("40")) { |
| | | roomPo.setSection("4"); |
| | | } else if (paramInJson.containsKey("apartment1") && paramInJson.getString("apartment1").equals("50")) { |
| | | roomPo.setSection("5"); |
| | | } else if (paramInJson.containsKey("apartment1") && paramInJson.getString("apartment1").equals("60")) { |
| | | roomPo.setSection("6"); |
| | | } else if (paramInJson.containsKey("apartment1") && paramInJson.getString("apartment1").equals("70")) { |
| | | roomPo.setSection("7"); |
| | | } else if (paramInJson.containsKey("apartment1") && paramInJson.getString("apartment1").equals("80")) { |
| | | roomPo.setSection("8"); |
| | | } |
| | | int flag = roomV1InnerServiceSMOImpl.updateRoom(roomPo); |
| | | if (flag < 1) { |
| | | throw new CmdException("修改房屋失败"); |