Browse Source

财务管理系统

xyxie 1 year ago
parent
commit
d026810c81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      controller/contract/service.go

+ 1 - 1
controller/contract/service.go

@@ -97,7 +97,7 @@ func (sr *ServiceController) List(c *gin.Context) {
 		if v.Title == "FICC小套餐" {
 			//获取ficc小套餐品种
 			// 获取FICC权限
-			ficcCond := `enabled = 1 AND parent_id> 0 AND permission_type = 0 AND product_id = ?  `
+			ficcCond := `enabled = 1 AND permission_type = 0 AND product_id = ?  `
 			ficcPars := make([]interface{}, 0)
 			ficcPars = append(ficcPars, 1)
 			items, e := crm.GetPermissionSetItemsByCondition(ficcCond, ficcPars)