|
@@ -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);
|
|
|
}
|
|
|
|