Browse Source

新增所属位置(公开)接口

LinWuTai 1 year ago
parent
commit
e5108609f4

+ 8 - 0
ruoyi-admin/src/main/java/com/ruoyi/asset/service/ITbLocationService.java

@@ -24,6 +24,14 @@ public interface ITbLocationService
     public TbLocation selectTbLocationById(Long id);
 
     /**
+     * 查询所属位置
+     *
+     * @param number 位置编号
+     * @return 所属位置
+     */
+    TbLocation selectTbLocationByNumber(String number);
+
+    /**
      * 查询所属位置列表
      * 
      * @param tbLocation 所属位置

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

@@ -47,6 +47,11 @@ public class TbLocationServiceImpl implements ITbLocationService
         return tbLocationMapper.selectTbLocationById(id);
     }
 
+    @Override
+    public TbLocation selectTbLocationByNumber(String number) {
+        return tbLocationMapper.selectTbLocationByNumber(number);
+    }
+
     /**
      * 查询所属位置列表
      * 

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

@@ -165,8 +165,6 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
         return tbAssetInventoryMapper.selectTbAssetInventoryDTOList(dto);
     }
 
-
-
     private int takeStock(String orderNumber, List<String> list, Long result){
         TbAssetInventory inventory = tbAssetInventoryMapper.selectTbAssetInventoryByNumber(orderNumber);
         if (inventory.getRecordStatus() == 1L) {

+ 17 - 0
ruoyi-admin/src/main/java/com/ruoyi/visitor/controller/VController.java

@@ -2,7 +2,9 @@ package com.ruoyi.visitor.controller;
 
 import com.ruoyi.asset.domain.TbAssetInformation;
 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.page.TableDataInfo;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.GetMapping;
@@ -10,6 +12,7 @@ import org.springframework.web.bind.annotation.PathVariable;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
 
+import javax.annotation.Resource;
 import java.util.List;
 
 @RestController
@@ -18,6 +21,9 @@ public class VController extends BaseController {
     @Autowired
     private ITbAssetInformationService tbAssetInformationService;
 
+    @Resource
+    private ITbLocationService locationService;
+
     @GetMapping("/list/{number}")
     public TableDataInfo list(@PathVariable("number") String number)
     {
@@ -26,4 +32,15 @@ public class VController extends BaseController {
         List<TbAssetInformation> list = tbAssetInformationService.selectInfoList(tbAssetInformation);
         return getDataTable(list);
     }
+
+    /*
+    *  接口:/visitor/location/{number}
+    * */
+    @GetMapping(value = "/location/{number}")
+    public AjaxResult getLocationByNumber(@PathVariable("number") String number)
+    {
+        return success(locationService.selectTbLocationByNumber(number));
+    }
+
+
 }