|
|
|
@ -17,31 +17,58 @@
|
|
|
|
|
package com.logpm.basicdata.service.impl; |
|
|
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil; |
|
|
|
|
import cn.hutool.core.collection.CollUtil; |
|
|
|
|
import cn.hutool.core.collection.CollectionUtil; |
|
|
|
|
import cn.hutool.core.date.DateTime; |
|
|
|
|
import cn.hutool.core.date.DateUtil; |
|
|
|
|
import cn.hutool.core.util.NumberUtil; |
|
|
|
|
import cn.hutool.core.util.ObjectUtil; |
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
import com.alibaba.excel.EasyExcel; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils; |
|
|
|
|
import com.logpm.basicdata.dto.BasicdataFreightDTO; |
|
|
|
|
import com.logpm.basicdata.dto.BasicdataFreightDetailDTO; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataBrandEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataCategoryEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataClientEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataFreightDetailEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataFreightEntity; |
|
|
|
|
import com.logpm.basicdata.excel.BasicdataFreightCheckListener; |
|
|
|
|
import com.logpm.basicdata.excel.BasicdataFreightExcel; |
|
|
|
|
import com.logpm.basicdata.excel.BasicdataFreightSaveListener; |
|
|
|
|
import com.logpm.basicdata.mapper.BasicdataFreightMapper; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataBrandService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataCategoryService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataClientService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataFreightDetailService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataFreightService; |
|
|
|
|
import com.logpm.basicdata.vo.BasicdataFreightVO; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springblade.common.constant.CommonConstant; |
|
|
|
|
import org.springblade.common.constant.DictBizConstant; |
|
|
|
|
import org.springblade.core.log.exception.ServiceException; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.mp.support.Condition; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.system.entity.DictBiz; |
|
|
|
|
import org.springblade.system.feign.IDictBizClient; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
|
|
|
|
|
|
import java.io.IOException; |
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.HashMap; |
|
|
|
|
import java.util.HashSet; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.Set; |
|
|
|
|
import java.util.concurrent.atomic.AtomicLong; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 基础客户品牌类型表 服务实现类 |
|
|
|
@ -57,6 +84,11 @@ public class BasicdataFreightServiceImpl extends BaseServiceImpl<BasicdataFreigh
|
|
|
|
|
@Autowired |
|
|
|
|
private IBasicdataFreightDetailService detailService; |
|
|
|
|
|
|
|
|
|
private final IBasicdataBrandService basicdataBrandService; |
|
|
|
|
private final IBasicdataClientService basicdataClientService; |
|
|
|
|
private final IBasicdataCategoryService basicdataCategoryService; |
|
|
|
|
private final IDictBizClient dictBizClient; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IPage<BasicdataFreightVO> selectBasicdataFreightPage(IPage<BasicdataFreightVO> page, BasicdataFreightVO basicdataFreight) { |
|
|
|
|
return page.setRecords(baseMapper.selectBasicdataFreightPage(page, basicdataFreight)); |
|
|
|
@ -85,18 +117,17 @@ public class BasicdataFreightServiceImpl extends BaseServiceImpl<BasicdataFreigh
|
|
|
|
|
LambdaQueryWrapper<BasicdataFreightEntity> query = new LambdaQueryWrapper<>(); |
|
|
|
|
query.eq(BasicdataFreightEntity::getItemName, basicdataFreight.getItemName()) |
|
|
|
|
.eq(BasicdataFreightEntity::getIsDeleted, 0); |
|
|
|
|
if (0 == basicdataFreight.getFixedPrice()) { |
|
|
|
|
if (StrUtil.isBlank(basicdataFreight.getCategory())) { |
|
|
|
|
throw new ServiceException("品类必填"); |
|
|
|
|
} |
|
|
|
|
query.in(BasicdataFreightEntity::getCategory, basicdataFreight.getCategory().split(",")); |
|
|
|
|
} |
|
|
|
|
// if (0 == basicdataFreight.getFixedPrice()) {
|
|
|
|
|
query.in(BasicdataFreightEntity::getCategory, basicdataFreight.getCategory().split(",")); |
|
|
|
|
query.eq(BasicdataFreightEntity::getBrand, basicdataFreight.getBrand()); |
|
|
|
|
query.eq(BasicdataFreightEntity::getForwardingUnitId, basicdataFreight.getForwardingUnitId()); |
|
|
|
|
// }
|
|
|
|
|
if (ObjectUtils.isNotNull(basicdataFreight.getId())) { |
|
|
|
|
query.ne(BasicdataFreightEntity::getId, basicdataFreight.getId()); |
|
|
|
|
} |
|
|
|
|
List<BasicdataFreightEntity> list = this.list(query); |
|
|
|
|
if (CollectionUtil.isNotEmpty(list)) { |
|
|
|
|
throw new ServiceException("名称+品类存在其他表单中,请检查。"); |
|
|
|
|
throw new ServiceException("(客户名称+品类+品牌+发货单位)存在其他表单中,请检查。"); |
|
|
|
|
} |
|
|
|
|
BasicdataFreightEntity basicdataFreightEntity = new BasicdataFreightEntity(); |
|
|
|
|
Byte fixedPrice = basicdataFreight.getFixedPrice(); |
|
|
|
@ -158,4 +189,348 @@ public class BasicdataFreightServiceImpl extends BaseServiceImpl<BasicdataFreigh
|
|
|
|
|
return basicdataFreightDTO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public String importFreight(MultipartFile file) { |
|
|
|
|
StringBuilder message = new StringBuilder(); |
|
|
|
|
try { |
|
|
|
|
List<BasicdataBrandEntity> brands = basicdataBrandService.list(new LambdaQueryWrapper<BasicdataBrandEntity>().eq(BasicdataBrandEntity::getIsDeleted, CommonConstant.DB_UN_DELETED_CODE)); |
|
|
|
|
Map<String, Long> brandMap = new HashMap<>(); |
|
|
|
|
if (CollUtil.isNotEmpty(brands)) { |
|
|
|
|
for (BasicdataBrandEntity brand : brands) { |
|
|
|
|
String brandName = brand.getBrandName(); |
|
|
|
|
Long id = brand.getId(); |
|
|
|
|
brandMap.put(brandName, id); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
List<BasicdataClientEntity> basicdataClientVOS = basicdataClientService.list(new LambdaQueryWrapper<BasicdataClientEntity>().eq(BasicdataClientEntity::getIsDeleted, CommonConstant.DB_UN_DELETED_CODE)); |
|
|
|
|
Map<String, Long> clientMap = new HashMap<>(); |
|
|
|
|
if (CollUtil.isNotEmpty(basicdataClientVOS)) { |
|
|
|
|
for (BasicdataClientEntity basicdataClientVO : basicdataClientVOS) { |
|
|
|
|
String clientName = basicdataClientVO.getClientName(); |
|
|
|
|
Long id = basicdataClientVO.getId(); |
|
|
|
|
clientMap.put(clientName, id); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<BasicdataCategoryEntity> list1 = basicdataCategoryService.list(new LambdaQueryWrapper<BasicdataCategoryEntity>().eq(BasicdataCategoryEntity::getIsDeleted, CommonConstant.DB_UN_DELETED_CODE)); |
|
|
|
|
Map<String, Long> categoryMap = new HashMap<>(); |
|
|
|
|
if (CollUtil.isNotEmpty(list1)) { |
|
|
|
|
for (BasicdataCategoryEntity basicdataCategoryEntity : list1) { |
|
|
|
|
String name = basicdataCategoryEntity.getName(); |
|
|
|
|
Long id = basicdataCategoryEntity.getId(); |
|
|
|
|
categoryMap.put(name, id); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
R<List<DictBiz>> arteryR = dictBizClient.getList(DictBizConstant.CARRIAGE_ARTERY); |
|
|
|
|
Map<String, String> arteryMap = new HashMap<>(); |
|
|
|
|
if (ObjectUtil.equal(CommonConstant.HTTP_SUCCESS_CODE, arteryR.getCode())) { |
|
|
|
|
List<DictBiz> data = arteryR.getData(); |
|
|
|
|
if (CollUtil.isNotEmpty(data)) { |
|
|
|
|
for (DictBiz datum : data) { |
|
|
|
|
arteryMap.put(datum.getDictValue(), datum.getDictKey()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
R<List<DictBiz>> entrepotR = dictBizClient.getList(DictBizConstant.CARRIAGE_ENTREPOT); |
|
|
|
|
Map<String, String> entrepotMap = new HashMap<>(); |
|
|
|
|
if (ObjectUtil.equal(CommonConstant.HTTP_SUCCESS_CODE, entrepotR.getCode())) { |
|
|
|
|
List<DictBiz> data = entrepotR.getData(); |
|
|
|
|
if (CollUtil.isNotEmpty(data)) { |
|
|
|
|
for (DictBiz datum : data) { |
|
|
|
|
entrepotMap.put(datum.getDictValue(), datum.getDictKey()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
R<List<DictBiz>> deliveryR = dictBizClient.getList(DictBizConstant.CARRIAGE_DELIVERY); |
|
|
|
|
Map<String, String> deliveryMap = new HashMap<>(); |
|
|
|
|
if (ObjectUtil.equal(CommonConstant.HTTP_SUCCESS_CODE, deliveryR.getCode())) { |
|
|
|
|
List<DictBiz> data = deliveryR.getData(); |
|
|
|
|
if (CollUtil.isNotEmpty(data)) { |
|
|
|
|
for (DictBiz datum : data) { |
|
|
|
|
deliveryMap.put(datum.getDictValue(), datum.getDictKey()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
R<List<DictBiz>> formulaModeR = dictBizClient.getList(DictBizConstant.BASIC_FREIGHT_FORMULAMODE); |
|
|
|
|
Map<String, String> formulaModeMap = new HashMap<>(); |
|
|
|
|
if (ObjectUtil.equal(CommonConstant.HTTP_SUCCESS_CODE, formulaModeR.getCode())) { |
|
|
|
|
List<DictBiz> data = formulaModeR.getData(); |
|
|
|
|
if (CollUtil.isNotEmpty(data)) { |
|
|
|
|
for (DictBiz datum : data) { |
|
|
|
|
formulaModeMap.put(datum.getDictValue(), datum.getDictKey()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
R<List<DictBiz>> typeR = dictBizClient.getList(DictBizConstant.BASIC_FREIGHT_TYPE); |
|
|
|
|
Map<String, String> typeMap = new HashMap<>(); |
|
|
|
|
if (ObjectUtil.equal(CommonConstant.HTTP_SUCCESS_CODE, typeR.getCode())) { |
|
|
|
|
List<DictBiz> data = typeR.getData(); |
|
|
|
|
if (CollUtil.isNotEmpty(data)) { |
|
|
|
|
for (DictBiz datum : data) { |
|
|
|
|
typeMap.put(datum.getDictValue(), datum.getDictKey()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
EasyExcel.read(file.getInputStream(), |
|
|
|
|
BasicdataFreightExcel.class, |
|
|
|
|
new BasicdataFreightCheckListener(this, message, brandMap, clientMap, categoryMap, arteryMap, entrepotMap, deliveryMap, formulaModeMap) |
|
|
|
|
).sheet().doRead(); |
|
|
|
|
if (StrUtil.isNotBlank(message.toString())) { |
|
|
|
|
return message.toString(); |
|
|
|
|
} |
|
|
|
|
EasyExcel.read(file.getInputStream(), |
|
|
|
|
BasicdataFreightExcel.class, |
|
|
|
|
new BasicdataFreightSaveListener(this, brandMap, clientMap, categoryMap, |
|
|
|
|
arteryMap, entrepotMap, deliveryMap, formulaModeMap, typeMap) |
|
|
|
|
).sheet().doRead(); |
|
|
|
|
} catch (IOException e) { |
|
|
|
|
e.printStackTrace(); |
|
|
|
|
} |
|
|
|
|
return "导入成功"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void checkData(List<BasicdataFreightExcel> list, StringBuilder message, AtomicLong andIncrement, Map<String, Long> brandMap, |
|
|
|
|
Map<String, Long> clientMap, Map<String, Long> categoryMap, Map<String, String> arteryMap, |
|
|
|
|
Map<String, String> entrepotMap, Map<String, String> deliveryMap, Map<String, String> formulaModeMap) { |
|
|
|
|
// 客户名称 品牌 发货单位 品类 不能为空,且数据在数据库中存在
|
|
|
|
|
for (BasicdataFreightExcel data : list) { |
|
|
|
|
StringBuilder rowMessage = new StringBuilder(); |
|
|
|
|
String firstMessage = "第" + andIncrement.getAndIncrement() + "行,"; |
|
|
|
|
String brand = data.getBrand(); |
|
|
|
|
String name = data.getName(); |
|
|
|
|
String categoryName = data.getCategoryName(); |
|
|
|
|
String forwardingUnitName = data.getForwardingUnitName(); |
|
|
|
|
if (StrUtil.isBlank(brand)) { |
|
|
|
|
rowMessage.append("品牌不能为空。"); |
|
|
|
|
} else { |
|
|
|
|
// 校验品牌在数据库中是否存在
|
|
|
|
|
if (!brandMap.containsKey(brand)) { |
|
|
|
|
rowMessage.append("品牌[" + brand + "]在系统中不存在。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (StrUtil.isBlank(name)) { |
|
|
|
|
rowMessage.append("客户名称不能为空。"); |
|
|
|
|
} else { |
|
|
|
|
if (!clientMap.containsKey(name)) { |
|
|
|
|
rowMessage.append("客户名称[" + name + "]在系统中不存在。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
String categoryNames = categoryName.replaceAll(",", ","); |
|
|
|
|
List<String> split = StrUtil.split(categoryNames, ","); |
|
|
|
|
if (CollUtil.isNotEmpty(split)) { |
|
|
|
|
for (String s : split) { |
|
|
|
|
if (StrUtil.isBlank(s)) { |
|
|
|
|
rowMessage.append("品类不能为空。"); |
|
|
|
|
} else { |
|
|
|
|
if (!categoryMap.containsKey(s)) { |
|
|
|
|
rowMessage.append("品类[" + s + "]在系统中不存在。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (StrUtil.isBlank(forwardingUnitName)) { |
|
|
|
|
rowMessage.append("发货单位不能为空。"); |
|
|
|
|
} else { |
|
|
|
|
if (!clientMap.containsKey(forwardingUnitName)) { |
|
|
|
|
rowMessage.append("发货单位[" + forwardingUnitName + "]在系统中不存在。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
String freightFee = data.getFreightFee(); |
|
|
|
|
String freightFeeUnit = data.getFreightFeeUnit(); |
|
|
|
|
if (StrUtil.isNotBlank(freightFee)) { |
|
|
|
|
if (!NumberUtil.isNumber(freightFee)) { |
|
|
|
|
rowMessage.append("干线-运费只能填数字。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (StrUtil.isNotBlank(freightFeeUnit)) { |
|
|
|
|
if (!formulaModeMap.containsKey(freightFeeUnit)) { |
|
|
|
|
rowMessage.append("干线-运费单位[" + freightFeeUnit + "]在系统中不存在。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
String zeroStorageFee = data.getZeroStorageFee(); |
|
|
|
|
String zeroStorageFeeUnit = data.getZeroStorageFeeUnit(); |
|
|
|
|
if (StrUtil.isNotBlank(zeroStorageFee)) { |
|
|
|
|
if (!NumberUtil.isNumber(zeroStorageFee)) { |
|
|
|
|
rowMessage.append("仓库-0-30天仓储费只能填数字。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (StrUtil.isNotBlank(zeroStorageFeeUnit)) { |
|
|
|
|
if (!formulaModeMap.containsKey(zeroStorageFeeUnit)) { |
|
|
|
|
rowMessage.append("仓库-0-30天仓储费单位[" + zeroStorageFeeUnit + "]在系统中不存在。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
String thirtyStorageFee = data.getThirtyStorageFee(); |
|
|
|
|
String thirtyStorageFeeUnit = data.getThirtyStorageFeeUnit(); |
|
|
|
|
if (StrUtil.isNotBlank(thirtyStorageFee)) { |
|
|
|
|
if (!NumberUtil.isNumber(thirtyStorageFee)) { |
|
|
|
|
rowMessage.append("仓库-31-60天仓储费只能填数字。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (StrUtil.isNotBlank(thirtyStorageFeeUnit)) { |
|
|
|
|
if (!formulaModeMap.containsKey(thirtyStorageFeeUnit)) { |
|
|
|
|
rowMessage.append("仓库-31-60天仓储费单位[" + thirtyStorageFeeUnit + "]在系统中不存在。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
String sixtyStorageFee = data.getSixtyStorageFee(); |
|
|
|
|
String sixtyStorageFeeUnit = data.getSixtyStorageFeeUnit(); |
|
|
|
|
if (StrUtil.isNotBlank(sixtyStorageFee)) { |
|
|
|
|
if (!NumberUtil.isNumber(sixtyStorageFee)) { |
|
|
|
|
rowMessage.append("仓库-61天以上仓储费只能填数字。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (StrUtil.isNotBlank(sixtyStorageFeeUnit)) { |
|
|
|
|
if (!formulaModeMap.containsKey(sixtyStorageFeeUnit)) { |
|
|
|
|
rowMessage.append("仓库-61天以上仓储费单位[" + sixtyStorageFeeUnit + "]在系统中不存在。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
String managerFee = data.getManagerFee(); |
|
|
|
|
String managerFeeUnit = data.getManagerFeeUnit(); |
|
|
|
|
if (StrUtil.isNotBlank(managerFee)) { |
|
|
|
|
if (!NumberUtil.isNumber(managerFee)) { |
|
|
|
|
rowMessage.append("仓库-管理费只能填数字。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (StrUtil.isNotBlank(managerFeeUnit)) { |
|
|
|
|
if (!formulaModeMap.containsKey(managerFeeUnit)) { |
|
|
|
|
rowMessage.append("仓库-仓库管理费单位[" + managerFeeUnit + "]在系统中不存在。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
String deliveryFee = data.getDeliveryFee(); |
|
|
|
|
String deliveryFeeUnit = data.getDeliveryFeeUnit(); |
|
|
|
|
if (StrUtil.isNotBlank(deliveryFee)) { |
|
|
|
|
if (!NumberUtil.isNumber(deliveryFee)) { |
|
|
|
|
rowMessage.append("配送-配送费只能填数字。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (StrUtil.isNotBlank(deliveryFeeUnit)) { |
|
|
|
|
if (!formulaModeMap.containsKey(deliveryFeeUnit)) { |
|
|
|
|
rowMessage.append("配送-配送费单位[" + deliveryFeeUnit + "]在系统中不存在。"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (StrUtil.isNotBlank(rowMessage.toString())) { |
|
|
|
|
message.append("<p>"); |
|
|
|
|
message.append(firstMessage); |
|
|
|
|
message.append(rowMessage.toString()); |
|
|
|
|
message.append("</p>"); |
|
|
|
|
message.append("<br>"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void saveData(List<BasicdataFreightExcel> list, Map<String, Long> brandMap, Map<String, Long> clientMap, |
|
|
|
|
Map<String, Long> categoryMap, Map<String, String> arteryMap, Map<String, String> entrepotMap, |
|
|
|
|
Map<String, String> deliveryMap, Map<String, String> formulaModeMap, Map<String, String> typeMap) { |
|
|
|
|
if (CollUtil.isNotEmpty(list)) { |
|
|
|
|
for (BasicdataFreightExcel excel : list) { |
|
|
|
|
BasicdataFreightDTO vo = new BasicdataFreightDTO(); |
|
|
|
|
vo.setBrand(brandMap.get(excel.getBrand())); |
|
|
|
|
vo.setBrandName(excel.getBrand()); |
|
|
|
|
String categoryName = excel.getCategoryName(); |
|
|
|
|
String categoryNames = categoryName.replaceAll(",", ","); |
|
|
|
|
List<String> split = StrUtil.split(categoryNames, ","); |
|
|
|
|
vo.setCategoryName(excel.getCategoryName()); |
|
|
|
|
if (CollUtil.isNotEmpty(split)) { |
|
|
|
|
List<String> categoryIds = new ArrayList(); |
|
|
|
|
for (String s : split) { |
|
|
|
|
String aLong = categoryMap.get(s).toString(); |
|
|
|
|
categoryIds.add(aLong); |
|
|
|
|
} |
|
|
|
|
vo.setCategory(String.join(",", categoryIds)); |
|
|
|
|
} |
|
|
|
|
vo.setItemName(clientMap.get(excel.getName()).toString()); |
|
|
|
|
vo.setName(excel.getName()); |
|
|
|
|
vo.setForwardingUnitId(clientMap.get(excel.getForwardingUnitName()).toString()); |
|
|
|
|
vo.setForwardingUnitName(excel.getForwardingUnitName()); |
|
|
|
|
vo.setIdentification(1); |
|
|
|
|
try { |
|
|
|
|
DateTime dateTime = DateUtil.parseDateTime(excel.getEffectiveTime()); |
|
|
|
|
vo.setEffectiveTime(dateTime); |
|
|
|
|
DateTime expirationTime = DateUtil.parseDateTime(excel.getExpirationTime()); |
|
|
|
|
vo.setExpirationTime(expirationTime); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
e.printStackTrace(); |
|
|
|
|
} |
|
|
|
|
// 处理明细
|
|
|
|
|
String freightFee = excel.getFreightFee(); |
|
|
|
|
Set<String> typeServicIds = new HashSet<>(); |
|
|
|
|
List<BasicdataFreightDetailDTO> details = new ArrayList<>(); |
|
|
|
|
String freightFrrUnit = ""; |
|
|
|
|
if (StrUtil.isNotBlank(excel.getFreightFeeUnit())) { |
|
|
|
|
freightFrrUnit = formulaModeMap.get(excel.getFreightFeeUnit()); |
|
|
|
|
} |
|
|
|
|
if (StrUtil.isNotBlank(freightFee)) { |
|
|
|
|
typeServicIds.add("1"); |
|
|
|
|
String typeName = "干线"; |
|
|
|
|
String itemName = "运费"; |
|
|
|
|
String typeId = typeMap.get(typeName); |
|
|
|
|
String itemId = arteryMap.get(itemName); |
|
|
|
|
buildDetails(excel, freightFee, details, typeName, itemName, typeId, freightFrrUnit, itemId); |
|
|
|
|
} |
|
|
|
|
String zeroStorageFee = excel.getZeroStorageFee(); |
|
|
|
|
if (StrUtil.isNotBlank(zeroStorageFee)) { |
|
|
|
|
typeServicIds.add("2"); |
|
|
|
|
String typeName = "仓库"; |
|
|
|
|
String itemName = "0-30天仓储费"; |
|
|
|
|
String typeId = typeMap.get(typeName); |
|
|
|
|
String itemId = entrepotMap.get(itemName); |
|
|
|
|
buildDetails(excel, zeroStorageFee, details, typeName, itemName, typeId, freightFrrUnit, itemId); |
|
|
|
|
} |
|
|
|
|
String thirtyStorageFee = excel.getThirtyStorageFee(); |
|
|
|
|
if (StrUtil.isNotBlank(thirtyStorageFee)) { |
|
|
|
|
typeServicIds.add("2"); |
|
|
|
|
String typeName = "仓库"; |
|
|
|
|
String itemName = "31-60仓储费"; |
|
|
|
|
String typeId = typeMap.get(typeName); |
|
|
|
|
String itemId = entrepotMap.get(itemName); |
|
|
|
|
buildDetails(excel, thirtyStorageFee, details, typeName, itemName, typeId, freightFrrUnit, itemId); |
|
|
|
|
} |
|
|
|
|
String sixtyStorageFee = excel.getSixtyStorageFee(); |
|
|
|
|
if (StrUtil.isNotBlank(sixtyStorageFee)) { |
|
|
|
|
typeServicIds.add("2"); |
|
|
|
|
String typeName = "仓库"; |
|
|
|
|
String itemName = "61天以上仓储费"; |
|
|
|
|
String typeId = typeMap.get(typeName); |
|
|
|
|
String itemId = entrepotMap.get(itemName); |
|
|
|
|
buildDetails(excel, sixtyStorageFee, details, typeName, itemName, typeId, freightFrrUnit, itemId); |
|
|
|
|
} |
|
|
|
|
String managerFee = excel.getManagerFee(); |
|
|
|
|
if (StrUtil.isNotBlank(managerFee)) { |
|
|
|
|
typeServicIds.add("2"); |
|
|
|
|
String typeName = "仓库"; |
|
|
|
|
String itemName = "仓库管理费"; |
|
|
|
|
String typeId = typeMap.get(typeName); |
|
|
|
|
String itemId = entrepotMap.get(itemName); |
|
|
|
|
buildDetails(excel, managerFee, details, typeName, itemName, typeId, freightFrrUnit, itemId); |
|
|
|
|
} |
|
|
|
|
String deliveryFee = excel.getDeliveryFee(); |
|
|
|
|
if (StrUtil.isNotBlank(deliveryFee)) { |
|
|
|
|
typeServicIds.add("3"); |
|
|
|
|
String typeName = "配送"; |
|
|
|
|
String itemName = "配送费"; |
|
|
|
|
String typeId = typeMap.get(typeName); |
|
|
|
|
String itemId = deliveryMap.get(itemName); |
|
|
|
|
buildDetails(excel, deliveryFee, details, typeName, itemName, typeId, freightFrrUnit, itemId); |
|
|
|
|
} |
|
|
|
|
vo.setType(String.join(",", typeServicIds)); |
|
|
|
|
vo.setFixedPrice((byte) 0); |
|
|
|
|
vo.setDetails(details); |
|
|
|
|
this.ownSaveOrUpdate(vo); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void buildDetails(BasicdataFreightExcel excel, String freightFee, List<BasicdataFreightDetailDTO> details, String typeName, String itemName, String typeId, String formulaMode, String itemId) { |
|
|
|
|
BasicdataFreightDetailDTO detailDTO = new BasicdataFreightDetailDTO(); |
|
|
|
|
detailDTO.setCost(new BigDecimal(freightFee)); |
|
|
|
|
detailDTO.setTypeName(typeName); |
|
|
|
|
detailDTO.setTypeId(typeId); |
|
|
|
|
detailDTO.setFormulaModeName(excel.getFreightFeeUnit()); |
|
|
|
|
detailDTO.setFormulaMode(Long.parseLong(formulaMode)); |
|
|
|
|
detailDTO.setItemName(itemName); |
|
|
|
|
detailDTO.setItemId(itemId); |
|
|
|
|
details.add(detailDTO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|