فهرست منبع

新增打印标签功能;新增标签模板表

LinWuTai 1 سال پیش
والد
کامیت
0fd19849ef
24فایلهای تغییر یافته به همراه1206 افزوده شده و 60 حذف شده
  1. 47 59
      ruoyi-admin/src/main/java/com/ruoyi/asset/controller/TbAssetInformationController.java
  2. 11 0
      ruoyi-admin/src/main/java/com/ruoyi/asset/domain/dto/PrintDTO.java
  3. 2 0
      ruoyi-admin/src/main/java/com/ruoyi/asset/mapper/TbAssetInformationMapper.java
  4. 3 0
      ruoyi-admin/src/main/java/com/ruoyi/asset/service/ITbAssetInformationService.java
  5. 5 0
      ruoyi-admin/src/main/java/com/ruoyi/asset/service/impl/TbAssetInformationServiceImpl.java
  6. 1 0
      ruoyi-admin/src/main/java/com/ruoyi/inventory/service/impl/TbAssetInventoryServiceImpl.java
  7. 121 0
      ruoyi-admin/src/main/java/com/ruoyi/label/controller/TbLabelModelInfoController.java
  8. 85 0
      ruoyi-admin/src/main/java/com/ruoyi/label/domain/TbLabelModelInfo.java
  9. 63 0
      ruoyi-admin/src/main/java/com/ruoyi/label/mapper/TbLabelModelInfoMapper.java
  10. 63 0
      ruoyi-admin/src/main/java/com/ruoyi/label/service/ITbLabelModelInfoService.java
  11. 106 0
      ruoyi-admin/src/main/java/com/ruoyi/label/service/impl/TbLabelModelInfoServiceImpl.java
  12. 62 0
      ruoyi-admin/src/main/java/com/ruoyi/ptxlib/controller/PTXController.java
  13. 1 0
      ruoyi-admin/src/main/java/com/ruoyi/ptxlib/service/PTXLib.java
  14. 41 0
      ruoyi-admin/src/main/java/com/ruoyi/ptxlib/service/impl/PTXService.java
  15. 9 0
      ruoyi-admin/src/main/resources/mapper/asset/TbAssetInformationMapper.xml
  16. 91 0
      ruoyi-admin/src/main/resources/mapper/label/TbLabelModelInfoMapper.xml
  17. 49 0
      ruoyi-common/src/main/java/com/ruoyi/common/utils/MyUtils.java
  18. 2 0
      ruoyi-ui/package.json
  19. 9 0
      ruoyi-ui/src/api/asset/information.js
  20. 52 0
      ruoyi-ui/src/api/label/labelModel.js
  21. 7 0
      ruoyi-ui/src/main.js
  22. 74 1
      ruoyi-ui/src/views/asset/information/index.vue
  23. 290 0
      ruoyi-ui/src/views/label/labelModel/index.vue
  24. 12 0
      sql/rfid-hotel-manager.sql

+ 47 - 59
ruoyi-admin/src/main/java/com/ruoyi/asset/controller/TbAssetInformationController.java

@@ -1,15 +1,24 @@
 package com.ruoyi.asset.controller;
 
 import java.util.ArrayList;
+import java.util.Arrays;
 import java.util.List;
+import java.util.stream.Collectors;
+import javax.annotation.Resource;
 import javax.servlet.http.HttpServletResponse;
 
+import cn.hutool.core.util.ObjectUtil;
 import cn.hutool.core.util.StrUtil;
+import cn.hutool.json.JSONUtil;
 import com.ruoyi.asset.domain.TbLocation;
+import com.ruoyi.asset.domain.dto.PrintDTO;
 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.PTXLabelInfo;
 import com.ruoyi.ptxlib.domain.PTXLabelText;
+import com.ruoyi.ptxlib.service.impl.PTXService;
 import org.springframework.data.redis.core.RedisTemplate;
 import org.springframework.security.access.prepost.PreAuthorize;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -78,67 +87,46 @@ public class TbAssetInformationController extends BaseController
         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<>();
+        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);
     }
 
     /**

+ 11 - 0
ruoyi-admin/src/main/java/com/ruoyi/asset/domain/dto/PrintDTO.java

@@ -0,0 +1,11 @@
+package com.ruoyi.asset.domain.dto;
+
+import lombok.Data;
+
+import java.util.List;
+
+@Data
+public class PrintDTO {
+    private List<Long> ids;
+    private String labelCode;
+}

+ 2 - 0
ruoyi-admin/src/main/java/com/ruoyi/asset/mapper/TbAssetInformationMapper.java

@@ -21,6 +21,8 @@ public interface TbAssetInformationMapper
      */
     public TbAssetInformation selectTbAssetInformationById(Long id);
 
+    List<TbAssetInformation> selectTbAssetInformationByIds(List<Long> ids);
+
     /**
      * 查询资产信息
      *

+ 3 - 0
ruoyi-admin/src/main/java/com/ruoyi/asset/service/ITbAssetInformationService.java

@@ -1,6 +1,7 @@
 package com.ruoyi.asset.service;
 
 import java.util.List;
+
 import com.ruoyi.asset.domain.TbAssetInformation;
 
 /**
@@ -19,6 +20,8 @@ public interface ITbAssetInformationService
      */
     public TbAssetInformation selectTbAssetInformationById(Long id);
 
