|
@@ -20,6 +20,7 @@ import com.jkcredit.invoice.service.nocar.NoCarBillWayImportService;
|
|
|
import com.jkcredit.invoice.util.DateUtil;
|
|
|
import com.jkcredit.invoice.util.RespR;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import net.sf.json.JSONArray;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -740,7 +741,12 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
try {
|
|
|
log.info("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
|
|
|
|
|
|
+ String param = paramService.getParamsByParamName("FIND_NO_SEARCH_NUM_ON_OFF").getParamValue();;
|
|
|
|
|
|
+ if(!StringUtils.equals("1",param)){
|
|
|
+ result.setMsg("获取未查询过发票的运单编号接口已关闭");
|
|
|
+ return result;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
List<NoCarWayBill> noCarWayBills = noCarWaybillMapper.getNoCarNoVoiceQuery(appKey);
|
|
@@ -768,7 +774,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
if(null != reduce1 && reduce1.size() > 0){
|
|
|
result.setData(1);
|
|
|
result.setCode(200);
|
|
|
- result.setMsg(reduce1.toString());
|
|
|
+ result.setMsg(JSONArray.fromObject(reduce1).toString());
|
|
|
return result;
|
|
|
} else {
|
|
|
result.setData(2);
|