PDA任务转接只显示仓库绑定的用户,盘点详情显示物料批次属性
This commit is contained in:
+16
@@ -16,6 +16,7 @@ import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@@ -74,4 +75,19 @@ public interface SystemServiceFeign {
|
||||
*/
|
||||
@PostMapping("/dict/data/getDictDataList")
|
||||
public R<List<SysDictData>> getDictDataList(@RequestBody SysDictData sysDictData);
|
||||
|
||||
/**
|
||||
* 查询仓库关联的用户ID集合(用于PDA任务转交等场景)
|
||||
* @param warehouseId 仓库ID
|
||||
* @return 用户ID列表
|
||||
*/
|
||||
@GetMapping("/associationWarehouseApi/queryListCorrelationId")
|
||||
public AjaxResult queryListCorrelationId(@RequestParam(value = "warehouseId", required = false) Long warehouseId);
|
||||
|
||||
/**
|
||||
* 获取当前登录用户设置的仓库
|
||||
* @return 仓库信息(含warehouseId)
|
||||
*/
|
||||
@GetMapping("/associationWarehouseApi/getWarehouseInfo")
|
||||
public AjaxResult getWarehouseInfo();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user