Browse Source

fix:优化运单列表

2.增加远程异常调用
fix-sign
pref_mail@163.com 5 months ago
parent
commit
dd573fc90b
  1. 34
      blade-biz-common/src/main/java/org/springblade/common/exception/FeignException.java
  2. 3
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/feign/IBasicdataWarehouseClient.java
  3. 136
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/feign/IBasicdataWarehouseClientFallback.java
  4. 3
      blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/vo/ExportWarehouseWaybillVO.java
  5. 31
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/feign/BasicdataWarehouseClient.java
  6. 14
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/config/GlobalExceptionHandler.java
  7. 11
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionStockArticleServiceImpl.java
  8. 15
      blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/mapper/WarehouseWaybillMapper.xml
  9. 75
      blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseWaybillServiceImpl.java

34
blade-biz-common/src/main/java/org/springblade/common/exception/FeignException.java

@ -0,0 +1,34 @@
package org.springblade.common.exception;
/**
* 远程接口调用异常
*/
public class FeignException extends RuntimeException{
private Integer code;
private String message;
public FeignException(Integer code, String message) {
this.code = code;
this.message = message;
}
public Integer getCode() {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
@Override
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}

3
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/feign/IBasicdataWarehouseClient.java

@ -39,7 +39,8 @@ import java.util.Map;
* @since 2023-05-15
*/
@FeignClient(
value = ModuleNameConstant.APPLICATION_BASICDATA_NAME
value = ModuleNameConstant.APPLICATION_BASICDATA_NAME,
fallback = IBasicdataWarehouseClientFallback.class
)
public interface IBasicdataWarehouseClient {

136
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/feign/IBasicdataWarehouseClientFallback.java

@ -0,0 +1,136 @@
package com.logpm.basicdata.feign;
import com.alibaba.fastjson.JSONObject;
import com.logpm.basicdata.entity.BasicdataWarehouseEntity;
import com.logpm.basicdata.vo.BasicdataWarehouseVO;
import lombok.extern.slf4j.Slf4j;
import org.springblade.common.exception.FeignException;
import org.springblade.core.mp.support.BladePage;
import org.springblade.core.tool.api.R;
import org.springframework.stereotype.Component;
import java.util.List;
import java.util.Map;
@Slf4j
@Component
public class IBasicdataWarehouseClientFallback implements IBasicdataWarehouseClient {
private final FeignException feignException = new FeignException(500, "系统内部接口错误,请联系管理员");
@Override
public BladePage<BasicdataWarehouseEntity> topWarehouse(Integer current, Integer size) {
log.error("调用logpm-basicdata-api接口失败:topWarehouse {} {}", current, size);
throw feignException;
}
@Override
public BasicdataWarehouseEntity findByName(String destinationWarehouse) {
log.error("调用logpm-basicdata-api接口失败:findByName {}", destinationWarehouse);
throw feignException;
}
@Override
public BasicdataWarehouseEntity getWarehouse(String name, String warehouseCode) {
log.error("调用logpm-basicdata-api接口失败:getWarehouse {},{}", name, warehouseCode);
throw feignException;
}
@Override
public BasicdataWarehouseEntity getWarehouseByOldId(Integer id) {
log.error("调用logpm-basicdata-api接口失败:getWarehouseByOldId {}", id);
throw feignException;
}
@Override
public Long addWarehouse(BasicdataWarehouseEntity newEntity) {
log.error("调用logpm-basicdata-api接口失败:addWarehouse {}", newEntity);
throw feignException;
}
@Override
public BasicdataWarehouseEntity getWarehouseEntityByWarehouseCode(String warehouseCode) {
log.error("调用logpm-basicdata-api接口失败:getWarehouseEntityByWarehouseCode {}", warehouseCode);
throw feignException;
}
@Override
public List<BasicdataWarehouseEntity> getMyWarehouseList() {
log.error("调用logpm-basicdata-api接口失败:getMyWarehouseList ");
throw feignException;
}
@Override
public BasicdataWarehouseEntity preserveCurrentWarehouse(BasicdataWarehouseEntity warehouseEntity) {
log.error("调用logpm-basicdata-api接口失败:preserveCurrentWarehouse {}", warehouseEntity);
throw feignException;
}
@Override
public BasicdataWarehouseEntity getMyCurrentWarehouse() {
log.error("调用logpm-basicdata-api接口失败:getMyCurrentWarehouse ");
throw feignException;
}
@Override
public BasicdataWarehouseVO getMyCurrentWarehouseAndConfig() {
log.error("调用logpm-basicdata-api接口失败:getMyCurrentWarehouseAndConfig ");
throw feignException;
}
@Override
public List<Long> getWarehouseIds() {
log.error("调用logpm-basicdata-api接口失败:getWarehouseIds ");
throw feignException;
}
@Override
public List<BasicdataWarehouseEntity> getMyWatchWarehouse() {
log.error("调用logpm-basicdata-api接口失败:getMyWatchWarehouse ");
throw feignException;
}
@Override
public R clearWarehouseCache() {
log.error("调用logpm-basicdata-api接口失败:clearWarehouseCache ");
throw feignException;
}
@Override
public BasicdataWarehouseEntity getEntityWarehouseId(Long warehouseId) {
log.error("调用logpm-basicdata-api接口失败:getEntityWarehouseId {} ", warehouseId);
throw feignException;
}
@Override
public List<JSONObject> findWarehouseList(String warehouseName) {
log.error("调用logpm-basicdata-api接口失败:findWarehouseList {} ", warehouseName);
throw feignException;
}
@Override
public List<BasicdataWarehouseEntity> findAllList() {
log.error("调用logpm-basicdata-api接口失败:findAllList ");
throw feignException;
}
@Override
public List<BasicdataWarehouseEntity> findWarehousesByIds(List<Long> ids) {
log.error("调用logpm-basicdata-api接口失败:findWarehousesByIds {} ", ids);
throw feignException;
}
@Override
public Map<Long, String> findNamesMapByIds(List<Long> warehouseIds) {
log.error("调用logpm-basicdata-api接口失败:findNamesMapByIds {} ", warehouseIds);
throw feignException;
}
}

3
blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/vo/ExportWarehouseWaybillVO.java

@ -12,6 +12,9 @@ import java.util.Date;
@Data
public class ExportWarehouseWaybillVO implements Serializable {
@ExcelIgnore
private Long id;
@ExcelProperty(value = "运单号")
private String waybillNo;

31
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/feign/BasicdataWarehouseClient.java

@ -145,7 +145,7 @@ public class BasicdataWarehouseClient implements IBasicdataWarehouseClient {
@Override
public BasicdataWarehouseEntity preserveCurrentWarehouse(BasicdataWarehouseEntity warehouseEntity) {
warehouseWarehouseService.preserveCurrentMyWarehouse( warehouseEntity);
return null;
return warehouseEntity;
}
/**
@ -167,19 +167,24 @@ public class BasicdataWarehouseClient implements IBasicdataWarehouseClient {
public List<Long> getWarehouseIds() {
String a ="123";
String[] split = a.split("a");
String md = split[10];
// 仓库ID集合
List<Long> watermarkIds = new ArrayList<>();
// 增加仓库权限的限制
BasicdataWarehouseEntity myCurrentWarehouse = this.getMyCurrentWarehouse();
if (Objects.isNull(myCurrentWarehouse)) {
List<BasicdataWarehouseEntity> myWarehouseList = this.getMyWarehouseList();
myWarehouseList.forEach(warehouse -> {
watermarkIds.add(warehouse.getId());
});
} else {
watermarkIds.add(myCurrentWarehouse.getId());
}
return watermarkIds;
// List<Long> watermarkIds = new ArrayList<>();
// // 增加仓库权限的限制
// BasicdataWarehouseEntity myCurrentWarehouse = this.getMyCurrentWarehouse();
// if (Objects.isNull(myCurrentWarehouse)) {
// List<BasicdataWarehouseEntity> myWarehouseList = this.getMyWarehouseList();
// myWarehouseList.forEach(warehouse -> {
// watermarkIds.add(warehouse.getId());
// });
// } else {
// watermarkIds.add(myCurrentWarehouse.getId());
// }
return null;
}
@Override

14
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/config/GlobalExceptionHandler.java

@ -1,5 +1,6 @@
package com.logpm.distribution.config;
import org.springblade.common.exception.FeignException;
import org.springblade.core.tool.api.R;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
@ -24,4 +25,17 @@ public class GlobalExceptionHandler {
return new ResponseEntity<>(R.fail(400,errorMessage), HttpStatus.BAD_REQUEST);
}
/**
* 内部接口异常
* @param e
* @return
*/
@ExceptionHandler(FeignException.class)
public ResponseEntity<Object> handleFeignException(FeignException e) {
String errorMessage = e.getMessage();
return new ResponseEntity<>(R.fail(e.getCode(),errorMessage), HttpStatus.BAD_REQUEST);
}
}

11
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionStockArticleServiceImpl.java

@ -1019,15 +1019,8 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
// }
// }
List<Long> warehouseIdList = new ArrayList<>();
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse();
if (Func.isEmpty(myCurrentWarehouse)) {
List<BasicdataWarehouseEntity> myWarehouseList = warehouseClient.getMyWarehouseList();
List<Long> collect = myWarehouseList.stream().map(BasicdataWarehouseEntity::getId).collect(Collectors.toList());
warehouseIdList.addAll(collect);
} else {
warehouseIdList.add(myCurrentWarehouse.getId());
}
List<Long> warehouseIdList = warehouseClient.getWarehouseIds();
IPage<DistributionStockArticleEntity> distributionStockArticleEntityIPage = baseMapper.pageListOwe(page, stockArticleEntity, warehouseIdList);

15
blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/mapper/WarehouseWaybillMapper.xml

@ -181,12 +181,7 @@
lww.waybill_type waybillType,
lww.document_making_time documentMakingTime,
lww.create_time createTime,
GROUP_CONCAT( lwwd.product_name) goodsName,
GROUP_CONCAT( lwwd.num) productNum,
GROUP_CONCAT( lwwd.price) productPrice,
lww.total_count totalCount,
sum( lwwd.weight) totalWeight,
sum( lwwd.volume) totalVolume,
lww.cost_piece costPiece,
lww.cost_zhang costZhang,
lww.cost_num costNum,
@ -223,7 +218,6 @@
lww.check_user_name checkUserName,
lww.check_time checkTime
from logpm_warehouse_waybill lww
left join logpm_warehouse_waybill_detail lwwd on lwwd.waybill_id = lww.id and lwwd.is_deleted = 0
where lww.is_deleted = 0
and lww.abolish_status = 0
<if test="param.warehouseIds != null and param.warehouseIds.size() > 0">
@ -379,7 +373,6 @@
#{item}
</foreach>
</if>
group by lww.id
order by lww.create_time desc
</select>
@ -935,6 +928,7 @@
<select id="exportWaybillList" resultType="com.logpm.warehouse.vo.ExportWarehouseWaybillVO">
select
lww.id id,
lww.waybill_no waybillNo,
lww.order_no orderNo,
lww.remark remark,
@ -952,15 +946,10 @@
lww.consignee_address consigneeAddress,
lww.destination destination,
lww.departure departure,
GROUP_CONCAT(lwwd.product_name) goodsName,
GROUP_CONCAT(lwwd.num) productNum,
GROUP_CONCAT(lwwd.price) productPrice,
lww.cost_piece costPiece,
lww.cost_zhang costZhang,
lww.cost_num costNum,
lww.total_count totalCount,
sum(lwwd.weight) totalWeight,
sum(lwwd.volume) totalVolume,
lww.total_freight totalFreight,
lww.delivery_fee deliveryFee,
lww.pickup_fee pickupFee,
@ -1002,7 +991,6 @@
lww.document_making_time documentMakingTime,
lww.create_time createTime
from logpm_warehouse_waybill lww
left join logpm_warehouse_waybill_detail lwwd on lwwd.waybill_id = lww.id and lwwd.is_deleted = 0
where lww.is_deleted = 0
and lww.abolish_status = 0
<if test="param.warehouseIds != null and param.warehouseIds.size() > 0">
@ -1164,7 +1152,6 @@
#{item}
</foreach>
</if>
group by lww.id
order by lww.create_time desc
</select>

75
blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/service/impl/WarehouseWaybillServiceImpl.java

@ -710,6 +710,8 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
waybillDTO.setFreezeTimeEndDate(CommonUtil.getEndByDateStr(waybillDTO.getFreezeTimeEndStr()));
IPage<WarehouseWaybillVO> pageList = baseMapper.pageList(page, waybillDTO);
List<WarehouseWaybillVO> records = pageList.getRecords();
if (!records.isEmpty()) {
@ -718,10 +720,24 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
List<WarehouseWayBillDetail> wayBillDetailList = warehouseWayBillDetailService.findByWaybillIds(ids);
//把wayBillDetailList通过waibillId分组
Map<Long, List<WarehouseWayBillDetail>> map = wayBillDetailList.stream().collect(Collectors.groupingBy(WarehouseWayBillDetail::getWaybillId));
for (WarehouseWaybillVO record : records) {
Long waybillId = record.getId();
record.setDetailList(map.get(waybillId));
List<WarehouseWayBillDetail> warehouseWayBillDetails = map.get(waybillId);
// 将集合 warehouseWayBillDetails 中的productName 按照, 进行拼接
String productNames = warehouseWayBillDetails.stream().filter(s -> StringUtil.isNotBlank(s.getProductName())).map(WarehouseWayBillDetail::getProductName).collect(Collectors.joining(","));
record.setGoodsName(productNames);
String productNum = warehouseWayBillDetails.stream().filter(s -> !Objects.isNull(s.getNum())).map(s -> s.getNum().toString()).collect(Collectors.joining(","));
record.setProductNum(productNum);
String productPrice = warehouseWayBillDetails.stream().filter(s -> !Objects.isNull(s.getPrice())).map(s -> s.getPrice().toString()).collect(Collectors.joining(","));
record.setProductPrice(productPrice);
// 对集合中的weight 进行求和
BigDecimal sumWeight = warehouseWayBillDetails.stream().filter(s -> !Objects.isNull(s.getWeight())).map(WarehouseWayBillDetail::getWeight).reduce(BigDecimal.ZERO, BigDecimal::add);
record.setTotalWeight(sumWeight);
BigDecimal productVolume = warehouseWayBillDetails.stream().filter(s -> !Objects.isNull(s.getVolume())).map(WarehouseWayBillDetail::getVolume).reduce(BigDecimal.ZERO, BigDecimal::add);
record.setTotalVolume(productVolume);
record.setDetailList(warehouseWayBillDetails);
}
pageList.setRecords(records);
}
@ -804,7 +820,8 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
if (ObjectUtils.isNotEmpty(detailList)) {
// 得到需要打印的页面数量
int num = (int) Math.ceil((double) detailList.size() / 4);;
int num = (int) Math.ceil((double) detailList.size() / 4);
;
// int totalPages = (int) Math.ceil((double) totalItems / itemsPerPage);
@ -812,18 +829,17 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
// 需要从detailList每次循环获取到4个数据
List<WarehouseWayBillDetail> warehouseWayBillDetails = null;
if (i == num) {
warehouseWayBillDetails = detailList.subList((i-1) * 4, detailList.size());
warehouseWayBillDetails = detailList.subList((i - 1) * 4, detailList.size());
} else {
warehouseWayBillDetails = detailList.subList((i-1)* 4, 4);
warehouseWayBillDetails = detailList.subList((i - 1) * 4, 4);
}
if(!warehouseWayBillDetails.isEmpty()){
if (!warehouseWayBillDetails.isEmpty()) {
PrintPreviewVO printPreviewVO = buildPrintWallet(warehouseWaybillEntity, warehouseWayBillDetails, template,num,i);
PrintPreviewVO printPreviewVO = buildPrintWallet(warehouseWaybillEntity, warehouseWayBillDetails, template, num, i);
list.add(printPreviewVO);
}
}
}
stringListMap.put(s, list);
@ -888,7 +904,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
}
@Override
public List<ExportWarehouseWaybillVO> exportWaybillList(WarehouseWaybillDTO waybillDTO,List<Long> idsList) {
public List<ExportWarehouseWaybillVO> exportWaybillList(WarehouseWaybillDTO waybillDTO, List<Long> idsList) {
waybillDTO.setDocumentMakingTimeStartDate(CommonUtil.getStartByDateStr(waybillDTO.getDocumentMakingTimeStartStr()));
waybillDTO.setDocumentMakingTimeEndDate(CommonUtil.getEndByDateStr(waybillDTO.getDocumentMakingTimeEndStr()));
@ -899,25 +915,46 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
waybillDTO.setFreezeTimeStartDate(CommonUtil.getStartByDateStr(waybillDTO.getFreezeTimeStartStr()));
waybillDTO.setFreezeTimeEndDate(CommonUtil.getEndByDateStr(waybillDTO.getFreezeTimeEndStr()));
List<ExportWarehouseWaybillVO> list = baseMapper.exportWaybillList(waybillDTO,idsList);
List<ExportWarehouseWaybillVO> list = baseMapper.exportWaybillList(waybillDTO, idsList);
List<Long> ids = list.stream().map(ExportWarehouseWaybillVO::getId).collect(Collectors.toList());
List<WarehouseWayBillDetail> wayBillDetailList = warehouseWayBillDetailService.findByWaybillIds(ids);
Map<Long, List<WarehouseWayBillDetail>> map = wayBillDetailList.stream().collect(Collectors.groupingBy(WarehouseWayBillDetail::getWaybillId));
list.forEach(item -> {
List<WarehouseWayBillDetail> warehouseWayBillDetails = map.get(item.getId());
item.setPayType(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_PAY_TYPE, item.getPayType()));
item.setPayWay(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_PAY_WAY, item.getPayWay()));
item.setDeliveryWay(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_DELIVERY_WAY, item.getDeliveryWay()));
item.setUrgency(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_URGENCY, item.getUrgency()));
item.setTransportType(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_TRANSPORT_TYPE, item.getTransportType()));
item.setPickupCompleteOrNotStr(Objects.isNull(item.getPickupCompleteOrNot())?"否":item.getPickupCompleteOrNot() == 1 ? "是" : "否");
item.setTrunklineCompleteOrNotStr(Objects.isNull(item.getTrunklineCompleteOrNot())?"否":item.getTrunklineCompleteOrNot() == 1 ? "是" : "否");
item.setPickupCompleteOrNotStr(Objects.isNull(item.getPickupCompleteOrNot()) ? "否" : item.getPickupCompleteOrNot() == 1 ? "是" : "否");
item.setTrunklineCompleteOrNotStr(Objects.isNull(item.getTrunklineCompleteOrNot()) ? "否" : item.getTrunklineCompleteOrNot() == 1 ? "是" : "否");
item.setWaybillStatus(WaybillStatusEnum.getValue(item.getWaybillStatus()));
item.setFreezeStatusStr(Objects.isNull(item.getFreezeStatus())?"否":item.getFreezeStatus() == 1 ? "是" : "否");
item.setAbolishStatusStr(Objects.isNull(item.getAbolishStatus())?"否":item.getAbolishStatus() == 1 ? "是" : "否");
item.setFreezeStatusStr(Objects.isNull(item.getFreezeStatus()) ? "否" : item.getFreezeStatus() == 1 ? "是" : "否");
item.setAbolishStatusStr(Objects.isNull(item.getAbolishStatus()) ? "否" : item.getAbolishStatus() == 1 ? "是" : "否");
if (warehouseWayBillDetails != null) {
// 将集合 warehouseWayBillDetails 中的productName 按照, 进行拼接
String productNames = warehouseWayBillDetails.stream().filter(s -> StringUtil.isNotBlank(s.getProductName())).map(WarehouseWayBillDetail::getProductName).collect(Collectors.joining(","));
item.setGoodsName(productNames);
String productNum = warehouseWayBillDetails.stream().filter(s -> !Objects.isNull(s.getNum())).map(s -> s.getNum().toString()).collect(Collectors.joining(","));
item.setProductNum(productNum);
String productPrice = warehouseWayBillDetails.stream().filter(s -> !Objects.isNull(s.getPrice())).map(s -> s.getPrice().toString()).collect(Collectors.joining(","));
item.setProductPrice(productPrice);
// 对集合中的weight 进行求和
BigDecimal sumWeight = warehouseWayBillDetails.stream().filter(s -> !Objects.isNull(s.getWeight())).map(WarehouseWayBillDetail::getWeight).reduce(BigDecimal.ZERO, BigDecimal::add);
item.setTotalWeight(sumWeight);
BigDecimal productVolume = warehouseWayBillDetails.stream().filter(s -> !Objects.isNull(s.getVolume())).map(WarehouseWayBillDetail::getVolume).reduce(BigDecimal.ZERO, BigDecimal::add);
item.setTotalVolume(productVolume);
}
});
return list;
}
private PrintPreviewVO buildPrintWallet(WarehouseWaybillEntity warehouseWaybillEntity, List<WarehouseWayBillDetail> warehouseWayBillDetails, BasicPrintTemplateEntity template,int total,int num) throws Exception {
private PrintPreviewVO buildPrintWallet(WarehouseWaybillEntity warehouseWaybillEntity, List<WarehouseWayBillDetail> warehouseWayBillDetails, BasicPrintTemplateEntity template, int total, int num) throws Exception {
PrintPreviewVO printPreviewVO = new PrintPreviewVO();
String html = TemplateUtil.getTemplateByUrl(template.getTemplateUrl());
@ -984,9 +1021,9 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
BigDecimal weight = warehouseWayBillDetail.getWeight();
BigDecimal volume = warehouseWayBillDetail.getVolume();
t.put("重量", NumberUtil.equals(weight, BigDecimal.ZERO)?"":weight.toString());
t.put("重量", NumberUtil.equals(weight, BigDecimal.ZERO) ? "" : weight.toString());
sumWEIGHT = sumWEIGHT.add(warehouseWayBillDetail.getWeight());
t.put("体积", NumberUtil.equals(volume, BigDecimal.ZERO)?"":volume.toString());
t.put("体积", NumberUtil.equals(volume, BigDecimal.ZERO) ? "" : volume.toString());
sumVOLUME = sumVOLUME.add(warehouseWayBillDetail.getVolume());
ls.add(t);
}
@ -1010,7 +1047,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
if (ObjectUtil.isNull(value)) {
return "";
}
if(NumberUtil.equals(value, BigDecimal.ZERO)){
if (NumberUtil.equals(value, BigDecimal.ZERO)) {
return "";
}

Loading…
Cancel
Save