|
@@ -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{} // 存占位符
|