lining 6 years ago
parent
commit
df63cbba4c

+ 1 - 1
src/dashoo.cn/backend/api/controllers/oilsupplier/suppliercertappend.go

@@ -105,7 +105,7 @@ func (this *OilSupplierCertAppendController) GetList() {
 		svcPerm := permission.GetPermissionService(utils.DBE)
 		isauth := svcPerm.IsAuthorized(this.User.Id, "oil_supplier.marketAccess.AllRecord")
 		if !svcPerm.IsAdmin(this.User.Id) && !isauth {
-			where = where + " and a.CreateUserId = '" + this.User.Id + "'"
+			where = where + " and CreateUserId = '" + this.User.Id + "'"
 		}
 	}
 

+ 1 - 1
src/dashoo.cn/frontend_web/src/pages/oilsupplier/supplieraudit/index.vue

@@ -35,7 +35,7 @@
         <el-table-column label="操作" min-width="90" align="center" fixed>
           <template slot-scope="scope">
             <router-link :to="'/oilsupplier/supplieraudit/' + scope.row.Id + '/' + (scope.row.SupplierTypeCode === '01' ? 'goodsedit' : (scope.row.SupplierTypeCode === '02' ? 'basisedit' : 'techedit')) + '?certid=' + scope.row.CertId">
-              <el-button type="primary" plain size="mini" title="分配" v-if="scope.row.Status == '3'">分配</el-button>
+              <el-button type="primary" plain size="mini" title="分办" v-if="scope.row.Status == '3'">分办</el-button>
               <el-button type="primary" plain size="mini" title="审核" v-else>审核</el-button>
             </router-link>