Browse Source

APP根据标签头和版本号查询主信息以及子信息集合

master
songguoqiang 2 years ago
parent
commit
8cb28c3fda
  1. 3
      win-module-wms/win-module-wms-biz/src/main/java/com/win/module/wms/controller/labeltype/LabeltypeController.java

3
win-module-wms/win-module-wms-biz/src/main/java/com/win/module/wms/controller/labeltype/LabeltypeController.java

@ -139,6 +139,9 @@ public class LabeltypeController {
LabeltypeDO labeltypeDO = labeltypeService.getOneLabelByHeader(LabeltypeRespVO);
LabeltypeRespVO result = LabeltypeConvert.INSTANCE.convert(labeltypeDO);
BarcodeExportReqVO barcodeExportReqVO = new BarcodeExportReqVO();
if(result==null) {
return success(result);
};
barcodeExportReqVO.setMasterId(result.getId());
List<BarcodeDO> barcodeList = barcodeService.getBarcodeList(barcodeExportReqVO);
List<BarcodeExcelVO> datas = BarcodeConvert.INSTANCE.convertList02(barcodeList);

Loading…
Cancel
Save