|
|
@@ -453,13 +453,14 @@ func (this *OilSupplierCertSubController) AuditbusList() {
|
|
|
orderby = Prop + " " + Order
|
|
|
}
|
|
|
where := "1 = 1"
|
|
|
+ where += " and c.Id = '" + this.User.Id + "'"
|
|
|
SupplierCertId := this.GetString("SupplierCertId")
|
|
|
SupplierTypeCode := this.GetString("SupplierTypeCode")
|
|
|
if SupplierCertId != "" {
|
|
|
- where = where + " and SupplierCertId = '" + SupplierCertId + "'"
|
|
|
+ where = where + " and a.SupplierCertId = '" + SupplierCertId + "'"
|
|
|
}
|
|
|
if SupplierTypeCode != "" {
|
|
|
- where = where + " and SupplierTypeCode = '" + SupplierTypeCode + "'"
|
|
|
+ where = where + " and a.SupplierTypeCode = '" + SupplierTypeCode + "'"
|
|
|
}
|
|
|
|
|
|
total, list := svc.GetWaitAuditBusinesslist(page.CurrentPage, page.Size, orderby, OilSupplierCertSubName, OilClassOrgSettingName, where)
|