|
|
@@ -497,7 +497,7 @@ func (this *SelectController) GetProcessAuditList() {
|
|
|
where = where + " and (b.CreateUserId = '" + this.User.Id + "' or a.CommercialNo='" + registerUser.CommercialNo + "')"
|
|
|
}
|
|
|
if supplierTypeCode != "" {
|
|
|
- where = where + " and b.SupplierTypeCode like '%" + supplierTypeCode + "%'"
|
|
|
+ where = where + " and b.SupplierTypeCode = '" + supplierTypeCode + "'"
|
|
|
}
|
|
|
if supplierName != "" {
|
|
|
where = where + " and a.SupplierName like '%" + supplierName + "%'"
|
|
|
@@ -551,7 +551,7 @@ func (this *SelectController) GetProcessAuditList() {
|
|
|
whereapp = whereapp + " and a.CreateUserId = '" + this.User.Id + "'"
|
|
|
}
|
|
|
if supplierTypeCode != "" {
|
|
|
- whereapp = whereapp + " and a.SupplierTypeName like '%" + supplierTypeCode + "%'"
|
|
|
+ whereapp = whereapp + " and a.SupplierTypeName = '" + supplierTypeCode + "'"
|
|
|
}
|
|
|
if supplierName != "" {
|
|
|
whereapp = whereapp + " and a.SupplierName like '%" + supplierName + "%'"
|