转让招商经理逻辑修改
This commit is contained in:
@@ -387,6 +387,7 @@
|
|||||||
hpci.qualify_verify_id as qualifyVerifyId,
|
hpci.qualify_verify_id as qualifyVerifyId,
|
||||||
hpci.intention_contract_no as intentionContractNo,
|
hpci.intention_contract_no as intentionContractNo,
|
||||||
hpll.workflow_stage as workflowStage,
|
hpll.workflow_stage as workflowStage,
|
||||||
|
hpll.line_status as lineStatus,
|
||||||
hpi.pass_time as passTime,
|
hpi.pass_time as passTime,
|
||||||
hpi.pass_reason as passReason,
|
hpi.pass_reason as passReason,
|
||||||
hpi.recorder as recorderId,
|
hpi.recorder as recorderId,
|
||||||
|
|||||||
@@ -25,9 +25,12 @@ public class InterviewVO {
|
|||||||
@ApiModelProperty(value = "线索id", required = true)
|
@ApiModelProperty(value = "线索id", required = true)
|
||||||
private Long partnerLineId;
|
private Long partnerLineId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "线索状态")
|
@ApiModelProperty(value = "流程阶段")
|
||||||
private Long workflowStage;
|
private Long workflowStage;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "线索状态")
|
||||||
|
private Long lineStatus;
|
||||||
|
|
||||||
@ApiModelProperty("资质审核流程id")
|
@ApiModelProperty("资质审核流程id")
|
||||||
private String qualifyVerifyId;
|
private String qualifyVerifyId;
|
||||||
|
|
||||||
|
|||||||
@@ -109,7 +109,7 @@ public class InterviewWorkFlowService extends WorkFlowBaseService {
|
|||||||
}
|
}
|
||||||
Integer status = interviewInfo.getStatus();
|
Integer status = interviewInfo.getStatus();
|
||||||
Date now = new Date();
|
Date now = new Date();
|
||||||
if (status == Integer.parseInt(WorkflowStatusEnum.INTERVIEW_2.getCode()) ||
|
if (status == Integer.parseInt(WorkflowStatusEnum.INTERVIEW_3.getCode()) ||
|
||||||
(interviewInfo.getRoomStatus()!=null && String.valueOf(RoomStatus.OPEN.getCode()).equals(interviewInfo.getRoomStatus())) ||
|
(interviewInfo.getRoomStatus()!=null && String.valueOf(RoomStatus.OPEN.getCode()).equals(interviewInfo.getRoomStatus())) ||
|
||||||
(DateUtil.compare(DateUtil.parse(interviewInfo.getStartTime()), now) <= 0
|
(DateUtil.compare(DateUtil.parse(interviewInfo.getStartTime()), now) <= 0
|
||||||
&& DateUtil.compare(DateUtil.parse(interviewInfo.getEndTime()), now) >= 0)) {
|
&& DateUtil.compare(DateUtil.parse(interviewInfo.getEndTime()), now) >= 0)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user