|
|
@@ -714,6 +714,20 @@ public class CommonController extends BaseController<Map<String, Object>> {
|
|
|
public ResponseResultVO<List<Map<String, Object>>> getInventoryByList(@RequestBody Map<String, Object> param) {
|
|
|
return commonService.getInventoryByList(param);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @desc : 获取组织仓库
|
|
|
+ * @author : 付斌
|
|
|
+ * @date : 2024-04-10 13:30
|
|
|
+ */
|
|
|
+ @ApiOperation(
|
|
|
+ value = "获取组织仓库",
|
|
|
+ notes = "获取组织仓库"
|
|
|
+ )
|
|
|
+ @PostMapping("get_org_wh")
|
|
|
+ public ResponseResultVO<List<Map<String, Object>>> getOrgWh(@RequestBody Map<String, Object> param) {
|
|
|
+ return commonService.getOrgWh(param);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|