|
|
|
@ -4,7 +4,6 @@ import cn.hutool.core.io.IoUtil;
|
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
import com.glxp.sale.admin.constant.BasicProcessStatus;
|
|
|
|
|
import com.glxp.sale.admin.entity.basic.BasicThirdSysEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.basic.BasicUnitMaintainEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.basic.CorpImportDetailEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.basic.CorpImportLogEntity;
|
|
|
|
@ -21,18 +20,14 @@ import com.glxp.sale.common.enums.ResultEnum;
|
|
|
|
|
import com.glxp.sale.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.sale.common.util.ResultVOUtils;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
|
|
|
|
|
import org.apache.poi.ss.usermodel.*;
|
|
|
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
|
|
|
import org.apache.poi.ss.usermodel.CellType;
|
|
|
|
|
import org.apache.poi.ss.usermodel.Row;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.io.File;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
@ -133,7 +128,7 @@ public class CorpImportLogController {
|
|
|
|
|
//解析数据
|
|
|
|
|
try {
|
|
|
|
|
String fileType = fileName.substring(fileName.lastIndexOf("."));
|
|
|
|
|
if (".json".equals(fileType.toLowerCase())) {
|
|
|
|
|
if (".udi".equals(fileType.toLowerCase())) {
|
|
|
|
|
String jsonData = IoUtil.read(file.getInputStream()).toString();
|
|
|
|
|
List<BasicUnitMaintainEntity> basicUnitMaintainEntities = JSONUtil.toList(jsonData, BasicUnitMaintainEntity.class);
|
|
|
|
|
|
|
|
|
@ -149,7 +144,7 @@ public class CorpImportLogController {
|
|
|
|
|
corpImportLogEntity.setStatus(BasicProcessStatus.UDIINFO_IMPORT_SUCCESS);
|
|
|
|
|
corpImportLogService.updateImportLog(corpImportLogEntity);
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(500, "请上传json文件");
|
|
|
|
|
return ResultVOUtils.error(500, "请上传udi文件");
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("导入往来单位信息错误,文件名为:{}", fileName);
|
|
|
|
|