zouxuan před 3 roky
rodič
revize
348b5c9451

+ 20 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/page/BaseOrganQueryInfo.java

@@ -0,0 +1,20 @@
+package com.ym.mec.biz.dal.page;
+
+import com.ym.mec.common.page.QueryInfo;
+
+/**
+* @author zx
+* @date 2021/9/26 15:52
+*/
+public class BaseOrganQueryInfo extends QueryInfo {
+
+    private String organId;
+
+    public String getOrganId() {
+        return organId;
+    }
+
+    public void setOrganId(String organId) {
+        this.organId = organId;
+    }
+}

+ 6 - 0
mec-biz/src/main/resources/config/mybatis/PracticeGroupSellPriceMapper.xml

@@ -95,6 +95,9 @@
 		<if test="search != null and search != ''">
 			AND o.name_ LIKE CONCAT('%',#{search},'%')
 		</if>
+		<if test="organId != null and organId != ''">
+			AND FIND_IN_SET(pgsp.organ_id_,#{organId})
+		</if>
 		ORDER BY pgsp.organ_id_
 		<include refid="global.limit" />
 	</select>
@@ -107,5 +110,8 @@
 		<if test="search != null and search != ''">
 			AND o.name_ LIKE CONCAT('%',#{search},'%')
 		</if>
+		<if test="organId != null and organId != ''">
+			AND FIND_IN_SET(pgsp.organ_id_,#{organId})
+		</if>
 	</select>
 </mapper>

+ 6 - 1
mec-web/src/main/java/com/ym/mec/web/controller/PracticeGroupSellPriceController.java

@@ -1,6 +1,8 @@
 package com.ym.mec.web.controller;
 
 import com.ym.mec.biz.dal.entity.PracticeGroupSellPrice;
+import com.ym.mec.biz.dal.page.BaseOrganQueryInfo;
+import com.ym.mec.biz.service.OrganizationService;
 import com.ym.mec.biz.service.PracticeGroupSellPriceService;
 import com.ym.mec.common.controller.BaseController;
 import com.ym.mec.common.exception.BizException;
@@ -25,11 +27,14 @@ public class PracticeGroupSellPriceController extends BaseController {
 
 	@Autowired
 	private PracticeGroupSellPriceService practiceGroupSellPriceService;
+	@Autowired
+	private OrganizationService organizationService;
 
 	@ApiOperation("分页查询")
 	@GetMapping(value = "/list")
 	@PreAuthorize("@pcs.hasPermissions('practiceGroupSellPrice/list')")
-	public Object getList(QueryInfo queryInfo) {
+	public Object getList(BaseOrganQueryInfo queryInfo) {
+		queryInfo.setOrganId(organizationService.getEmployeeOrgan(queryInfo.getOrganId()));
 		return succeed(practiceGroupSellPriceService.queryPage(queryInfo));
 	}