+    List<TbAssetInformation> selectTbAssetInformationByIds(List<Long> ids);
+
     /**
      * 查询资产信息
      *

+ 5 - 0
ruoyi-admin/src/main/java/com/ruoyi/asset/service/impl/TbAssetInformationServiceImpl.java

@@ -65,6 +65,11 @@ public class TbAssetInformationServiceImpl implements ITbAssetInformationService
     }
 
     @Override
+    public List<TbAssetInformation> selectTbAssetInformationByIds(List<Long> ids) {
+        return tbAssetInformationMapper.selectTbAssetInformationByIds(ids);
+    }
+
+    @Override
     public TbAssetInformation selectTbAssetAdjustmentByAssetNumber(String assetNumber) {
         return tbAssetInformationMapper.selectTbAssetInformationByAssetNumber(assetNumber);
     }

+ 1 - 0
ruoyi-admin/src/main/java/com/ruoyi/inventory/service/impl/TbAssetInventoryServiceImpl.java

@@ -58,6 +58,7 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
         return tbAssetInventoryMapper.selectTbAssetInventoryById(id);
     }
 
+
     @Override
     public TbAssetInventory selectTbAssetInventoryByNum(String num) {
         return tbAssetInventoryMapper.selectTbAssetInventoryByNumber(num);

+ 121 - 0
ruoyi-admin/src/main/java/com/ruoyi/label/controller/TbLabelModelInfoController.java

@@ -0,0 +1,121 @@
+package com.ruoyi.label.controller;
+
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.stream.Collectors;
+import javax.servlet.http.HttpServletResponse;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+import com.ruoyi.common.annotation.Log;
+import com.ruoyi.common.core.controller.BaseController;
+import com.ruoyi.common.core.domain.AjaxResult;
+import com.ruoyi.common.enums.BusinessType;
+import com.ruoyi.label.domain.TbLabelModelInfo;
+import com.ruoyi.label.service.ITbLabelModelInfoService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 标签模板信息Controller
+ * 
+ * @author 原动力
+ * @date 2023-11-24
+ */
+@RestController
+@RequestMapping("/label/labelModel")
+public class TbLabelModelInfoController extends BaseController
+{
+    @Autowired
+    private ITbLabelModelInfoService tbLabelModelInfoService;
+
+    /**
+     * 查询标签模板信息列表
+     */
+    @PreAuthorize("@ss.hasPermi('label:labelModel:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(TbLabelModelInfo tbLabelModelInfo)
+    {
+        startPage();
+        List<TbLabelModelInfo> list = tbLabelModelInfoService.selectTbLabelModelInfoList(tbLabelModelInfo);
+        return getDataTable(list);
+    }
+
+    @PreAuthorize("@ss.hasPermi('label:labelModel:query')")
+    @GetMapping("/select")
+    public AjaxResult select()
+    {
+        List<TbLabelModelInfo> list = tbLabelModelInfoService.selectTbLabelModelInfoList(null);
+        List<Map<String, String>> select = list.stream().map(item -> {
+            Map<String, String> map = new HashMap<>();
+            map.put("label", item.getName());
+            map.put("value", item.getLabelCode());
+            return map;
+        }).collect(Collectors.toList());
+        return AjaxResult.success(select);
+    }
+
+    /**
+     * 导出标签模板信息列表
+     */
+    @PreAuthorize("@ss.hasPermi('label:labelModel:export')")
+    @Log(title = "标签模板信息", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, TbLabelModelInfo tbLabelModelInfo)
+    {
+        List<TbLabelModelInfo> list = tbLabelModelInfoService.selectTbLabelModelInfoList(tbLabelModelInfo);
+        ExcelUtil<TbLabelModelInfo> util = new ExcelUtil<TbLabelModelInfo>(TbLabelModelInfo.class);
+        util.exportExcel(response, list, "标签模板信息数据");
+    }
+
+    /**
+     * 获取标签模板信息详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('label:labelModel:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return success(tbLabelModelInfoService.selectTbLabelModelInfoById(id));
+    }
+
+    /**
+     * 新增标签模板信息
+     */
+    @PreAuthorize("@ss.hasPermi('label:labelModel:add')")
+    @Log(title = "标签模板信息", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody TbLabelModelInfo tbLabelModelInfo)
+    {
+        return toAjax(tbLabelModelInfoService.insertTbLabelModelInfo(tbLabelModelInfo));
+    }
+
+    /**
+     * 修改标签模板信息
+     */
+    @PreAuthorize("@ss.hasPermi('label:labelModel:edit')")
+    @Log(title = "标签模板信息", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody TbLabelModelInfo tbLabelModelInfo)
+    {
+        return toAjax(tbLabelModelInfoService.updateTbLabelModelInfo(tbLabelModelInfo));
+    }
+
+    /**
+     * 删除标签模板信息
+     */
+    @PreAuthorize("@ss.hasPermi('label:labelModel:remove')")
+    @Log(title = "标签模板信息", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(tbLabelModelInfoService.deleteTbLabelModelInfoByIds(ids));
+    }
+}

+ 85 - 0
ruoyi-admin/src/main/java/com/ruoyi/label/domain/TbLabelModelInfo.java

@@ -0,0 +1,85 @@
+package com.ruoyi.label.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 标签模板信息对象 tb_label_model_info
+ * 
+ * @author 原动力
+ * @date 2023-11-24
+ */
+public class TbLabelModelInfo extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 位置编号 */
+    @Excel(name = "位置编号")
+    private Long id;
+
+    /** 标签名称 */
+    @Excel(name = "标签名称")
+    private String name;
+
+    /** 标签编码 */
+    @Excel(name = "标签编码")
+    private String labelCode;
+
+    /** 标签内容 */
+    @Excel(name = "标签内容")
+    private String labelValue;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setName(String name) 
+    {
+        this.name = name;
+    }
+
+    public String getName() 
+    {
+        return name;
+    }
+    public void setLabelCode(String labelCode) 
+    {
+        this.labelCode = labelCode;
+    }
+
+    public String getLabelCode() 
+    {
+        return labelCode;
+    }
+    public void setLabelValue(String labelValue) 
+    {
+        this.labelValue = labelValue;
+    }
+
+    public String getLabelValue() 
+    {
+        return labelValue;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("name", getName())
+            .append("labelCode", getLabelCode())
+            .append("labelValue", getLabelValue())
+            .append("remark", getRemark())
+            .append("createBy", getCreateBy())
+            .append("createTime", getCreateTime())
+            .append("updateBy", getUpdateBy())
+            .append("updateTime", getUpdateTime())
+            .toString();
+    }
+}

