浏览代码

协议上传接口优化-2 20220516

mashengyi 2 年之前
父节点
当前提交
242a059230

+ 6 - 1
src/main/java/com/jkcredit/invoice/credit/interserver/CustomerInterLowerServiceImpl.java

@@ -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;
             }