Browse Source

fix:修复待签收列表导出所有仓库的数据bug-4

pull/2/head
pref_mail@163.com 7 months ago
parent
commit
91e2088292
  1. 7
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionSignforServiceImpl.java

7
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionSignforServiceImpl.java

@ -1827,9 +1827,12 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
// distributionSignfor.setTypeName(DictCache.getValue(DictEnum.YES_NO, DistributionSignfor.getType()));
DistributionSignforExcel signforExcel = new DistributionSignforExcel();
BeanUtils.copyProperties(d, signforExcel);
signforExcel.setOrderCode(d.getStockArticleId());
signforExcel.setDeliveryTime(d.getLoadingTime());
// signforExcel.setConsignee();
// String value = DictBizCache.getValue(DictBizConstant.DISTRIBUTION_TYPE, d.getDeliveryType());
// signforExcel.setDeliveryTypeName(value);
String value = DictBizCache.getValue(DictBizConstant.DISTRIBUTION_TYPE, d.getDeliveryType());
signforExcel.setDeliveryTypeName(value);
String value1 = DictBizCache.getValue(DictBizConstant.DISTRIBUTION_SIGNFOR_STATUS, d.getSigningStatus());
signforExcel.setSigningStatusName(value1);
String value2 = DictBizCache.getValue(DictBizConstant.DISTRIBUTION_SIGNFOR_STATUS, d.getDriverSigning());

Loading…
Cancel
Save