|
@@ -7,11 +7,13 @@ import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleRegisterResponse;
|
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.waybill.*;
|
|
|
import com.jkcredit.invoice.common.CommonConstants;
|
|
|
import com.jkcredit.invoice.mapper.Binvoce.BillInvoiceMapper;
|
|
|
+import com.jkcredit.invoice.mapper.calculateInfor.MounthAccMapper;
|
|
|
import com.jkcredit.invoice.mapper.calculateInfor.NoCarCalculateInforMapper;
|
|
|
import com.jkcredit.invoice.mapper.customer.CustomerCarRecMapper;
|
|
|
import com.jkcredit.invoice.mapper.customer.CustomerMapper;
|
|
|
import com.jkcredit.invoice.mapper.customer.CustomerRecMapper;
|
|
|
import com.jkcredit.invoice.mapper.waybill.NoCarWaybillMapper;
|
|
|
+import com.jkcredit.invoice.model.entity.Calculate.MounthAcc;
|
|
|
import com.jkcredit.invoice.model.entity.Calculate.NoCarCalculateInfor;
|
|
|
import com.jkcredit.invoice.model.entity.customer.Customer;
|
|
|
import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
|
|
@@ -402,6 +404,19 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill);
|
|
|
}
|
|
|
}
|
|
|
+ //插入或者更新运单
|
|
|
+ public void insertOrUpdateBill(NoCarWayBill noCarWayBill){
|
|
|
+ noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
+ NoCarWayBill curr = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
|
+ if(curr == null){
|
|
|
+ noCarWaybillMapper.insert(noCarWayBill);
|
|
|
+ }else{
|
|
|
+ if(curr.getBillwayStatus()>1){
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ noCarWaybillMapper.updateByBillNum(noCarWayBill);
|
|
|
+ }
|
|
|
+ }
|
|
|
@Override
|
|
|
public RespR noCarHisWaybillStart(NoCarWayBill noCarWayBill) {
|
|
|
log.info("历史运单开始上传:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"开始");
|
|
@@ -589,14 +604,12 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
}else{
|
|
|
int tempStatus = responseRespR.getData().getWaybillStatus().intValue();
|
|
|
if(noCarWayBill.getBillwayStatus()==-5){
|
|
|
- noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
|
- noCarWayBill.setInterType(0);
|
|
|
noCarWayBill.setPlateNum(responseRespR.getData().getPlateNum());
|
|
|
noCarWayBill.setStartTime(DateUtil.tTimeToDate(responseRespR.getData().getWaybillStartTime()));
|
|
|
noCarWayBill.setPredictEndTime(DateUtil.tTimeToDate(responseRespR.getData().getWaybillEndTime()));
|
|
|
//更改票状态
|
|
|
noCarWayBill.setBillwayStatus(tempStatus);
|
|
|
- insertOrUpdateBillEnd(noCarWayBill);
|
|
|
+ insertOrUpdateBill(noCarWayBill);
|
|
|
}else {
|
|
|
//更改票状态
|
|
|
noCarWayBill.setBillwayStatus(tempStatus);
|
|
@@ -696,7 +709,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
}
|
|
|
@Override
|
|
|
public RespR monthAccQuery(MonthAccountQueryVo monthAccountQueryVo) {
|
|
|
- log.info("取月票啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"开始");
|
|
|
+ log.info("取月票啦:NoCarServiceImpl.monthAccQuery{},msg{}",monthAccountQueryVo,"开始");
|
|
|
CustomerRec customerRecParm = new CustomerRec();
|
|
|
customerRecParm.setCompanyName(monthAccountQueryVo.getCompanyName());
|
|
|
customerRecParm.setCustomerName(monthAccountQueryVo.getCustomeName());
|
|
@@ -706,7 +719,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
customerRec = customerRecs.get(0);
|
|
|
}
|
|
|
if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
|
- log.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"企业未备案成功,查询失败");
|
|
|
+ log.info("取月票失败啦:NoCarServiceImpl.monthAccQuery{},msg{}",monthAccountQueryVo,"企业未备案成功,查询失败");
|
|
|
return new RespR(false,"企业未备案成功,查询失败");
|
|
|
}
|
|
|
WaybillCountQueryRequest waybillCountQueryRequest = new WaybillCountQueryRequest();
|
|
@@ -718,7 +731,68 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
waybillCountQueryRequest.setPageNo(monthAccountQueryVo.getPageNo());
|
|
|
waybillCountQueryRequest.setPageSize(1000);
|
|
|
RespR<WaybillCountQueryResponse> waybillCountQueryResponseRespR = noCarInterface.waybillCountQuery(waybillCountQueryRequest);
|
|
|
- log.info("取月票结束:NoCarServiceImpl.hCInvoiceQuery{},msg{}",waybillCountQueryResponseRespR,waybillCountQueryResponseRespR.getMsg());
|
|
|
+ log.info("取月票结束:NoCarServiceImpl.monthAccQuery{},msg{}",waybillCountQueryResponseRespR,waybillCountQueryResponseRespR.getMsg());
|
|
|
return waybillCountQueryResponseRespR;
|
|
|
}
|
|
|
+ @Autowired
|
|
|
+ MounthAccMapper mounthAccMapper;
|
|
|
+ @Override
|
|
|
+ public RespR monthAccQueryUpdate(MonthAccountQueryVo monthAccountQueryVo) {
|
|
|
+ log.info("更新取月票啦:NoCarServiceImpl.monthAccQueryUpdate{},msg{}",monthAccountQueryVo,"开始");
|
|
|
+ CustomerRec customerRecParm = new CustomerRec();
|
|
|
+ customerRecParm.setCompanyName(monthAccountQueryVo.getCompanyName());
|
|
|
+ customerRecParm.setCustomerName(monthAccountQueryVo.getCustomeName());
|
|
|
+ CustomerRec customerRec = null;
|
|
|
+ List<CustomerRec> customerRecs = customerRecMapper.selectByCompanyName(monthAccountQueryVo.getCompanyName());
|
|
|
+ if(customerRecs != null && customerRecs.size()>0){
|
|
|
+ customerRec = customerRecs.get(0);
|
|
|
+ }
|
|
|
+
|
|
|
+ if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
|
+ log.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"企业未备案成功,查询失败");
|
|
|
+ return new RespR(false,"企业未备案成功,查询失败");
|
|
|
+ }
|
|
|
+ WaybillCountQueryRequest waybillCountQueryRequest = new WaybillCountQueryRequest();
|
|
|
+ String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
|
|
|
+ waybillCountQueryRequest.setCompanyNum(companyNum);
|
|
|
+ waybillCountQueryRequest.setTaxCode(customerRec.getCompanyReferencenum());
|
|
|
+ waybillCountQueryRequest.setTradeMonth(monthAccountQueryVo.getTradeMonth());
|
|
|
+ waybillCountQueryRequest.setWaybillSource(monthAccountQueryVo.getWaybillSource());
|
|
|
+ waybillCountQueryRequest.setPageNo(monthAccountQueryVo.getPageNo());
|
|
|
+ waybillCountQueryRequest.setPageSize(1000);
|
|
|
+ RespR<WaybillCountQueryResponse> waybillCountQueryResponseRespR = noCarInterface.waybillCountQuery(waybillCountQueryRequest);
|
|
|
+ if(waybillCountQueryResponseRespR.getCode() != 1){
|
|
|
+ dealMouthAcc(waybillCountQueryResponseRespR,customerRec);
|
|
|
+ if(waybillCountQueryResponseRespR.getData().getTotalCount()>1000){
|
|
|
+ for(int i=2;i<waybillCountQueryResponseRespR.getData().getTotalCount()/1000+2;i++){
|
|
|
+ waybillCountQueryRequest.setPageNo(i);
|
|
|
+ RespR<WaybillCountQueryResponse> waybillCountQueryResponseRespR1 = noCarInterface.waybillCountQuery(waybillCountQueryRequest);
|
|
|
+ dealMouthAcc(waybillCountQueryResponseRespR1,customerRec);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ log.info("更新取月票啦:NoCarServiceImpl.monthAccQueryUpdate{},msg{}",waybillCountQueryResponseRespR,waybillCountQueryResponseRespR.getMsg());
|
|
|
+ return new RespR(true);
|
|
|
+ }
|
|
|
+ public void dealMouthAcc(RespR<WaybillCountQueryResponse> waybillCountQueryResponseRespR,CustomerRec customerRec){
|
|
|
+ String customerName = customerRec.getCustomerName();
|
|
|
+ String companyName = customerRec.getCompanyBelongName();
|
|
|
+ String buyerName = customerRec.getCompanyName();
|
|
|
+ String buyerCode = customerRec.getCompanyReferencenum();
|
|
|
+ waybillCountQueryResponseRespR.getData().getResult().forEach(waybillCountQueryModel -> {
|
|
|
+ MounthAcc mounthAcc = new MounthAcc();
|
|
|
+ mounthAcc.setBuyerName(buyerName);
|
|
|
+ mounthAcc.setBuyerTaxpayerCode(buyerCode);
|
|
|
+ mounthAcc.setCompanyName(companyName);
|
|
|
+ mounthAcc.setCustomerId(customerName);
|
|
|
+ mounthAcc.setExTime(DateUtil.tTimeToDate(waybillCountQueryModel.getExTime()));
|
|
|
+ mounthAcc.setEnStation(waybillCountQueryModel.getEnStation());
|
|
|
+ mounthAcc.setExStation(waybillCountQueryModel.getExStation());
|
|
|
+ mounthAcc.setFee(waybillCountQueryModel.getFee());
|
|
|
+ mounthAcc.setTradeId(waybillCountQueryModel.getTradeId());
|
|
|
+ mounthAcc.setWaybillNum(waybillCountQueryModel.getWaybillNum());
|
|
|
+ mounthAccMapper.insert(mounthAcc);
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|