|
@@ -742,7 +742,7 @@ func ChartBatchUpdateAndUpload(chartClassifyInfo *data_manage.ChartClassify, sys
|
|
|
success := 0
|
|
|
|
|
|
|
|
|
- for i := 0; offset <= total; i++ {
|
|
|
+ for i := 0; offset < total; i++ {
|
|
|
|
|
|
chartInfos, e := data_manage.GetChartInfoListByCondition(condition, []interface{}{chartClassifyIdList}, offset, pageSize)
|
|
|
if e != nil {
|
|
@@ -784,7 +784,7 @@ func ChartBatchUpdateAndUpload(chartClassifyInfo *data_manage.ChartClassify, sys
|
|
|
offset := 0
|
|
|
pageSize := 100
|
|
|
success := 0
|
|
|
- for i := 0; offset <= total; i++ {
|
|
|
+ for i := 0; offset < total; i++ {
|
|
|
chartInfos, e := data_manage.GetChartInfoListByCondition(condition, []interface{}{upChartClassifyIdList}, offset, pageSize)
|
|
|
if e != nil {
|
|
|
err = fmt.Errorf("查询需要新增的图表信息失败: %v", e)
|
|
@@ -870,7 +870,7 @@ func ChartInfoDeleteBatch(chartClassifyInfo *data_manage.ChartClassify, sysUser
|
|
|
success := 0
|
|
|
|
|
|
|
|
|
- for i := 0; offset <= total; i++ {
|
|
|
+ for i := 0; offset < total; i++ {
|
|
|
|
|
|
chartInfos, e := data_manage.GetChartInfoListByCondition(condition, []interface{}{chartClassifyInfo.Source, chartClassifyIdList}, offset, pageSize)
|
|
|
if e != nil {
|
|
@@ -898,6 +898,80 @@ func ChartInfoDeleteBatch(chartClassifyInfo *data_manage.ChartClassify, sysUser
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+func ChartInfoDeleteBatchByChartInfoIds(chartInfoIds []int, chartClassifyId int) (err error) {
|
|
|
+ if utils.BusinessCode == "" || (utils.BusinessCode != utils.BusinessCodeRelease && utils.BusinessCode != utils.BusinessCodeDebug && utils.BusinessCode != utils.BusinessCodeSandbox) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ var tmpErr []error
|
|
|
+ defer func() {
|
|
|
+ stack := ""
|
|
|
+ if err != nil {
|
|
|
+ stack = fmt.Sprintln(stack + err.Error())
|
|
|
+ }
|
|
|
+ if len(tmpErr) > 0 {
|
|
|
+ for _, v := range tmpErr {
|
|
|
+ stack = fmt.Sprintln(stack + v.Error())
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if stack != "" {
|
|
|
+ utils.FileLog.Error("批量删除资源库图表信息失败"+"<br/>"+stack)
|
|
|
+ go alarm_msg.SendAlarmMsg("批量删除资源库图表信息失败"+"<br/>"+stack, 3)
|
|
|
+ }
|
|
|
+ }()
|
|
|
+
|
|
|
+ chartClassifyInfo, err := data_manage.GetChartClassifyById(chartClassifyId)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if chartClassifyInfo.IsSelected == 1 {
|
|
|
+ utils.FileLog.Info("精选分类,不需要删除图表信息")
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ condition := " AND source=1 AND chart_info_id in ? AND forum_chart_info_id > 0"
|
|
|
+ total, err := data_manage.GetChartInfoCountByCondition(condition, []interface{}{chartInfoIds})
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if total == 0 {
|
|
|
+ utils.FileLog.Info("没有需要下架的图表")
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ offset := 0
|
|
|
+ pageSize := 100
|
|
|
+ success := 0
|
|
|
+
|
|
|
+
|
|
|
+ for i := 0; offset < total; i++ {
|
|
|
+
|
|
|
+ chartInfos, e := data_manage.GetChartInfoListByCondition(condition, []interface{}{chartInfoIds}, offset, pageSize)
|
|
|
+ if e != nil {
|
|
|
+ err = fmt.Errorf("查询需要更新的图表信息失败: %v", e)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if len(chartInfos) == 0 {
|
|
|
+ break
|
|
|
+ }
|
|
|
+
|
|
|
+ for _, chartInfo := range chartInfos {
|
|
|
+
|
|
|
+ er, msg := DeleteChart(chartInfo.ChartInfoId)
|
|
|
+ if er != nil {
|
|
|
+ er = fmt.Errorf("图表ID %d, 删除图表数据失败: %s, %v", chartInfo.ChartInfoId, msg, er)
|
|
|
+ tmpErr = append(tmpErr, er)
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ success += 1
|
|
|
+ }
|
|
|
+
|
|
|
+ offset += pageSize
|
|
|
+ }
|
|
|
+ fmt.Println("删除图表数据完成, 删除图表数据总数:", success)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
func SetChartClassifyResourceStatusUp(chartClassifyInfo *data_manage.ChartClassify, sysUser *system.Admin) (errMsg string, err error) {
|
|
|
if chartClassifyInfo.ResourceStatus == utils.ChartClassifyResourceStatusUp {
|