|
@@ -7,6 +7,7 @@ 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.binvoce.HcInvoiceMapper;
|
|
|
import com.jkcredit.invoice.mapper.calculateinfor.MounthAccMapper;
|
|
|
import com.jkcredit.invoice.mapper.calculateinfor.NoCarCalculateInforMapper;
|
|
|
import com.jkcredit.invoice.mapper.customer.CustomerCarRecMapper;
|
|
@@ -19,6 +20,7 @@ import com.jkcredit.invoice.model.entity.customer.Customer;
|
|
|
import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
|
|
|
import com.jkcredit.invoice.model.entity.customer.CustomerRec;
|
|
|
import com.jkcredit.invoice.model.entity.invoice.BillInvoice;
|
|
|
+import com.jkcredit.invoice.model.entity.invoice.HcInvoice;
|
|
|
import com.jkcredit.invoice.model.entity.manager.Param;
|
|
|
import com.jkcredit.invoice.model.entity.waybill.NoCarWayBill;
|
|
|
import com.jkcredit.invoice.service.lowerservice.NoCarService;
|
|
@@ -711,18 +713,64 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
@Override
|
|
|
public RespR hCInvoiceQuery(HCInvoiceQueryVo hcInvoiceQueryVo) {
|
|
|
log.info("取红冲票啦:NoCarServiceImpl.hCInvoiceQuery{}",hcInvoiceQueryVo);
|
|
|
+ HcInvoice hcInvoiceParam = new HcInvoice();
|
|
|
+ hcInvoiceParam.setBuyerName(hcInvoiceQueryVo.getBuyerName());
|
|
|
+ hcInvoiceParam.setBuyerTaxpayerCode(hcInvoiceQueryVo.getBuyerTaxpayerCode());
|
|
|
+ hcInvoiceParam.setYearMonth(hcInvoiceQueryVo.getMonth());
|
|
|
+ List<HcInvoice> hcInvoices = hcInvoiceMapper.selectInvoiceByCondition(hcInvoiceParam);
|
|
|
+ if(hcInvoices == null || hcInvoices.size()==0){
|
|
|
+ hcInvoiceParam.setBuyerName("");
|
|
|
+ hcInvoiceParam.setBuyerTaxpayerCode("");
|
|
|
+ hcInvoices = hcInvoiceMapper.selectInvoiceByCondition(hcInvoiceParam);
|
|
|
+ if(hcInvoices == null || hcInvoices.size()==0){
|
|
|
+ hCInvoiceUpdate(hcInvoiceQueryVo);
|
|
|
+ hcInvoiceParam.setBuyerName(hcInvoiceQueryVo.getBuyerName());
|
|
|
+ hcInvoiceParam.setBuyerTaxpayerCode(hcInvoiceQueryVo.getBuyerTaxpayerCode());
|
|
|
+ hcInvoices = hcInvoiceMapper.selectInvoiceByCondition(hcInvoiceParam);
|
|
|
+ }else{
|
|
|
+ hcInvoices = null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(hcInvoices == null){
|
|
|
+ hcInvoices = new ArrayList<>();
|
|
|
+ }
|
|
|
+ Map<String,List<HcInvoice>> map = new HashMap<>();
|
|
|
+ map.put("result",hcInvoices);
|
|
|
+ return new RespR(map);
|
|
|
+ }
|
|
|
+ @Autowired
|
|
|
+ HcInvoiceMapper hcInvoiceMapper;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ @Transactional
|
|
|
+ public RespR hCInvoiceUpdate(HCInvoiceQueryVo hcInvoiceQueryVo) {
|
|
|
+ log.info("取红冲票啦:NoCarServiceImpl.hCInvoiceQuery{}",hcInvoiceQueryVo);
|
|
|
WaybillInvoiceRedQueryRequest redQueryRequest = new WaybillInvoiceRedQueryRequest();
|
|
|
String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
|
|
|
redQueryRequest.setCompanyNum(companyNum);
|
|
|
redQueryRequest.setMonth(hcInvoiceQueryVo.getMonth());
|
|
|
|
|
|
RespR<WaybillInvoiceRedQueryResponse> respR = noCarInterface.waybillInvoiceRedQuery(redQueryRequest);
|
|
|
+
|
|
|
if(respR.getCode() == 1){
|
|
|
log.info("取红冲票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",hcInvoiceQueryVo,respR.getMsg());
|
|
|
return new RespR(false,respR.getMsg());
|
|
|
+ }else{
|
|
|
+ List<WaybillInvoiceRedQueryModel> waybillInvoiceRedQueryModels = respR.getData().getResult();
|
|
|
+ if(waybillInvoiceRedQueryModels!=null && waybillInvoiceRedQueryModels.size()>0){
|
|
|
+ //1.删除原有红冲发票
|
|
|
+ hcInvoiceMapper.deleteByMounth(hcInvoiceQueryVo.getMonth());
|
|
|
+ //逐条插入红冲发票
|
|
|
+ for(WaybillInvoiceRedQueryModel waybillInvoiceRedQueryModel :waybillInvoiceRedQueryModels){
|
|
|
+ HcInvoice hcInvoice = new HcInvoice();
|
|
|
+ BeanUtils.copyProperties(waybillInvoiceRedQueryModel,hcInvoice);
|
|
|
+ hcInvoiceMapper.insertHcInvoice(hcInvoice);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
- return respR;
|
|
|
+ return new RespR();
|
|
|
}
|
|
|
+
|
|
|
@Override
|
|
|
public RespR monthAccQuery(MonthAccountQueryVo monthAccountQueryVo) {
|
|
|
log.info("取月票啦:NoCarServiceImpl.monthAccQuery{},msg{}",monthAccountQueryVo,"开始");
|