Browse Source

完善app上架

master
fanzongzhe 11 months ago
parent
commit
76c7bad79b
  1. 3
      yxt-wms-biz/src/main/java/com/yxt/wms/biz/inventory/wmsshelfbill/WmsShelfBillService.java

3
yxt-wms-biz/src/main/java/com/yxt/wms/biz/inventory/wmsshelfbill/WmsShelfBillService.java

@ -775,6 +775,9 @@ public class WmsShelfBillService extends MybatisBaseService<WmsShelfBillMapper,
AppDetailsVo.AppDetailsListVo dVo = new AppDetailsVo.AppDetailsListVo();
BeanUtil.copyProperties(detail, dVo);
dVo.setGoodsName(detail.getGoodsSpuName());
if (null != detail.getCount()) {
dVo.setCount(String.valueOf(detail.getCount().intValue()));
}
BigDecimal count = new BigDecimal("0");
BigDecimal acCount = new BigDecimal("0");
if (null != detail.getCount()) {

Loading…
Cancel
Save