|
@@ -1,13 +1,14 @@
|
|
|
package com.jkcredit.invoice.controller.localBussiness;
|
|
|
+import cn.afterturn.easypoi.excel.ExcelImportUtil;
|
|
|
+import cn.afterturn.easypoi.excel.entity.ImportParams;
|
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.invoice.server.B2BInvoiceListModel;
|
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.trade.service.CardTradeModel;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.jkcredit.invoice.annotation.LoginRequired;
|
|
|
-import com.jkcredit.invoice.model.entity.Calculate.NoCarCalculateInfor;
|
|
|
import com.jkcredit.invoice.model.entity.Calculate.SelfCarCalculateInfor;
|
|
|
import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
|
|
|
+import com.jkcredit.invoice.model.entity.invoice.BillInvoice;
|
|
|
import com.jkcredit.invoice.model.entity.invoice.SelfCarInvoice;
|
|
|
-import com.jkcredit.invoice.model.entity.waybill.NoCarWayBill;
|
|
|
import com.jkcredit.invoice.model.entity.waybill.SelfCarTrade;
|
|
|
import com.jkcredit.invoice.service.CalculateInfor.SelfCarCalculateInfoService;
|
|
|
import com.jkcredit.invoice.service.lowerService.SelfCarServiceL;
|
|
@@ -15,16 +16,13 @@ import com.jkcredit.invoice.service.lowerService.vo.*;
|
|
|
import com.jkcredit.invoice.service.selfCar.SelfCarInvoiceService;
|
|
|
import com.jkcredit.invoice.service.selfCar.SelfCarService;
|
|
|
import com.jkcredit.invoice.service.selfCar.SelfCarTradeService;
|
|
|
-import com.jkcredit.invoice.service.upService.SelfCarInterface;
|
|
|
import com.jkcredit.invoice.util.RespR;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.util.StringUtils;
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import java.text.DateFormat;
|
|
|
import java.text.SimpleDateFormat;
|
|
@@ -284,4 +282,57 @@ public class SelfCarController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 批量查询自有车交易信息
|
|
|
+ *
|
|
|
+ * @param file 参数集
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping("/batchImportSelfcarTrades")
|
|
|
+ @ApiOperation(value="批量查询自有车交易信息", notes="批量查询自有车交易信息")
|
|
|
+ @LoginRequired
|
|
|
+ public RespR batchImportSelfcarTrades(@RequestParam("file") MultipartFile file) {
|
|
|
+ try {
|
|
|
+ ImportParams params = new ImportParams();
|
|
|
+ params.setTitleRows(1);
|
|
|
+ params.setHeadRows(1);
|
|
|
+ // params.setKeyIndex(2);
|
|
|
+ List<SelfCarTrade> list = ExcelImportUtil.importExcel(file.getInputStream(), SelfCarTrade.class,params) ;
|
|
|
+ RespR respR = selfCarTradeService.batchImportSelfcarTrades(list);
|
|
|
+ return respR;
|
|
|
+ }catch (Exception e){
|
|
|
+ e.printStackTrace();
|
|
|
+ return new RespR(false,e.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 批量查询自有车发票信息
|
|
|
+ *
|
|
|
+ * @param file 参数集
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping("/batchImportSelfcarInvoices")
|
|
|
+ @ApiOperation(value="批量查询自有车发票信息", notes="批量查询自有车发票信息")
|
|
|
+ @LoginRequired
|
|
|
+ public RespR batchImportSelfcarInvoices(@RequestParam("file") MultipartFile file) {
|
|
|
+ try {
|
|
|
+ ImportParams params = new ImportParams();
|
|
|
+ params.setTitleRows(1);
|
|
|
+ params.setHeadRows(1);
|
|
|
+ // params.setKeyIndex(2);
|
|
|
+ List<SelfCarInvoice> list = ExcelImportUtil.importExcel(file.getInputStream(), SelfCarInvoice.class,params) ;
|
|
|
+ RespR respR = selfCarInvoiceService.findImportSelfcarInvoices(list);
|
|
|
+ return respR;
|
|
|
+ }catch (Exception e){
|
|
|
+ e.printStackTrace();
|
|
|
+ return new RespR(false,e.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|