Browse Source

优化修复离线盘点

LinWuTai 11 tháng trước cách đây
mục cha
commit
b33f0bd8a3

+ 0 - 2
ruoyi-admin/src/main/java/com/ruoyi/asset/controller/TbAssetInformationController.java

@@ -55,8 +55,6 @@ public class TbAssetInformationController extends BaseController
     @Autowired
     private ITbAssetInformationService tbAssetInformationService;
 
-    @Resource
-
     /**
      * 查询资产信息列表
      */

+ 1 - 1
ruoyi-admin/src/main/resources/mapper/asset/TbLocationMapper.xml

@@ -65,7 +65,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
     </select>
 
     <select id="selectChildTbLocationById" parameterType="Long" resultType="String">
-        SELECT number FROM `tb_location` where id = #{id} or sequence like concat('%', #{id}, '%');
+        SELECT number FROM `tb_location` where id = #{id} or sequence like concat(#{id}, '%');
     </select>
 
     <select id="selectChildTbLocationByIds" parameterType="Long" resultType="String">

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

@@ -208,7 +208,7 @@ export default {
   },
   methods: {
     test(val) {
-      const json = JSON.parse(val)('资产原信息:', json)
+      const json = JSON.parse(val)
     },
     /** 查询资产调整列表 */
     getList() {

+ 1 - 1
ruoyi-ui/src/views/index.vue

@@ -172,7 +172,7 @@ export default {
     onSelectOriginalAssetInfo(info) {
       const json = JSON.parse(info)
       this.adjustmentOriginalAssetInfo = json
-      this.openAdjustment = true('资产原信息:', json)
+      this.openAdjustment = true
     },
     // 表单重置
     reset() {

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

@@ -144,7 +144,6 @@ export default {
       this.labelInfo = json
     },
     onJsonChange(val) {
-      ('json:', val)
     },
     /** 查询标签模板信息列表 */
     getList() {

+ 1 - 1
ruoyi-ui/src/views/order/order/index.vue

@@ -560,7 +560,7 @@ export default {
         this.ids = []
       }
       this.single = selection.length !== 1
-      this.multiple = !selection.length('多选数据', selection, this.ids)
+      this.multiple = !selection.length
     },
     /** 新增按钮操作 */
     handleAdd() {