|
@@ -55,7 +55,7 @@ func getCellValueByType(value string, valueType int, tableDataList [][]LuckyShee
|
|
|
if len(coordIntArr) == 2 {
|
|
|
x, y := coordIntArr[0]-1, coordIntArr[1]-1
|
|
|
conditionValue, err := strconv.ParseFloat(tableDataList[x][y].Monitor, 64)
|
|
|
- if err == nil {
|
|
|
+ if err != nil {
|
|
|
return 0, false
|
|
|
}
|
|
|
return conditionValue, true
|
|
@@ -76,7 +76,7 @@ func checkCellRule(ruleInfo *models.ExcelInfoRuleMappingView, value string, tabl
|
|
|
var err error
|
|
|
|
|
|
if ruleInfo.RuleType == 5 {
|
|
|
- tableTime, err = time.Parse(utils.FormatDate, value)
|
|
|
+ tableTime, err = time.ParseInLocation(utils.FormatDate, value, time.Local)
|
|
|
if err != nil {
|
|
|
return false
|
|
|
}
|
|
@@ -89,7 +89,7 @@ func checkCellRule(ruleInfo *models.ExcelInfoRuleMappingView, value string, tabl
|
|
|
switch ruleInfo.RuleType {
|
|
|
|
|
|
case 1:
|
|
|
- conditionValue, ok := getCellValueByType(ruleInfo.LeftValue, ruleInfo.LeftValueType, tableDataList)
|
|
|
+ conditionValue, ok := getCellValueByType(ruleInfo.LeftValueBack, ruleInfo.LeftValueType, tableDataList)
|
|
|
if !ok {
|
|
|
return false
|
|
|
}
|
|
@@ -98,7 +98,7 @@ func checkCellRule(ruleInfo *models.ExcelInfoRuleMappingView, value string, tabl
|
|
|
}
|
|
|
|
|
|
case 2:
|
|
|
- conditionValue, ok := getCellValueByType(ruleInfo.LeftValue, ruleInfo.LeftValueType, tableDataList)
|
|
|
+ conditionValue, ok := getCellValueByType(ruleInfo.LeftValueBack, ruleInfo.LeftValueType, tableDataList)
|
|
|
if !ok {
|
|
|
return false
|
|
|
}
|
|
@@ -107,7 +107,7 @@ func checkCellRule(ruleInfo *models.ExcelInfoRuleMappingView, value string, tabl
|
|
|
}
|
|
|
|
|
|
case 3:
|
|
|
- leftcondValue, ok := getCellValueByType(ruleInfo.LeftValue, ruleInfo.LeftValueType, tableDataList)
|
|
|
+ leftcondValue, ok := getCellValueByType(ruleInfo.LeftValueBack, ruleInfo.LeftValueType, tableDataList)
|
|
|
if !ok {
|
|
|
return false
|
|
|
}
|
|
@@ -120,7 +120,7 @@ func checkCellRule(ruleInfo *models.ExcelInfoRuleMappingView, value string, tabl
|
|
|
}
|
|
|
|
|
|
case 4:
|
|
|
- conditionValue, ok := getCellValueByType(ruleInfo.LeftValue, ruleInfo.LeftValueType, tableDataList)
|
|
|
+ conditionValue, ok := getCellValueByType(ruleInfo.LeftValueBack, ruleInfo.LeftValueType, tableDataList)
|
|
|
if !ok {
|
|
|
return false
|
|
|
}
|
|
@@ -131,7 +131,7 @@ func checkCellRule(ruleInfo *models.ExcelInfoRuleMappingView, value string, tabl
|
|
|
case 5:
|
|
|
|
|
|
var dateStart, dataEnd time.Time
|
|
|
- switch value {
|
|
|
+ switch ruleInfo.LeftValueBack {
|
|
|
|
|
|
case "today":
|
|
|
|