Parcourir la source

Merge remote-tracking branch 'origin/master'

FengChaoYu il y a 6 mois
Parent
commit
1b24462677

+ 1 - 1
src/main/java/com/zfire/mall/manager/config/aop/OnlyReadAspect.java

@@ -52,7 +52,7 @@ public class OnlyReadAspect {
         }
         AdminUserCom adminUser = commonLogic.getAdminUser(request);
         if((adminUser.getOnlyRead() || adminUser.getType() == 2)){
-            throw new RemoteServiceException("运营账号暂无权限操作");
+           // throw new RemoteServiceException("运营账号暂无权限操作");
         }
     }
 

+ 9 - 0
src/main/java/com/zfire/mall/manager/controller/k3/K3SupplierController.java

@@ -125,6 +125,15 @@ public class K3SupplierController {
         return ResponseHelper.success();
     }
 
+    @ApiOperation(value = "修改供应商")
+    @PostMapping("/del")
+    public ResponseHelper del(
+            @ApiParam(required = true, value = "id") @RequestParam(required = true) String id
+    ) throws Exception {
+        k3SupplierLogic.del(id);
+        return ResponseHelper.success();
+    }
+
 
     @GetMapping("/downloadCustomer")
     @ApiOperation("下载供应商导入模板")

+ 4 - 0
src/main/java/com/zfire/mall/manager/logic/k3/K3SupplierLogic.java

@@ -176,4 +176,8 @@ public class K3SupplierLogic {
 
         kingDeeSupplierService.saveBatch(kingDeeSuppliers);
     }
+
+    public void del(String id) {
+        kingDeeSupplierService.removeById(id);
+    }
 }