package com.java110.community.cmd.ownerRepair;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.core.annotation.Java110Cmd;
|
import com.java110.core.context.ICmdDataFlowContext;
|
import com.java110.core.event.cmd.Cmd;
|
import com.java110.core.event.cmd.CmdEvent;
|
import com.java110.core.factory.GenerateCodeFactory;
|
import com.java110.dto.repair.RepairDto;
|
import com.java110.intf.community.IRepairInnerServiceSMO;
|
import com.java110.intf.community.IRepairPoolV1InnerServiceSMO;
|
import com.java110.intf.community.IRepairUserV1InnerServiceSMO;
|
import com.java110.po.owner.RepairPoolPo;
|
import com.java110.po.owner.RepairUserPo;
|
import com.java110.utils.constant.StateConstant;
|
import com.java110.utils.exception.CmdException;
|
import com.java110.utils.util.Assert;
|
import com.java110.utils.util.BeanConvertUtil;
|
import com.java110.utils.util.DateUtil;
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import java.text.ParseException;
|
import java.util.List;
|
|
@Java110Cmd(serviceCode = "ownerRepair.repairDispatchStep")
|
public class RepairDispatchStepCmd extends Cmd {
|
|
|
@Autowired
|
private IRepairInnerServiceSMO repairInnerServiceSMOImpl;
|
|
@Autowired
|
private IRepairUserV1InnerServiceSMO repairUserV1InnerServiceSMOImpl;
|
|
|
@Autowired
|
private IRepairPoolV1InnerServiceSMO repairPoolV1InnerServiceSMOImpl;
|
|
@Override
|
public void validate(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException {
|
|
Assert.hasKeyAndValue(reqJson, "userId", "未包含员工信息");
|
Assert.hasKeyAndValue(reqJson, "repairId", "未包含报修单信息");
|
Assert.hasKeyAndValue(reqJson, "communityId", "未包含小区信息");
|
}
|
|
@Override
|
public void doCmd(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException, ParseException {
|
addBusinessRepairUser(reqJson);
|
|
modifyBusinessRepairDispatch(reqJson, RepairDto.STATE_TAKING);
|
}
|
|
public void addBusinessRepairUser(JSONObject paramInJson) {
|
|
JSONObject businessObj = new JSONObject();
|
businessObj.putAll(paramInJson);
|
businessObj.put("state", StateConstant.STAFF_NO_FINISH_ORDER);
|
businessObj.put("ruId", GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_ruId));
|
RepairUserPo repairUserPo = BeanConvertUtil.covertBean(businessObj, RepairUserPo.class);
|
repairUserPo.setStartTime(DateUtil.getNow(DateUtil.DATE_FORMATE_STRING_A));
|
int flag = repairUserV1InnerServiceSMOImpl.saveRepairUserNew(repairUserPo);
|
|
if (flag < 1) {
|
throw new CmdException("保存失败");
|
}
|
}
|
|
public void modifyBusinessRepairDispatch(JSONObject paramInJson, String state) {
|
//查询报修单
|
RepairDto repairDto = new RepairDto();
|
repairDto.setRepairId(paramInJson.getString("repairId"));
|
List<RepairDto> repairDtos = repairInnerServiceSMOImpl.queryRepairs(repairDto);
|
Assert.isOne(repairDtos, "查询到多条数据,repairId=" + repairDto.getRepairId());
|
JSONObject businessOwnerRepair = new JSONObject();
|
businessOwnerRepair.putAll(BeanConvertUtil.beanCovertMap(repairDtos.get(0)));
|
businessOwnerRepair.put("state", state);
|
//计算 应收金额
|
RepairPoolPo repairPoolPo = BeanConvertUtil.covertBean(businessOwnerRepair, RepairPoolPo.class);
|
int flag = repairPoolV1InnerServiceSMOImpl.updateRepairPoolNew(repairPoolPo);
|
if (flag < 1) {
|
throw new CmdException("修改失败");
|
}
|
}
|
}
|