|
|
@@ -750,6 +750,7 @@ func (this *OilSupplierController) GetJoinStoreEntityList() {
|
|
|
}
|
|
|
}
|
|
|
SupplierName := this.GetString("SupplierName")
|
|
|
+ Grade := this.GetString("Grade")
|
|
|
SupplierTypeName := this.GetString("SupplierTypeName")
|
|
|
CreateOn := this.GetString("CreateOn")
|
|
|
SupplierTypeCode := this.GetString("SupplierTypeCode")
|
|
|
@@ -781,6 +782,9 @@ func (this *OilSupplierController) GetJoinStoreEntityList() {
|
|
|
if SupplierName != "" {
|
|
|
where = where + " and a.SupplierName like '%" + SupplierName + "%'"
|
|
|
}
|
|
|
+ if Grade != "" {
|
|
|
+ where = where + " and a.Grade = '" + Grade + "'"
|
|
|
+ }
|
|
|
if SupplierTypeName != "" {
|
|
|
where = where + " and b.SupplierTypeName like '%" + SupplierTypeName + "%'"
|
|
|
}
|