|
|
@@ -56,6 +56,9 @@ func (this *OilContractSumScoreController) GetEntityList() {
|
|
|
NormalSumScore4 := this.GetString("NormalSumScore4")
|
|
|
SumScore4 := this.GetString("SumScore4")
|
|
|
Content4 := this.GetString("Content4")
|
|
|
+ NormalSumScore5 := this.GetString("NormalSumScore5")
|
|
|
+ SumScore5 := this.GetString("SumScore5")
|
|
|
+ Content5 := this.GetString("Content5")
|
|
|
ConclusionReason := this.GetString("ConclusionReason")
|
|
|
Conclusion := this.GetString("Conclusion")
|
|
|
CreateOn := this.GetString("CreateOn")
|
|
|
@@ -125,7 +128,17 @@ func (this *OilContractSumScoreController) GetEntityList() {
|
|
|
if SumScore4 != "" {
|
|
|
where = where + " and SumScore4 like '%" + SumScore4 + "%'"
|
|
|
}
|
|
|
+ if Content5 != "" {
|
|
|
+ where = where + " and Content5 like '%" + Content5 + "%'"
|
|
|
+ }
|
|
|
+
|
|
|
+ if NormalSumScore5 != "" {
|
|
|
+ where = where + " and NormalSumScore5 like '%" + NormalSumScore5 + "%'"
|
|
|
+ }
|
|
|
|
|
|
+ if SumScore5 != "" {
|
|
|
+ where = where + " and SumScore5 like '%" + SumScore5 + "%'"
|
|
|
+ }
|
|
|
if ConclusionReason != "" {
|
|
|
where = where + " and ConclusionReason like '%" + ConclusionReason + "%'"
|
|
|
}
|
|
|
@@ -135,9 +148,9 @@ func (this *OilContractSumScoreController) GetEntityList() {
|
|
|
where = where + " and Conclusion like '%" + Conclusion + "%'"
|
|
|
}
|
|
|
|
|
|
- if CreateOn != "" {
|
|
|
- where = where + " and CreateOn like '%" + CreateOn + "%'"
|
|
|
- }
|
|
|
+ //if CreateOn != "" {
|
|
|
+ // where = where + " and CreateOn like '%" + CreateOn + "%'"
|
|
|
+ //}
|
|
|
|
|
|
|
|
|
if CreateUserId != "" {
|
|
|
@@ -176,7 +189,7 @@ func (this *OilContractSumScoreController) GetEntityList() {
|
|
|
|
|
|
svc := contractSumScore.GetOilContractSumScoreService(utils.DBE)
|
|
|
var list []contractSumScore.OilContractSumScore
|
|
|
- total := svc.GetPagingEntitiesWithOrderBytbl(this.User.AccCode, page.CurrentPage, page.Size, orderby, asc, &list, where)
|
|
|
+ total := svc.GetPagingEntitiesWithOrderBytbl("", page.CurrentPage, page.Size, orderby, asc, &list, where)
|
|
|
var datainfo DataInfo
|
|
|
datainfo.Items = list
|
|
|
datainfo.CurrentItemCount = total
|