|
@@ -1,15 +1,24 @@
|
|
package com.ruoyi.asset.controller;
|
|
package com.ruoyi.asset.controller;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
|
|
+import java.util.Arrays;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
+import javax.annotation.Resource;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
+import cn.hutool.core.util.ObjectUtil;
|
|
import cn.hutool.core.util.StrUtil;
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
+import cn.hutool.json.JSONUtil;
|
|
import com.ruoyi.asset.domain.TbLocation;
|
|
import com.ruoyi.asset.domain.TbLocation;
|
|
|
|
+import com.ruoyi.asset.domain.dto.PrintDTO;
|
|
import com.ruoyi.common.core.domain.entity.SysDept;
|
|
import com.ruoyi.common.core.domain.entity.SysDept;
|
|
|
|
+import com.ruoyi.label.domain.TbLabelModelInfo;
|
|
|
|
+import com.ruoyi.label.service.ITbLabelModelInfoService;
|
|
import com.ruoyi.ptxlib.domain.PTXLabelCode;
|
|
import com.ruoyi.ptxlib.domain.PTXLabelCode;
|
|
import com.ruoyi.ptxlib.domain.PTXLabelInfo;
|
|
import com.ruoyi.ptxlib.domain.PTXLabelInfo;
|
|
import com.ruoyi.ptxlib.domain.PTXLabelText;
|
|
import com.ruoyi.ptxlib.domain.PTXLabelText;
|
|
|
|
+import com.ruoyi.ptxlib.service.impl.PTXService;
|
|
import org.springframework.data.redis.core.RedisTemplate;
|
|
import org.springframework.data.redis.core.RedisTemplate;
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -78,67 +87,46 @@ public class TbAssetInformationController extends BaseController
|
|
return success(tbAssetInformationService.selectTbAssetInformationById(id));
|
|
return success(tbAssetInformationService.selectTbAssetInformationById(id));
|
|
}
|
|
}
|
|
|
|
|
|
- public AjaxResult print(TbAssetInformation tbAssetInformation) {
|
|
|
|
- List<TbAssetInformation> tbAssetInformationList = tbAssetInformationService.selectInfoList(tbAssetInformation);
|
|
|
|
|
|
+ @Resource
|
|
|
|
+ private PTXService ptxService;
|
|
|
|
+
|
|
|
|
+ @Resource
|
|
|
|
+ private ITbLabelModelInfoService labelModelInfoService;
|
|
|
|
+
|
|
|
|
+ @PostMapping("/print")
|
|
|
|
+ public AjaxResult print(@RequestBody PrintDTO printDTO) {
|
|
|
|
+ List<Long> ids = printDTO.getIds();
|
|
|
|
+ List<TbAssetInformation> tbAssetInformationList = tbAssetInformationService.selectTbAssetInformationByIds(ids);
|
|
|
|
+ if (tbAssetInformationList.isEmpty()) {
|
|
|
|
+ return AjaxResult.error("资产信息不存在");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ String labelCode = printDTO.getLabelCode();
|
|
|
|
+ TbLabelModelInfo tbLabelModelInfo = labelModelInfoService.selectTbLabelModelByLabelCode(labelCode);
|
|
|
|
+ if (tbLabelModelInfo == null) {
|
|
|
|
+ return AjaxResult.error("标签模板不存在");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /*
|
|
|
|
+ * Java赋值为引用赋值,更改赋值对象数据,也会影响到原对象!
|
|
|
|
+ * 解决方案一:深度拷贝
|
|
|
|
+ * 解决方案二:将原对象转为json字符串,用到时转回来给新的对象赋值*/
|
|
|
|
+
|
|
|
|
+ String ptxLabelInfoModel = tbLabelModelInfo.getLabelValue();
|
|
|
|
+
|
|
List<PTXLabelInfo> ptxLabelInfos = new ArrayList<>();
|
|
List<PTXLabelInfo> ptxLabelInfos = new ArrayList<>();
|
|
|
|
+ for (TbAssetInformation tbAssetInformation : tbAssetInformationList) {
|
|
|
|
+ // 然后再转回对象,便不会影响到原对象
|
|
|
|
+ PTXLabelInfo ptxLabelInfo = JSONUtil.toBean(ptxLabelInfoModel, PTXLabelInfo.class);
|
|
|
|
+ ptxLabelInfo = ptxService.filterInfo(ptxLabelInfo, tbAssetInformation);
|
|
|
|
+ ptxLabelInfos.add(ptxLabelInfo);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ for (PTXLabelInfo ptxLabelInfo : ptxLabelInfos) {
|
|
|
|
+ ptxService.printLabel(ptxLabelInfo);
|
|
|
|
+ }
|
|
|
|
|
|
-// for (TbAssetInformation assetInformation : tbAssetInformationList) {
|
|
|
|
-// PTXLabelInfo labelInfo = new PTXLabelInfo();
|
|
|
|
-// // 连接打印机
|
|
|
|
-// labelInfo.setConnectType(0);
|
|
|
|
-// labelInfo.setPrinterName("USB");
|
|
|
|
-// // 字体加粗
|
|
|
|
-// labelInfo.setIsBold(true);
|
|
|
|
-//
|
|
|
|
-// String assetNumber = assetInformation.getNumber();
|
|
|
|
-// String locationNumber = assetInformation.getLocationNumber();
|
|
|
|
-// TbLocation tbLocation = locationService.selectTbLocationByNumber(locationNumber);
|
|
|
|
-// String locationName = tbLocation.getName();
|
|
|
|
-// String assetName = assetInformation.getName();
|
|
|
|
-// String department = assetInformation.getDepartment();
|
|
|
|
-// long deptId = Long.parseLong(department);
|
|
|
|
-// SysDept sysDept = sysDeptService.selectDeptById(deptId);
|
|
|
|
-// String deptName = sysDept.getDeptName();
|
|
|
|
-// String assetModel = assetInformation.getSpecificationsModel();
|
|
|
|
-// if (StrUtil.isBlank(assetModel)) {
|
|
|
|
-// assetModel = "无";
|
|
|
|
-// }
|
|
|
|
-//
|
|
|
|
-// // 写入epc
|
|
|
|
-// labelInfo.setEpc(assetNumber);
|
|
|
|
-//
|
|
|
|
-// // 定义标题
|
|
|
|
-// PTXLabelText title = new PTXLabelText(1, 80, 140, 60, 15, 15, "固定资产标识卡");
|
|
|
|
-// // 定义资产编号
|
|
|
|
-// PTXLabelText number = new PTXLabelText(1, 80, 10, 145, 10, 10, "资产编号:" + assetNumber);
|
|
|
|
-// // 定义资产名称
|
|
|
|
-// PTXLabelText name = new PTXLabelText(1, 80, 10, 205, 10, 10, "资产名称:" + assetName);
|
|
|
|
-// // 定义存放地点
|
|
|
|
-// PTXLabelText location = new PTXLabelText(1, 80, 450, 205, 10, 10, "存放地点:" + locationName);
|
|
|
|
-// // 定义使用部门
|
|
|
|
-// PTXLabelText dept = new PTXLabelText(1, 80, 10, 265, 10, 10, "使用部门:" + deptName);
|
|
|
|
-// // 定义规格型号
|
|
|
|
-// PTXLabelText model = new PTXLabelText(1, 80, 450, 265, 10, 10, "规格型号:" + assetModel);
|
|
|
|
-// // 定义存放地点二维码
|
|
|
|
-// PTXLabelCode code = new PTXLabelCode(2, 80, 140, 355, 10, locationNumber);
|
|
|
|
-//
|
|
|
|
-// List<PTXLabelText> ptxLabelTexts = new ArrayList<>();
|
|
|
|
-// ptxLabelTexts.add(title);
|
|
|
|
-// ptxLabelTexts.add(number);
|
|
|
|
-// ptxLabelTexts.add(name);
|
|
|
|
-// ptxLabelTexts.add(location);
|
|
|
|
-// ptxLabelTexts.add(dept);
|
|
|
|
-// ptxLabelTexts.add(model);
|
|
|
|
-//
|
|
|
|
-// List<PTXLabelCode> ptxLabelCodes = new ArrayList<>();
|
|
|
|
-// ptxLabelCodes.add(code);
|
|
|
|
-//
|
|
|
|
-// labelInfo.setPtxLabelTexts(ptxLabelTexts);
|
|
|
|
-// labelInfo.setPtxLabelCodes(ptxLabelCodes);
|
|
|
|
-//
|
|
|
|
-// ptxService.printLabel(labelInfo);
|
|
|
|
-// }
|
|
|
|
- return null;
|
|
|
|
|
|
+ return AjaxResult.success(ptxLabelInfos);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|