+ 63 - 0
ruoyi-admin/src/main/java/com/ruoyi/label/mapper/TbLabelModelInfoMapper.java

@@ -0,0 +1,63 @@
+package com.ruoyi.label.mapper;
+
+import java.util.List;
+import com.ruoyi.label.domain.TbLabelModelInfo;
+
+/**
+ * 标签模板信息Mapper接口
+ * 
+ * @author 原动力
+ * @date 2023-11-24
+ */
+public interface TbLabelModelInfoMapper 
+{
+    /**
+     * 查询标签模板信息
+     * 
+     * @param id 标签模板信息主键
+     * @return 标签模板信息
+     */
+    public TbLabelModelInfo selectTbLabelModelInfoById(Long id);
+
+    public TbLabelModelInfo selectTbLabelModelByLabelCode(String labelCode);
+
+    /**
+     * 查询标签模板信息列表
+     * 
+     * @param tbLabelModelInfo 标签模板信息
+     * @return 标签模板信息集合
+     */
+    public List<TbLabelModelInfo> selectTbLabelModelInfoList(TbLabelModelInfo tbLabelModelInfo);
+
+    /**
+     * 新增标签模板信息
+     * 
+     * @param tbLabelModelInfo 标签模板信息
+     * @return 结果
+     */
+    public int insertTbLabelModelInfo(TbLabelModelInfo tbLabelModelInfo);
+
+    /**
+     * 修改标签模板信息
+     * 
+     * @param tbLabelModelInfo 标签模板信息
+     * @return 结果
+     */
+    public int updateTbLabelModelInfo(TbLabelModelInfo tbLabelModelInfo);
+
+    /**
+     * 删除标签模板信息
+     * 
+     * @param id 标签模板信息主键
+     * @return 结果
+     */
+    public int deleteTbLabelModelInfoById(Long id);
+
+    /**
+     * 批量删除标签模板信息
+     * 
+     * @param ids 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deleteTbLabelModelInfoByIds(Long[] ids);
+}

+ 63 - 0
ruoyi-admin/src/main/java/com/ruoyi/label/service/ITbLabelModelInfoService.java

@@ -0,0 +1,63 @@
+package com.ruoyi.label.service;
+
+import java.util.List;
+import com.ruoyi.label.domain.TbLabelModelInfo;
+
+/**
+ * 标签模板信息Service接口
+ * 
+ * @author 原动力
+ * @date 2023-11-24
+ */
+public interface ITbLabelModelInfoService 
+{
+    /**
+     * 查询标签模板信息
+     * 
+     * @param id 标签模板信息主键
+     * @return 标签模板信息
+     */
+    public TbLabelModelInfo selectTbLabelModelInfoById(Long id);
+
+    public TbLabelModelInfo selectTbLabelModelByLabelCode(String labelCode);
+
+    /**
+     * 查询标签模板信息列表
+     * 
+     * @param tbLabelModelInfo 标签模板信息
+     * @return 标签模板信息集合
+     */
+    public List<TbLabelModelInfo> selectTbLabelModelInfoList(TbLabelModelInfo tbLabelModelInfo);
+
+    /**
+     * 新增标签模板信息
+     * 
+     * @param tbLabelModelInfo 标签模板信息
+     * @return 结果
+     */
+    public int insertTbLabelModelInfo(TbLabelModelInfo tbLabelModelInfo);
+
+    /**
+     * 修改标签模板信息
+     * 
+     * @param tbLabelModelInfo 标签模板信息
+     * @return 结果
+     */
+    public int updateTbLabelModelInfo(TbLabelModelInfo tbLabelModelInfo);
+
+    /**
+     * 批量删除标签模板信息
+     * 
+     * @param ids 需要删除的标签模板信息主键集合
+     * @return 结果
+     */
+    public int deleteTbLabelModelInfoByIds(Long[] ids);
+
+    /**
+     * 删除标签模板信息信息
+     * 
+     * @param id 标签模板信息主键
+     * @return 结果
+     */
+    public int deleteTbLabelModelInfoById(Long id);
+}

+ 106 - 0
ruoyi-admin/src/main/java/com/ruoyi/label/service/impl/TbLabelModelInfoServiceImpl.java

@@ -0,0 +1,106 @@
+package com.ruoyi.label.service.impl;
+
+import java.util.List;
+import com.ruoyi.common.utils.DateUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.label.mapper.TbLabelModelInfoMapper;
+import com.ruoyi.label.domain.TbLabelModelInfo;
+import com.ruoyi.label.service.ITbLabelModelInfoService;
+
+/**
+ * 标签模板信息Service业务层处理
+ * 
+ * @author 原动力
+ * @date 2023-11-24
+ */
+@Service
+public class TbLabelModelInfoServiceImpl implements ITbLabelModelInfoService 
+{
+    @Autowired
+    private TbLabelModelInfoMapper tbLabelModelInfoMapper;
+
+    /**
+     * 查询标签模板信息
+     * 
+     * @param id 标签模板信息主键
+     * @return 标签模板信息
+     */
+    @Override
+    public TbLabelModelInfo selectTbLabelModelInfoById(Long id)
+    {
+        return tbLabelModelInfoMapper.selectTbLabelModelInfoById(id);
+    }
+
+    @Override
+    public TbLabelModelInfo selectTbLabelModelByLabelCode(String labelCode) {
+        return tbLabelModelInfoMapper.selectTbLabelModelByLabelCode(labelCode);
+    }
+
+    /**
+     * 查询标签模板信息列表
+     * 
+     * @param tbLabelModelInfo 标签模板信息
+     * @return 标签模板信息
+     */
+    @Override
+    public List<TbLabelModelInfo> selectTbLabelModelInfoList(TbLabelModelInfo tbLabelModelInfo)
+    {
+        return tbLabelModelInfoMapper.selectTbLabelModelInfoList(tbLabelModelInfo);
+    }
+
+    /**
+     * 新增标签模板信息
+     * 
+     * @param tbLabelModelInfo 标签模板信息
+     * @return 结果
+     */
+    @Override
+    public int insertTbLabelModelInfo(TbLabelModelInfo tbLabelModelInfo)
+    {
+        String labelCode = tbLabelModelInfo.getLabelCode();
+        TbLabelModelInfo labelModelInfo = selectTbLabelModelByLabelCode(labelCode);
+        if (labelModelInfo != null) {
+            throw new RuntimeException("标签编码已存在");
+        }
+        tbLabelModelInfo.setCreateTime(DateUtils.getNowDate());
+        return tbLabelModelInfoMapper.insertTbLabelModelInfo(tbLabelModelInfo);
+    }
+
+    /**
+     * 修改标签模板信息
+     * 
+     * @param tbLabelModelInfo 标签模板信息
+     * @return 结果
+     */
+    @Override
+    public int updateTbLabelModelInfo(TbLabelModelInfo tbLabelModelInfo)
+    {
+        tbLabelModelInfo.setUpdateTime(DateUtils.getNowDate());
+        return tbLabelModelInfoMapper.updateTbLabelModelInfo(tbLabelModelInfo);
+    }
+
+    /**
+     * 批量删除标签模板信息
+     * 
+     * @param ids 需要删除的标签模板信息主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbLabelModelInfoByIds(Long[] ids)
+    {
+        return tbLabelModelInfoMapper.deleteTbLabelModelInfoByIds(ids);
+    }
+
+    /**
+     * 删除标签模板信息信息
+     * 
+     * @param id 标签模板信息主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbLabelModelInfoById(Long id)
+    {
+        return tbLabelModelInfoMapper.deleteTbLabelModelInfoById(id);
+    }
+}

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

@@ -1,6 +1,7 @@
 package com.ruoyi.ptxlib.controller;
 
 import cn.hutool.core.util.StrUtil;
+import cn.hutool.json.JSONUtil;
 import com.ruoyi.asset.domain.TbAssetInformation;
 import com.ruoyi.asset.domain.TbLocation;
 import com.ruoyi.asset.service.ITbAssetInformationService;
@@ -8,6 +9,9 @@ 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.common.utils.MyUtils;
+import com.ruoyi.label.domain.TbLabelModelInfo;
+import com.ruoyi.label.service.ITbLabelModelInfoService;
 import com.ruoyi.ptxlib.domain.PTXLabelCode;
 import com.ruoyi.ptxlib.domain.PTXLabelInfo;
 import com.ruoyi.ptxlib.domain.PTXLabelText;
@@ -40,6 +44,64 @@ public class PTXController extends BaseController {
         return success();
     }
 
+    @Resource
+    private ITbLabelModelInfoService labelModelInfoService;
+
+    @PostMapping("/test")
+    public AjaxResult test(@RequestBody PTXLabelInfo ptxLabelInfo) {
+//        TbAssetInformation tbAssetInformation = assetInformationService.selectTbAssetInformationById(8L);
+//
+//        ptxLabelInfo = ptxService.filterInfo(ptxLabelInfo, tbAssetInformation);
+        TbLabelModelInfo tbLabelModelInfo = new TbLabelModelInfo();
+        tbLabelModelInfo.setName("标签 80mm*25mm");
+        tbLabelModelInfo.setLabelCode("BQ001");
+        tbLabelModelInfo.setLabelValue(JSONUtil.toJsonStr(ptxLabelInfo));
+        tbLabelModelInfo.setCreateBy("admin");
+        labelModelInfoService.insertTbLabelModelInfo(tbLabelModelInfo);
+
+        return AjaxResult.success();
+    }
+
+    /**
+     * 打印标签内容过滤
+     *
+     * @param ptxLabelInfo 打印标签信息
+     * @param filterData 过滤数据
+     * @return 打印标签数据
+     */
+    public PTXLabelInfo filterInfo(PTXLabelInfo ptxLabelInfo, Object filterData) {
+        String epc = ptxLabelInfo.getEpc();
+        String[] symbolContent = MyUtils.getSymbolContent(epc);
+        epc = MyUtils.replaceBrackets(filterData, epc, symbolContent);
+        ptxLabelInfo.setEpc(epc);
+
+        List<PTXLabelText> ptxLabelTexts = ptxLabelInfo.getPtxLabelTexts();
+        if (!ptxLabelTexts.isEmpty()) {
+            for (PTXLabelText ptxLabelText : ptxLabelTexts) {
+                // 拥有占位符的打印字符串
+                String printData = ptxLabelText.getPrintData();
+                // 获取占位符中的字符串集
+                String[] symbolContents = MyUtils.getSymbolContent(printData);
+
+                printData = MyUtils.replaceBrackets(filterData, printData, symbolContents);
+                ptxLabelText.setPrintData(printData);
+            }
+        }
+
+        List<PTXLabelCode> ptxLabelCodes = ptxLabelInfo.getPtxLabelCodes();
+        if (!ptxLabelCodes.isEmpty()) {
+            for (PTXLabelCode ptxLabelCode : ptxLabelCodes) {
+                String data = ptxLabelCode.getData();
+                // 获取占位符中的字符串集
+                String[] symbolContents = MyUtils.getSymbolContent(data);
+                data = MyUtils.replaceBrackets(filterData, data, symbolContents);
+                ptxLabelCode.setData(data);
+            }
+        }
+
+        return ptxLabelInfo;
+    }
+
     @GetMapping
     public AjaxResult print2() {
         PTXLabelInfo labelInfo = new PTXLabelInfo();

+ 1 - 0
ruoyi-admin/src/main/java/com/ruoyi/ptxlib/service/PTXLib.java

@@ -1,5 +1,6 @@
 package com.ruoyi.ptxlib.service;
 
+import com.ruoyi.ptxlib.domain.PTXLabelInfo;
 import com.sun.jna.Library;
 import com.sun.jna.Native;
 import com.sun.jna.ptr.IntByReference;

+ 41 - 0
ruoyi-admin/src/main/java/com/ruoyi/ptxlib/service/impl/PTXService.java

@@ -1,6 +1,7 @@
 package com.ruoyi.ptxlib.service.impl;
 
 import cn.hutool.core.util.StrUtil;
+import com.ruoyi.common.utils.MyUtils;
 import com.ruoyi.ptxlib.domain.PTXLabelCode;
 import com.ruoyi.ptxlib.domain.PTXLabelInfo;
 import com.ruoyi.ptxlib.domain.PTXLabelText;
@@ -15,6 +16,46 @@ import static com.ruoyi.ptxlib.constant.PTXConstants.MaxPrintWidth;
 @Service
 public class PTXService {
     /**
+     * 打印标签内容过滤
+     *
+     * @param ptxLabelInfo 打印标签信息
+     * @param filterData 过滤数据
+     * @return 打印标签数据
+     */
+    public PTXLabelInfo filterInfo(PTXLabelInfo ptxLabelInfo, Object filterData) {
+        String epc = ptxLabelInfo.getEpc();
+        String[] symbolContent = MyUtils.getSymbolContent(epc);
+        epc = MyUtils.replaceBrackets(filterData, epc, symbolContent);
+        ptxLabelInfo.setEpc(epc);
+
+        List<PTXLabelText> ptxLabelTexts = ptxLabelInfo.getPtxLabelTexts();
+        if (!ptxLabelTexts.isEmpty()) {
+            for (PTXLabelText ptxLabelText : ptxLabelTexts) {
+                // 拥有占位符的打印字符串
+                String printData = ptxLabelText.getPrintData();
+                // 获取占位符中的字符串集
+                String[] symbolContents = MyUtils.getSymbolContent(printData);
+
+                printData = MyUtils.replaceBrackets(filterData, printData, symbolContents);
+                ptxLabelText.setPrintData(printData);
+            }
+        }
+
+        List<PTXLabelCode> ptxLabelCodes = ptxLabelInfo.getPtxLabelCodes();
+        if (!ptxLabelCodes.isEmpty()) {
+            for (PTXLabelCode ptxLabelCode : ptxLabelCodes) {
+                String data = ptxLabelCode.getData();
+                // 获取占位符中的字符串集
+                String[] symbolContents = MyUtils.getSymbolContent(data);
+                data = MyUtils.replaceBrackets(filterData, data, symbolContents);
+                ptxLabelCode.setData(data);
+            }
+        }
+
+        return ptxLabelInfo;
+    }
+
+    /**
      * 打印标签
      *
      * @param labelInfo 标签信息

+ 9 - 0
ruoyi-admin/src/main/resources/mapper/asset/TbAssetInformationMapper.xml

@@ -178,6 +178,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         where id = #{id}
     </select>
 
+    <!--List<TbAssetInformation> selectTbAssetInformationByIds(Long[] ids);-->
+    <select id="selectTbAssetInformationByIds" parameterType="String" resultMap="TbAssetInformationResult">
+        <include refid="selectTbAssetInformationVo"/>
+        where id in
+        <foreach item="id" collection="list" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </select>
+
     <select id="selectTbAssetInformationByAssetNumber" parameterType="String" resultMap="TbAssetInformationResult">
         <include refid="selectTbAssetInformationVo"></include>
         where number = #{assetNumber}

+ 91 - 0
ruoyi-admin/src/main/resources/mapper/label/TbLabelModelInfoMapper.xml

@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.label.mapper.TbLabelModelInfoMapper">
+    
+    <resultMap type="TbLabelModelInfo" id="TbLabelModelInfoResult">
+        <result property="id"    column="id"    />
+        <result property="name"    column="name"    />
+        <result property="labelCode"    column="label_code"    />
+        <result property="labelValue"    column="label_value"    />
+        <result property="remark"    column="remark"    />
+        <result property="createBy"    column="create_by"    />
+        <result property="createTime"    column="create_time"    />
+        <result property="updateBy"    column="update_by"    />
+        <result property="updateTime"    column="update_time"    />
+    </resultMap>
+
+    <sql id="selectTbLabelModelInfoVo">
+        select id, name, label_code, label_value, remark, create_by, create_time, update_by, update_time from tb_label_model_info
+    </sql>
+
+    <select id="selectTbLabelModelInfoList" parameterType="TbLabelModelInfo" resultMap="TbLabelModelInfoResult">
+        <include refid="selectTbLabelModelInfoVo"/>
+        <where>  
+            <if test="name != null  and name != ''"> and name like concat('%', #{name}, '%')</if>
+            <if test="labelCode != null  and labelCode != ''"> and label_code = #{labelCode}</if>
+        </where>
+    </select>
+    
+    <select id="selectTbLabelModelInfoById" parameterType="Long" resultMap="TbLabelModelInfoResult">
+        <include refid="selectTbLabelModelInfoVo"/>
+        where id = #{id}
+    </select>
+
+    <!--selectTbLabelModelByLabelCode-->
+    <select id="selectTbLabelModelByLabelCode" parameterType="String" resultMap="TbLabelModelInfoResult">
+        <include refid="selectTbLabelModelInfoVo"/>
+        where label_code = #{labelCode}
+    </select>
+        
+    <insert id="insertTbLabelModelInfo" parameterType="TbLabelModelInfo" useGeneratedKeys="true" keyProperty="id">
+        insert into tb_label_model_info
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="name != null and name != ''">name,</if>
+            <if test="labelCode != null and labelCode != ''">label_code,</if>
+            <if test="labelValue != null and labelValue != ''">label_value,</if>
+            <if test="remark != null">remark,</if>
+            <if test="createBy != null">create_by,</if>
+            <if test="createTime != null">create_time,</if>
+            <if test="updateBy != null">update_by,</if>
+            <if test="updateTime != null">update_time,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="name != null and name != ''">#{name},</if>
+            <if test="labelCode != null and labelCode != ''">#{labelCode},</if>
+            <if test="labelValue != null and labelValue != ''">#{labelValue},</if>
+            <if test="remark != null">#{remark},</if>
+            <if test="createBy != null">#{createBy},</if>
+            <if test="createTime != null">#{createTime},</if>
+            <if test="updateBy != null">#{updateBy},</if>
+            <if test="updateTime != null">#{updateTime},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTbLabelModelInfo" parameterType="TbLabelModelInfo">
+        update tb_label_model_info
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="name != null and name != ''">name = #{name},</if>
+            <if test="labelCode != null and labelCode != ''">label_code = #{labelCode},</if>
+            <if test="labelValue != null and labelValue != ''">label_value = #{labelValue},</if>
+            <if test="remark != null">remark = #{remark},</if>
+            <if test="createBy != null">create_by = #{createBy},</if>
+            <if test="createTime != null">create_time = #{createTime},</if>
+            <if test="updateBy != null">update_by = #{updateBy},</if>
+            <if test="updateTime != null">update_time = #{updateTime},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteTbLabelModelInfoById" parameterType="Long">
+        delete from tb_label_model_info where id = #{id}
+    </delete>
+
+    <delete id="deleteTbLabelModelInfoByIds" parameterType="String">
+        delete from tb_label_model_info where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>

+ 49 - 0
ruoyi-common/src/main/java/com/ruoyi/common/utils/MyUtils.java

@@ -0,0 +1,49 @@
+package com.ruoyi.common.utils;
+
+import cn.hutool.core.util.StrUtil;
+import org.springframework.security.util.FieldUtils;
+
+public class MyUtils {
+    /**
+     * 占位符${}内容替换
+     *
+     * @param data 拥有占位符属性的数据
+     * @param input 输入的字符串
+     * @param replacements 需替换的字段
+     * @return 替换后字符串
+     */
+    public static String replaceBrackets(Object data, String input, String... replacements) {
+        // 判断替换数据是否为空
+        if (data == null) {
+            throw new RuntimeException("data数据不能为空");
+        }
+        // 判断替换字段是否为空
+        if (replacements == null || replacements.length < 1) {
+            return input;
+        }
+        for (String replacement : replacements) {
+            try {
+                String placeholder = "${" + replacement + "}";
+                String filedValue = FieldUtils.getFieldValue(data, replacement).toString();
+                input = input.replace(placeholder, filedValue);
+            } catch (Exception e) {
+                String placeholder = "${" + replacement + "}";
+                input = input.replace(placeholder, "null");
+            }
+        }
+        return input;
+    }
+
+    /**
+     * 获取占位符${}中的字符串内容
+     * @param str 字符串
+     * @return 占位符${}中的字符串内容数组
+     */
+    public static String[] getSymbolContent(String str){
+        //校验输入参数
+        if(StrUtil.isBlank(str)){
+            return null;
+        }
+        return StrUtil.subBetweenAll(str, "${", "}");
+    }
+}

+ 2 - 0
ruoyi-ui/package.json

@@ -38,6 +38,7 @@
   "dependencies": {
     "@riophae/vue-treeselect": "0.4.0",
     "axios": "0.24.0",
+    "bin-code-editor": "^0.9.0",
     "clipboard": "2.0.8",
     "core-js": "3.25.3",
     "echarts": "5.4.0",
@@ -56,6 +57,7 @@
     "vue": "2.6.12",
     "vue-count-to": "1.0.13",
     "vue-cropper": "0.5.5",
+    "vue-json-viewer": "^2.2.22",
     "vue-meta": "2.4.0",
     "vue-router": "3.4.9",
     "vuedraggable": "2.24.3",

+ 9 - 0
ruoyi-ui/src/api/asset/information.js

@@ -43,6 +43,15 @@ export function delInformation(id) {
   })
 }
 
+// 标签打印
+export function printLabel(data) {
+  return request({
+    url: '/asset/information/print',
+    method: 'post',
+    data: data
+  })
+}
+
 //自定义字段
 export function getDiy() {
   return request({

+ 52 - 0
ruoyi-ui/src/api/label/labelModel.js

@@ -0,0 +1,52 @@
+import request from '@/utils/request'
+
+// 查询标签模板信息列表
+export function listLabelModel(query) {
+  return request({
+    url: '/label/labelModel/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询下拉列表
+export function select() {
+  return request({
+    url: '/label/labelModel/select',
+    method: 'get'
+  })
+}
+
+// 查询标签模板信息详细
+export function getLabelModel(id) {
+  return request({
+    url: '/label/labelModel/' + id,
+    method: 'get'
+  })
+}
+
+// 新增标签模板信息
+export function addLabelModel(data) {
+  return request({
+    url: '/label/labelModel',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改标签模板信息
+export function updateLabelModel(data) {
+  return request({
+    url: '/label/labelModel',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除标签模板信息
+export function delLabelModel(id) {
+  return request({
+    url: '/label/labelModel/' + id,
+    method: 'delete'
+  })
+}

+ 7 - 0
ruoyi-ui/src/main.js

@@ -37,6 +37,11 @@ import DictTag from '@/components/DictTag'
 import VueMeta from 'vue-meta'
 // 字典数据组件
 import DictData from '@/components/DictData'
+// json视图组件
+import JsonViewer from 'vue-json-viewer'
+
+import CodeEditor from 'bin-code-editor'
+
 
 // 全局方法挂载
 Vue.prototype.getDicts = getDicts
@@ -61,6 +66,8 @@ Vue.component('ImagePreview', ImagePreview)
 Vue.use(directive)
 Vue.use(plugins)
 Vue.use(VueMeta)
+Vue.use(JsonViewer)
+Vue.use(CodeEditor);
 DictData.install()
 
 /**

+ 74 - 1
ruoyi-ui/src/views/asset/information/index.vue

@@ -201,6 +201,9 @@
         <!-- v-hasPermi="['collegeManage:studentBase:import']" -->
       </el-col>
       <el-col :span="1.5">
+        <el-button type="success" plain icon="el-icon-printer" size="mini" :disabled="multiple" @click="handPrinter" v-hasPermi="['asset:information:query']">打印标签</el-button>
+      </el-col>
+      <el-col :span="1.5">
         <el-button type="primary" plain icon="el-icon-menu" size="mini" @click="handleDIY" v-hasPermi="['asset:information:query']">自定义字段</el-button>
       </el-col>
       <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
@@ -310,6 +313,7 @@
       <el-table-column label="预留字段j" align="center" prop="reservedColumnJ" /> -->
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
         <template slot-scope="scope">
+          <el-button size="mini" type="text" icon="el-icon-printer" @click="handPrinter(scope.row)" v-hasPermi="['asset:information:query']">打印</el-button>
           <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['asset:information:edit']">修改</el-button>
           <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['asset:information:remove']">删除</el-button>
         </template>
@@ -513,15 +517,35 @@
         <el-button @click="upload.open = false">取 消</el-button>
       </div>
     </el-dialog>
+    <el-dialog title="标签打印" :visible.sync="isPrinter" width="400px" append-to-body>
+      <el-form ref="printForm" :model="printForm" :rules="printRules" label-width="80px">
+        <el-form-item label="资产编号" prop="ids">
+          {{ printForm.ids }}
+        </el-form-item>
+        <el-form-item label="标签编码" prop="labelCode">
+          <el-select v-model="printForm.labelCode" placeholder="请选择标签编码">
+            <el-option v-for="item in labelCodes" :key="item.value" :label="item.label" :value="item.value">
+              <span style="float: left">{{ item.label }}</span>
+              <span style="float: right; color: #8492a6; font-size: 13px">{{ item.value }}</span>
+            </el-option>
+          </el-select>
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="onSubmitPrint">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
   </div>
 </template>
 
 <script>
-import { listInformation, getInformation, delInformation, addInformation, updateInformation, setDiy, getDiy } from '@/api/asset/information'
+import { listInformation, getInformation, delInformation, addInformation, updateInformation, setDiy, getDiy, printLabel } from '@/api/asset/information'
 import { listCategory } from '@/api/asset/category'
 import { treeSelect } from '@/api/asset/location'
 import ImageUploadTemp from '@/components/ImageUploadTemp'
 import { listDept } from '@/api/system/dept'
+import { select } from '@/api/label/labelModel'
 import Treeselect from '@riophae/vue-treeselect'
 import { getToken } from '@/utils/auth'
 import '@riophae/vue-treeselect/dist/vue-treeselect.css'
@@ -647,9 +671,27 @@ export default {
         // 上传的地址
         url: process.env.VUE_APP_BASE_API + '/asset/information/importData', // todo
       },
+      labelCodes: [
+        {
+          label: '',
+          value: '',
+        },
+      ],
+      printForm: {
+        ids: null,
+        labelCode: null,
+      },
+      printRules: {
+        ids: [{ required: true, message: '资产编码不能为空', trigger: 'blur' }],
+        labelCode: [{ required: true, message: '标签编码不能为空', trigger: 'change' }],
+      },
+      isPrinter: false,
     }
   },
   created() {
+    select().then((res) => {
+      this.labelCodes = res.data
+    })
     this.getList()
   },
   methods: {
@@ -743,6 +785,7 @@ export default {
     // 取消按钮
     cancel() {
       this.open = false
+      this.isPrinter = false
       this.reset()
     },
     // 表单重置
@@ -797,7 +840,12 @@ export default {
         reservedColumnI: null,
         reservedColumnJ: null,
       }
+      this.printForm = {
+        ids: null,
+        labelCode: null,
+      }
       this.resetForm('form')
+      this.resetForm('printForm')
     },
     /** 搜索按钮操作 */
     handleQuery() {
@@ -837,6 +885,31 @@ export default {
         this.title = '修改资产信息'
       })
     },
+    /** 标签打印操作 */
+    handPrinter(row) {
+      const ids = row.id || this.ids
+
+      if (Object.prototype.toString.call(ids) === '[object Array]') {
+        this.printForm.ids = ids
+      } else {
+        this.printForm.ids = [ids]
+      }
+      this.isPrinter = true
+    },
+    onSubmitPrint() {
+      this.$refs.printForm.validate((valid) => {
+        if (valid) {
+          printLabel(this.printForm).then((res) => {
+            this.$modal.msgSuccess('操作成功,等待打印...')
+            this.cancel()
+          })
+        } else {
+          return false
+        }
+      })
+
+      printLabel(this.printForm)
+    },
     /** 自定义字段按钮 */
     handleDIY() {
       this.diyOpen = true

+ 290 - 0
ruoyi-ui/src/views/label/labelModel/index.vue

@@ -0,0 +1,290 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="标签名称" prop="name">
+        <el-input v-model="queryParams.name" placeholder="请输入标签名称" clearable @keyup.enter.native="handleQuery" />
+      </el-form-item>
+      <el-form-item label="标签编码" prop="labelCode">
+        <el-input v-model="queryParams.labelCode" placeholder="请输入标签编码" clearable @keyup.enter.native="handleQuery" />
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd" v-hasPermi="['label:labelModel:add']">新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate" v-hasPermi="['label:labelModel:edit']">修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete" v-hasPermi="['label:labelModel:remove']">删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" v-hasPermi="['label:labelModel:export']">导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="labelModelList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="ID" align="center" prop="id" />
+      <el-table-column label="标签名称" align="center" prop="name" />
+      <el-table-column label="标签编码" align="center" prop="labelCode" />
+      <el-table-column label="标签内容" align="center" prop="labelValue">
+        <template slot-scope="scope">
+          <el-button type="text" icon="el-icon-search" @click="onShow(scope.row.labelValue)">查看</el-button>
+        </template>
+      </el-table-column>
+      <el-table-column label="备注" align="center" prop="remark" />
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['label:labelModel:edit']">修改</el-button>
+          <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['label:labelModel:remove']">删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+
+    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
+
+    <!-- 添加或修改标签模板信息对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-row>
+          <el-col :span="12">
+            <el-form-item label="标签名称" prop="name">
+              <el-input v-model="form.name" placeholder="请输入标签名称" />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="标签编码" prop="labelCode">
+              <el-input v-model="form.labelCode" placeholder="请输入标签编码" />
+            </el-form-item>
+          </el-col>
+          <el-col :span="24">
+            <el-form-item label="标签内容">
+              <!-- <editor v-model="form.labelValue" :min-height="192" /> -->
+              <b-code-editor v-if="open" v-model="form.labelValue" :auto-format="true" :show-number="false" height="auto" />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="备注" prop="remark">
+              <el-input v-model="form.remark" placeholder="请输入备注" />
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+    <!-- 【调整】资产信息 -->
+    <el-dialog title="标签信息" :visible.sync="isShow" width="900px" append-to-body>
+      <json-viewer :value="labelInfo" :expand-depth="5" copyable boxed sort />
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listLabelModel, getLabelModel, delLabelModel, addLabelModel, updateLabelModel } from '@/api/label/labelModel'
+
+export default {
+  name: 'LabelModel',
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 标签模板信息表格数据
+      labelModelList: [],
+      // 弹出层标题
+      title: '',
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        name: null,
+        labelCode: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        name: [{ required: true, message: '标签名称不能为空', trigger: 'blur' }],
+        labelCode: [{ required: true, message: '标签编码不能为空', trigger: 'blur' }],
+        labelValue: [{ required: true, message: '标签内容不能为空', trigger: 'blur' }],
+      },
+      isShow: false,
+      labelInfo: {},
+    }
+  },
+  components: {},
+  created() {
+    this.getList()
+  },
+  methods: {
+    onShow(val) {
+      const json = JSON.parse(val)
+      this.isShow = true
+      this.labelInfo = json
+    },
+    onJsonChange(val) {
+      console.log('json:', val)
+    },
+    /** 查询标签模板信息列表 */
+    getList() {
+      this.loading = true
+      listLabelModel(this.queryParams).then((response) => {
+        this.labelModelList = response.rows
+        this.total = response.total
+        this.loading = false
+      })
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false
+      this.reset()
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        name: null,
+        labelCode: null,
+        labelValue: null,
+        remark: null,
+        createBy: null,
+        createTime: null,
+        updateBy: null,
+        updateTime: null,
+      }
+      const jsonStr = JSON.stringify({
+          connectType:0,
+          printerName:"USB",
+          connectIpAddress: null,
+          connectPort: null,
+          pid:300,
+          isBold:true,
+          epc:"${number}",
+          ptxLabelTexts: [
+            {
+              textType:1,
+              printData:"资产编码:${number}",
+              spaceBetween:28,
+              tffFileName:"SIMHEI.TTF",
+              xLineHeight:10,
+              x:20,
+              y:35,
+              yLineHeight:10
+            },
+          ],
+          ptxLabelCodes:[
+            {
+              codeType:2,
+              data:"${locationNumber}",
+              spaceBetween:28,
+              isShowText:false,
+              X:680,
+              Y:35,
+              width:8,
+              height:8
+            }
+          ]
+        })
+      this.form.labelValue = jsonStr
+      this.resetForm('form')
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1
+      this.getList()
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm('queryForm')
+      this.handleQuery()
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map((item) => item.id)
+      this.single = selection.length !== 1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset()
+      this.open = true
+      this.title = '添加标签模板信息'
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset()
+      const id = row.id || this.ids
+      getLabelModel(id).then((response) => {
+        this.form = response.data
+        this.open = true
+        this.title = '修改标签模板信息'
+      })
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs['form'].validate((valid) => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateLabelModel(this.form).then((response) => {
+              this.$modal.msgSuccess('修改成功')
+              this.open = false
+              this.getList()
+            })
+          } else {
+            addLabelModel(this.form).then((response) => {
+              this.$modal.msgSuccess('新增成功')
+              this.open = false
+              this.getList()
+            })
+          }
+        }
+      })
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids
+      this.$modal
+        .confirm('是否确认删除标签模板信息编号为"' + ids + '"的数据项?')
+        .then(function () {
+          return delLabelModel(ids)
+        })
+        .then(() => {
+          this.getList()
+          this.$modal.msgSuccess('删除成功')
+        })
+        .catch(() => {})
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download(
+        'label/labelModel/export',
+        {
+          ...this.queryParams,
+        },
+        `labelModel_${new Date().getTime()}.xlsx`
+      )
+    },
+  },
+}
+</script>

+ 12 - 0
sql/rfid-hotel-manager.sql

@@ -1433,4 +1433,16 @@ CREATE TABLE `tb_order_detail`  (
   CONSTRAINT `tb_order_detail_ibfk_2` FOREIGN KEY (`order_number`) REFERENCES `tb_order` (`order_number`) ON DELETE RESTRICT ON UPDATE RESTRICT
 ) ENGINE = InnoDB AUTO_INCREMENT = 17 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '资产单据明细表' ROW_FORMAT = DYNAMIC;
 
+CREATE TABLE tb_lable_model_info(
+id bigint NOT NULL PRIMARY KEY AUTO_INCREMENT COMMENT '位置编号',
+name varchar(128) NOT NULL COMMENT '标签名称',
+label_code varchar(128) NOT NULL UNIQUE KEY COMMENT '标签编码',
+label_value LONGBLOB NOT NULL COMMENT '标签内容',
+remark varchar(255) COMMENT '备注',
+create_by varchar(128) NOT NULL COMMENT '创建人',
+create_time timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
+update_by varchar(128) COMMENT '修改人',
+update_time timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间'
+) COMMENT '标签模板信息';
+
 SET FOREIGN_KEY_CHECKS = 1;