|
@@ -42,7 +42,6 @@ func (p *ParStage) UpdateStage() {
|
|
} else {
|
|
} else {
|
|
recordsContentData := IC.BaseMysql.SelectBySql(`SELECT * FROM participate_bid_records WHERE position_id =? and project_id =? order by create_date `, p.PositionId, p.ProjectId)
|
|
recordsContentData := IC.BaseMysql.SelectBySql(`SELECT * FROM participate_bid_records WHERE position_id =? and project_id =? order by create_date `, p.PositionId, p.ProjectId)
|
|
if recordsContentData != nil && len(*recordsContentData) > 0 {
|
|
if recordsContentData != nil && len(*recordsContentData) > 0 {
|
|
-
|
|
|
|
for _, rv := range *recordsContentData {
|
|
for _, rv := range *recordsContentData {
|
|
var (
|
|
var (
|
|
recordContent = gconv.String(rv["record_content"])
|
|
recordContent = gconv.String(rv["record_content"])
|
|
@@ -74,6 +73,12 @@ func (p *ParStage) UpdateStage() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ if bidType := gconv.Map(afterM["bidType"]); bidType != nil {
|
|
|
|
+ values := gconv.String(bidType["value"])
|
|
|
|
+ if values != "" {
|
|
|
|
+ recordsMap[values] = createDate
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if p.Stage == "终止参标" {
|
|
if p.Stage == "终止参标" {
|