|
@@ -14,7 +14,7 @@ func GetListByProductId(productId int64) (list []*ChartPermission, err error) {
|
|
|
|
|
|
// GetFiccListExceptTacticByProductId 获取ficc 除了市场策略的所有权限
|
|
|
func GetFiccListExceptTacticByProductId() (list []*ChartPermission, err error) {
|
|
|
- err = global.MYSQL["rddp"].Where(" enabled = 1 AND permission_type = 0 AND product_id = 1 and parent_id >0 and classify_name != '市场策略' and classify_name != '固定收益'").Order("sort asc").Find(&list).Error
|
|
|
+ err = global.MYSQL["rddp"].Where(" enabled = 1 AND permission_type = 0 AND product_id = 1 and parent_id >0 and classify_name != '市场策略'").Order("sort asc").Find(&list).Error
|
|
|
return
|
|
|
}
|
|
|
|
|
@@ -58,6 +58,12 @@ func GetByChartPermissionId(chartPermissionId int) (item *ChartPermission, err e
|
|
|
|
|
|
// GetFiccFirstListExceptTacticByProductId 获取ficc 除了市场策略的所有父级
|
|
|
func GetFiccFirstListExceptTacticByProductId() (list []*ChartPermission, err error) {
|
|
|
+ err = global.MYSQL["rddp"].Where(" enabled = 1 AND permission_type = 0 AND product_id = 1 and classify_name != '市场策略' AND parent_id = 0").Order("sort asc").Find(&list).Error
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+// GetFiccFirstListExceptTacticAndFixedByProductId 获取ficc 除了市场策略和固定收益的所有父级
|
|
|
+func GetFiccFirstListExceptTacticAndFixedByProductId() (list []*ChartPermission, err error) {
|
|
|
err = global.MYSQL["rddp"].Where(" enabled = 1 AND permission_type = 0 AND product_id = 1 and classify_name != '市场策略' and classify_name != '固定收益' AND parent_id = 0").Order("sort asc").Find(&list).Error
|
|
|
return
|
|
|
}
|