|
@@ -915,4 +915,16 @@ public class CommonService extends BaseService<Map<String, Object>> {
|
|
|
return super.mergeListWithCount(param, commonMapper.getGoodsForPurchaseReturn(param),
|
|
return super.mergeListWithCount(param, commonMapper.getGoodsForPurchaseReturn(param),
|
|
|
commonMapper.getGoodsForPurchaseReturnByPage(param));
|
|
commonMapper.getGoodsForPurchaseReturnByPage(param));
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @desc : 获取员工的范围权限类型
|
|
|
|
|
+ * @author : 常皓宁
|
|
|
|
|
+ * @date : 2024/4/2 10:06
|
|
|
|
|
+ */
|
|
|
|
|
+ public ResponseResultVO<List<Map<String, Object>>> getPurviewType(Map<String, Object> param) {
|
|
|
|
|
+ // 获取供应商和客户
|
|
|
|
|
+ List<Map<String, Object>> list = commonMapper.getPurviewType(param);
|
|
|
|
|
+ return ResponseResultUtil.success(list);
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|