wms租赁定时任务推送到bms(把获取当前登录人的一级id改为参数传入)

This commit is contained in:
zhou-hongcheng
2026-02-26 09:36:53 +08:00
parent 2a570fbefc
commit 9621deccf1
9 changed files with 70 additions and 4 deletions
@@ -294,6 +294,12 @@ public interface SystemServiceFeign {
@GetMapping("/expenseAccountApi/getInfoByCode")
public AjaxResult getSubInfoByCode(@RequestParam("subjectCode") String subjectCode);
/**
* 根据code编码查询费用科目
*/
@GetMapping("/expenseAccountApi/getInfoByCode2")
public AjaxResult getSubInfoByCode2(@RequestParam("subjectCode") String subjectCode,@RequestParam("topOrganizationId") Long topOrganizationId);
/**
* 根据code编码查询项目信息
@@ -234,6 +234,11 @@ public class RemoteSystemFeignFallbackFactory implements FallbackFactory<SystemS
return AjaxResult.error("获取科目信息失败" + throwable.getMessage());
}
@Override
public AjaxResult getSubInfoByCode2(String subjectCode, Long topOrganizationId) {
return AjaxResult.error("获取科目信息失败" + throwable.getMessage());
}
@Override
public AjaxResult getProjectByCode(String projectCode) {
return AjaxResult.error("获取项目信息失败" + throwable.getMessage());