|
|
@@ -71,6 +71,7 @@ func (this *OilSupplierCertAppendController) GetList() {
|
|
|
if orderby == "SupplierName" {
|
|
|
orderby = "a.SupplierName"
|
|
|
}
|
|
|
+ SupplierName := this.GetString("SupplierName")
|
|
|
ApplyDate := this.GetString("ApplyDate")
|
|
|
RecUnitId := this.GetString("RecUnitId")
|
|
|
RecUnitName := this.GetString("RecUnitName")
|
|
|
@@ -84,6 +85,10 @@ func (this *OilSupplierCertAppendController) GetList() {
|
|
|
where = where + " and b.ApplyDate like '%" + ApplyDate + "%'"
|
|
|
}
|
|
|
|
|
|
+ if SupplierName != "" {
|
|
|
+ where = where + " and a.SupplierName like '%" + SupplierName + "%'"
|
|
|
+ }
|
|
|
+
|
|
|
if RecUnitId != "" {
|
|
|
where = where + " and b.RecUnitId like '%" + RecUnitId + "%'"
|
|
|
}
|