|
@@ -59,15 +59,19 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
String plateNum = jsonObject.getString("plateNum");//车牌号 非必输
|
|
|
Integer plateColor = jsonObject.getInteger("plateColor");//车牌颜色 非必输
|
|
|
if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)){
|
|
|
+ result.setData(2);
|
|
|
+ result.setMsg("请输入必输项!");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
CustomerRec customerRec = new CustomerRec();
|
|
|
customerRec.setCustomerName(appKey);
|
|
|
customerRec.setCompanyNum(companyNum);
|
|
|
+ customerRec.setInterType(0);
|
|
|
CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
|
|
|
if (null == customerRec1){
|
|
|
- result.setMsg("该企业编号未注册企业!");
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -88,7 +92,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
result.setMsg(rs.getData().toString());
|
|
|
return result;
|
|
|
} else {
|
|
|
- result.setData(3);
|
|
|
+ result.setData(2);
|
|
|
result.setCode(200);
|
|
|
result.setMsg(rs.getMsg());
|
|
|
return result;
|
|
@@ -134,6 +138,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
|
|
|
|| null == vehicleList
|
|
|
){
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("必传参数有为空情况,请核实后再试");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -143,7 +149,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
|
|
|
|
|
|
if (null == customerRec1){
|
|
|
- result.setMsg("该企业编号未注册企业!");
|
|
|
+ result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -180,7 +186,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
result.setMsg(rs.getData().toString());
|
|
|
return result;
|
|
|
} else {
|
|
|
- result.setData(3);
|
|
|
+ result.setData(2);
|
|
|
result.setCode(200);
|
|
|
result.setMsg(rs.getMsg());
|
|
|
return result;
|
|
@@ -228,6 +234,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
|| null == cardIdList
|
|
|
|
|
|
){
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("必传参数有为空情况,请核实后再试");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -236,7 +244,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
customerRec.setCompanyNum(companyNum);
|
|
|
CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
|
|
|
if (null == customerRec1){
|
|
|
- result.setMsg("该企业编号未注册企业!");
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
|
|
|
return result;
|
|
|
}
|
|
|
EtcBindVo etcQueryVo = new EtcBindVo();
|
|
@@ -250,6 +259,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
|
|
|
if(null == jb || StringUtils.isEmpty(cardId)
|
|
|
){
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("用户卡为空!");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -270,7 +281,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
result.setMsg(rs.getData().toString());
|
|
|
return result;
|
|
|
} else {
|
|
|
- result.setData(3);
|
|
|
+ result.setData(2);
|
|
|
result.setCode(200);
|
|
|
result.setMsg(rs.getMsg());
|
|
|
return result;
|
|
@@ -315,6 +326,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
|| StringUtils.isEmpty(validCode)
|
|
|
|
|
|
){
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("必传参数有为空情况,请核实后再试");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -323,7 +336,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
customerRec.setCompanyNum(companyNum);
|
|
|
CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
|
|
|
if (null == customerRec1){
|
|
|
- result.setMsg("该企业编号未注册企业!");
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
|
|
|
return result;
|
|
|
}
|
|
|
EtcValidVo etcValidVo = new EtcValidVo();
|
|
@@ -344,7 +358,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
result.setMsg(rs.getData().toString());
|
|
|
return result;
|
|
|
} else {
|
|
|
- result.setData(3);
|
|
|
+ result.setData(2);
|
|
|
result.setCode(200);
|
|
|
result.setMsg(rs.getMsg());
|
|
|
return result;
|
|
@@ -394,6 +408,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
|| StringUtils.isEmpty(endExTime)
|
|
|
|
|
|
){
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("必传参数有为空情况,请核实后再试");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -402,7 +418,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
customerRec.setCompanyNum(companyNum);
|
|
|
CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
|
|
|
if (null == customerRec1){
|
|
|
- result.setMsg("该企业编号未注册企业!");
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
|
|
|
return result;
|
|
|
}
|
|
|
TradeRequestVo tradeRequestVo = new TradeRequestVo();
|
|
@@ -449,7 +466,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
result.setMsg(rs.getData().toString());
|
|
|
return result;
|
|
|
} else {
|
|
|
- result.setData(3);
|
|
|
+ result.setData(2);
|
|
|
result.setCode(200);
|
|
|
result.setMsg(rs.getMsg());
|
|
|
return result;
|
|
@@ -499,6 +516,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
|| StringUtils.isEmpty(endExTime)
|
|
|
|
|
|
){
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("必传参数有为空情况,请核实后再试");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -507,7 +526,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
customerRec.setCompanyNum(companyNum);
|
|
|
CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
|
|
|
if (null == customerRec1 ){
|
|
|
- result.setMsg("该企业编号未注册企业!");
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
|
|
|
return result;
|
|
|
}
|
|
|
InvoiceApplVo invoiceApplVo = new InvoiceApplVo();
|
|
@@ -540,7 +560,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
result.setMsg(rs.getData().toString());
|
|
|
return result;
|
|
|
} else {
|
|
|
- result.setData(3);
|
|
|
+ result.setData(2);
|
|
|
result.setCode(200);
|
|
|
result.setMsg(rs.getMsg());
|
|
|
return result;
|
|
@@ -587,6 +607,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
|| StringUtils.isEmpty(endInvoiceMakeTime)
|
|
|
|
|
|
){
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("必传参数有为空情况,请核实后再试");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -595,7 +617,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
customerRec.setCompanyNum(companyNum);
|
|
|
CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
|
|
|
if (null == customerRec1){
|
|
|
- result.setMsg("该企业编号未注册企业!");
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
|
|
|
return result;
|
|
|
}
|
|
|
SelfCarDueQueryVo selfCarDueQueryVo = new SelfCarDueQueryVo();
|
|
@@ -616,7 +639,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
result.setMsg(rs.getMsg());
|
|
|
return result;
|
|
|
} else {
|
|
|
- result.setData(3);
|
|
|
+ result.setData(2);
|
|
|
result.setCode(200);
|
|
|
result.setMsg(rs.getMsg());
|
|
|
return result;
|
|
@@ -660,6 +683,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
|| StringUtils.isEmpty(makeMonth)
|
|
|
|
|
|
){
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("必传参数有为空情况,请核实后再试");
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -668,7 +693,8 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
customerRec.setCompanyNum(companyNum);
|
|
|
CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
|
|
|
if (null == customerRec1){
|
|
|
- result.setMsg("该企业编号未注册企业!");
|
|
|
+ result.setCode(2);
|
|
|
+ result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
|
|
|
return result;
|
|
|
}
|
|
|
InvoicePackageVo invoicePackageVo = new InvoicePackageVo();
|
|
@@ -687,7 +713,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
|
|
|
result.setMsg(rs.getData().toString());
|
|
|
return result;
|
|
|
} else {
|
|
|
- result.setData(3);
|
|
|
+ result.setData(2);
|
|
|
result.setCode(200);
|
|
|
result.setMsg(rs.getMsg());
|
|
|
return result;
|