Browse Source

Merge branch 'feature/v4.8.97_ws' of qmx/jy into feature/v4.8.97

wangshan 1 year ago
parent
commit
92829c7472
1 changed files with 4 additions and 1 deletions
  1. 4 1
      src/jfw/modules/bigmember/src/entity/report.go

+ 4 - 1
src/jfw/modules/bigmember/src/entity/report.go

@@ -12,6 +12,7 @@ const (
 	TableMemberReportProject    = "member_report_project" // 大会员周报月报-项目明细表
 	From                        = "yyszsyy"
 	TableMemberReportProjectYys = "member_report_project_yys" // 大会员周报月报-项目明细表
+	BidStatus                   = `"中标","成交","合同","验收"`
 )
 
 type ReportProjectInfoParam struct {
@@ -44,7 +45,9 @@ func GetReportProjectInfo(param *ReportProjectInfoParam, positionId int64) (data
 		} // 关键词组
 		qstr = append(qstr, fmt.Sprintf("(%s)", strings.Join(tmpArr, " or ")))
 	}
-	// 省份
+	//信息类型
+	qstr = append(qstr, fmt.Sprintf("bidstatus in (%s)", BidStatus))
+	// 省份中标
 	if param.Area != nil && len(param.Area) > 0 {
 		area, city := []interface{}{}, []interface{}{} // 存值
 		areaS, cityS := []string{}, []string{}         // 存占位符