|
@@ -15,6 +15,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
@@ -296,7 +297,11 @@ public class CustomerInterLowerServiceImpl implements CustomerInterLowerService
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
- if (null != customerRec1 && customerRec1.getContractSuc() == 1){
|
|
|
+ if (null != customerRec1
|
|
|
+ && StringUtils.isNotBlank(customerRec1.getServiceEndTime())
|
|
|
+ //如果协议到期时间超过60天,协议上传成功不允许重新上传协议
|
|
|
+ && DateUtil.daysBetween(customerRec1.getServiceEndTime(),new Date()) > 60
|
|
|
+ && customerRec1.getContractSuc() == 1){
|
|
|
result.setMsg("协议已上传成功,审批中,请勿重复上传协议!");
|
|
|
return result;
|
|
|
}
|