|
@@ -240,18 +240,9 @@ func tenderRepeat_C(v *Info, info *Info) bool {
|
|
|
if v.budget != 0 && info.budget != 0 && v.budget != info.budget {
|
|
|
return true
|
|
|
}
|
|
|
- //原始地址...
|
|
|
- //if v.buyer != "" && info.buyer != "" && v.buyer != info.buyer {
|
|
|
- // return true
|
|
|
- //}
|
|
|
-
|
|
|
if v.bidopentime != 0 && info.bidopentime != 0 && isBidopentimeInterval(info.bidopentime,v.bidopentime) {
|
|
|
return true
|
|
|
}
|
|
|
- //if v.bidopenaddress != "" && info.bidopenaddress != "" && v.bidopenaddress != info.bidopenaddress {
|
|
|
- // return true
|
|
|
- //}
|
|
|
-
|
|
|
return false
|
|
|
}
|
|
|
|
|
@@ -344,7 +335,7 @@ func winningRepeat_B(v *Info, info *Info, reason string) (bool, string) {
|
|
|
func winningRepeat_C(v *Info, info *Info) bool {
|
|
|
|
|
|
if v.bidamount != 0 && info.bidamount != 0 && isBidWinningAmount(v.bidamount,info.bidamount) {
|
|
|
- //避免抽错金额- title+name+winner
|
|
|
+ //避免抽错金额-
|
|
|
if ((v.projectcode!=""&&info.projectcode!=""&&v.projectcode==info.projectcode)||
|
|
|
(v.contractnumber!=""&&info.contractnumber!=""&&v.contractnumber==info.contractnumber)) &&
|
|
|
(v.winner!=""&&info.winner!=""&&v.winner==info.winner) {
|