LAPTOP-FO2T5SIU\35838 5 meses atrás
pai
commit
0e5cda5f94

+ 3 - 3
pro-base/src/main/java/com/idea/customerManagement/controller/CustomerManagementController.java

@@ -125,9 +125,9 @@ public class CustomerManagementController extends BaseController {
     public AjaxResult handleImport(@RequestParam("file") MultipartFile file) throws IOException {
         JSONObject jsonObject = modelService.handleImport(file);
         // 启动一个新的线程来触发另一个方法
-        new Thread(() -> {
-            invoiceTask.sendCustomer();
-        }).start();
+//        new Thread(() -> {
+//            invoiceTask.sendCustomer();
+//        }).start();
         return AjaxResult.success(jsonObject);
     }