Browse Source

新增打印机接口

LinWuTai 1 year ago
parent
commit
e7a967f553

+ 17 - 2
ruoyi-admin/src/main/java/com/ruoyi/ptxlib/WindowsFormApp.java

@@ -1,11 +1,12 @@
 package com.ruoyi.ptxlib;
 
+import com.ruoyi.ptxlib.domain.PTXLabelInfo;
 import com.ruoyi.ptxlib.domain.PTXLabelText;
 import com.ruoyi.ptxlib.service.PTXLib;
 import com.ruoyi.ptxlib.service.impl.PTXService;
 
 public class WindowsFormApp {
-    public static void main(String[] args) {
+    private void test() {
         PTXService ptxService = new PTXService();
 
         String EPC = "10ac0002";
@@ -23,7 +24,7 @@ public class WindowsFormApp {
         ptxService.setBold(true);
 
         // 使用中文字体进行打印,可选配字库卡
-        ptxService.printText(new PTXLabelText(80, 10, 35,10,10,"简体中文测试test"));
+        // ptxService.printText(new PTXLabelText(80, 10, 35,10,10,"简体中文测试test"));
 
         // ptxService.writeRFID(EPC);
 
@@ -34,4 +35,18 @@ public class WindowsFormApp {
 
         PTXLib.INSTANCE.closeport();
     }
+
+    public static void main(String[] args) {
+        PTXLabelInfo ptxLabelInfo = new PTXLabelInfo();
+        ptxLabelInfo.setPid(300);
+        ptxLabelInfo.setConnectType(0);
+        ptxLabelInfo.setPrinterName("USB");
+
+        PTXService ptxService = new PTXService();
+        for (int i = 0; i < 3; i++) {
+            String epc = "10AC012";
+            ptxLabelInfo.setEpc(epc + i);
+            ptxService.printLabel(ptxLabelInfo);
+        }
+    }
 }

+ 81 - 0
ruoyi-admin/src/main/java/com/ruoyi/ptxlib/controller/PTXController.java

@@ -1,12 +1,23 @@
 package com.ruoyi.ptxlib.controller;
 
+import cn.hutool.core.util.StrUtil;
+import com.ruoyi.asset.domain.TbAssetInformation;
+import com.ruoyi.asset.domain.TbLocation;
+import com.ruoyi.asset.service.ITbAssetInformationService;
+import com.ruoyi.asset.service.ITbLocationService;
 import com.ruoyi.common.core.controller.BaseController;
 import com.ruoyi.common.core.domain.AjaxResult;
+import com.ruoyi.common.core.domain.entity.SysDept;
+import com.ruoyi.ptxlib.domain.PTXLabelCode;
 import com.ruoyi.ptxlib.domain.PTXLabelInfo;
+import com.ruoyi.ptxlib.domain.PTXLabelText;
 import com.ruoyi.ptxlib.service.impl.PTXService;
+import com.ruoyi.system.service.ISysDeptService;
 import org.springframework.web.bind.annotation.*;
 
 import javax.annotation.Resource;
+import java.util.ArrayList;
+import java.util.List;
 
 @RestController
 @RequestMapping("/print")
@@ -14,9 +25,79 @@ public class PTXController extends BaseController {
     @Resource
     private PTXService ptxService;
 
+    @Resource
+    private ITbAssetInformationService assetInformationService;
+
+    @Resource
+    private ITbLocationService locationService;
+
+    @Resource
+    private ISysDeptService sysDeptService;
+
     @PostMapping
     public AjaxResult print(@RequestBody PTXLabelInfo ptxLabelInfo) {
         ptxService.printLabel(ptxLabelInfo);
         return success();
     }
+
+    @GetMapping
+    public AjaxResult print2() {
+        PTXLabelInfo labelInfo = new PTXLabelInfo();
+        // 连接打印机
+        labelInfo.setConnectType(0);
+        labelInfo.setPrinterName("USB");
+        // 字体加粗
+        labelInfo.setIsBold(true);
+
+        TbAssetInformation tbAssetInformation = assetInformationService.selectTbAssetInformationById(4L);
+        String assetNumber = tbAssetInformation.getNumber();
+        String locationNumber = tbAssetInformation.getLocationNumber();
+        TbLocation tbLocation = locationService.selectTbLocationByNumber(locationNumber);
+        String locationName = tbLocation.getName();
+        String assetName = tbAssetInformation.getName();
+        String department = tbAssetInformation.getDepartment();
+        long deptId = Long.parseLong(department);
+        SysDept sysDept = sysDeptService.selectDeptById(deptId);
+        String deptName = sysDept.getDeptName();
+        String assetModel = tbAssetInformation.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 success();
+    }
 }

+ 28 - 5
ruoyi-admin/src/main/java/com/ruoyi/ptxlib/domain/PTXLabelCode.java

@@ -4,16 +4,16 @@ import lombok.Data;
 
 @Data
 public class PTXLabelCode {
-    /** 二维码类型 1:条码 2:二维码 */
+    /** 二维码类型 1:条码 2:二维码 */
     private Integer codeType;
 
     /** 标签间距 */
     private Integer spaceBetween;
 
-    /** x坐标 */
+    /** x坐标 10 = 4毫米 */
     private Integer X;
 
-    /** y坐标 最小为 标签间距 / 2 - 5  */
+    /** y坐标 10 = 1毫米 最小为 标签间距 / 2 - 5  */
     private Integer Y;
 
     /** 宽度<br/>
@@ -27,12 +27,35 @@ public class PTXLabelCode {
      * */
     private String data;
 
-    /** 条码下是否显示文字  */
+    /** 条码下是否显示文字  */
     private Boolean isShowText;
 
-    /** 条码高度<br/>
+    /** 条码高度<br/>
      *  单位为0.1英寸<br/>
      *  包含码文是最小为4,不包含码文是最小为3,最大99
      * */
     private Double height;
+
+    public PTXLabelCode() {
+    }
+
+    public PTXLabelCode(Integer codeType, Integer spaceBetween, Integer x, Integer y, Integer width, String data) {
+        this.codeType = codeType;
+        this.spaceBetween = spaceBetween;
+        this.X = x;
+        this.Y = y;
+        this.width = width;
+        this.data = data;
+    }
+
+    public PTXLabelCode(Integer codeType, Integer spaceBetween, Integer x, Integer y, Integer width, String data, Boolean isShowText, Double height) {
+        this.codeType = codeType;
+        this.spaceBetween = spaceBetween;
+        this.X = x;
+        this.Y = y;
+        this.width = width;
+        this.data = data;
+        this.isShowText = isShowText;
+        this.height = height;
+    }
 }

+ 11 - 10
ruoyi-admin/src/main/java/com/ruoyi/ptxlib/domain/PTXLabelText.java

@@ -15,16 +15,16 @@ public class PTXLabelText {
     /** 标签间距 */
     private Integer spaceBetween;
 
-    /** x坐标 */
+    /** x坐标 10 = 4毫米 */
     private Integer x;
 
     /** y坐标 最小为 标签间距 / 2 - 5 */
     private Integer y;
 
-    /** x轴垂直扩展 */
+    /** x轴垂直扩展 10 = 3毫米 */
     private Integer xLineHeight;
 
-    /** y轴垂直扩展 */
+    /** y轴垂直扩展 10 = 3毫米 */
     private Integer yLineHeight;
 
     /** 打印的数据 */
@@ -36,23 +36,24 @@ public class PTXLabelText {
     public PTXLabelText() {
     }
 
-    public PTXLabelText(Integer spaceBetween, Integer x, Integer y, Integer XLineHeight, Integer YLineHeight, String printData) {
+    public PTXLabelText(Integer textType, Integer spaceBetween, Integer x, Integer y, Integer xLineHeight, Integer yLineHeight, String printData) {
+        this.textType = textType;
         this.spaceBetween = spaceBetween;
         this.x = x;
         this.y = y;
-        this.xLineHeight = XLineHeight;
-        this.yLineHeight = YLineHeight;
+        this.xLineHeight = xLineHeight;
+        this.yLineHeight = yLineHeight;
         this.printData = printData;
     }
 
-    public PTXLabelText(Integer spaceBetween, Integer x, Integer y, Integer XLineHeight, Integer YLineHeight, String printData, String tffFileName) {
+    public PTXLabelText(Integer textType, Integer spaceBetween, Integer x, Integer y, Integer xLineHeight, Integer yLineHeight, String printData, String tffFileName) {
+        this.textType = textType;
         this.spaceBetween = spaceBetween;
         this.x = x;
         this.y = y;
-        this.xLineHeight = XLineHeight;
-        this.yLineHeight = YLineHeight;
+        this.xLineHeight = xLineHeight;
+        this.yLineHeight = yLineHeight;
         this.printData = printData;
         this.tffFileName = tffFileName;
     }
-
 }

+ 2 - 3
ruoyi-admin/src/main/java/com/ruoyi/ptxlib/service/impl/PTXService.java

@@ -10,7 +10,6 @@ import org.springframework.stereotype.Service;
 import java.nio.charset.StandardCharsets;
 import java.util.List;
 
-import static com.ruoyi.ptxlib.constant.PTXConstants.MaxLabelWidth;
 import static com.ruoyi.ptxlib.constant.PTXConstants.MaxPrintWidth;
 
 @Service
@@ -211,10 +210,10 @@ public class PTXService {
      */
     public void printTextEn(Integer X, Integer Y, Integer VE, Integer he, String data)
     {
-        String cmd = "ALPHA\r\nPOINT;"+Y+";"+X+";"+VE+";"+he+";*"+data+"*\r\nSTOP\r\n";//仅可用来打印英文及数字,如打印内容中包含*,请修改data前后的*,变为内容中不会包含的符号
+        String cmd = "ALPHA\r\nPOINT;"+Y+";"+X+";"+VE+";"+he+";*"+data+"*\r\nSTOP\r\n"; // 仅可用来打印英文及数字,如打印内容中包含*,请修改data前后的*,变为内容中不会包含的符号
         //PTXLIBDLL.INSTANCE.sendcommand(cmd);
 
-        byte[] data1 = new byte[1024];
+        byte[] data1;
         data1=cmd.getBytes(StandardCharsets.UTF_8);
         PTXLib.INSTANCE.sendBinaryDataNoCRLF(data1,data1.length);
     }