WMS入库管理模块bug修改

This commit is contained in:
秦鸿展
2026-01-23 15:42:37 +08:00
parent ca4b1ce2a3
commit 186c5d1b94
16 changed files with 200 additions and 96 deletions
@@ -275,6 +275,12 @@ public interface SystemServiceFeign {
@GetMapping("/associationWarehouseApi/setWarehouseInfo")
public AjaxResult setWarehouseInfo(@RequestBody AssociationWarehouseFeign associationWarehouseFeign);
/**
* 查询仓库关联的用户ID集合
*/
@GetMapping("/associationWarehouseApi/queryListCorrelationId")
public AjaxResult queryListCorrelationId(@RequestParam(value = "warehouseId", required = false) Long warehouseId);
/**
* 根据code编码查询费用科目
@@ -219,6 +219,11 @@ public class RemoteSystemFeignFallbackFactory implements FallbackFactory<SystemS
return AjaxResult.error("查询关联仓库列表根据关联id查询失败");
}
@Override
public AjaxResult queryListCorrelationId(Long warehouseId) {
return AjaxResult.error("查询仓库关联的用户ID集合失败");
}
@Override
public AjaxResult getSubInfoByCode(String subjectCode) {
return AjaxResult.error("获取科目信息失败" + throwable.getMessage());