|
@@ -1422,7 +1422,7 @@ class MainWindow(QMainWindow):
|
1422
|
1422
|
file_name = path.name
|
1423
|
1423
|
# 在这里处理文件保存逻辑
|
1424
|
1424
|
Back.WD.WDExport.main_function_example(self, db_path, excelname_utf8,folder_name,file_name)
|
1425
|
|
- QMessageBox.information(self, "保存成功", f"文件将保存到: {file_name}")
|
|
1425
|
+ # QMessageBox.information(self, "保存成功", f"文件将保存到: {file_name}")
|
1426
|
1426
|
else:
|
1427
|
1427
|
QMessageBox.warning(self, "取消", "用户取消了保存操作")
|
1428
|
1428
|
|
|
@@ -1449,7 +1449,7 @@ class MainWindow(QMainWindow):
|
1449
|
1449
|
file_name = path.name
|
1450
|
1450
|
# 在这里处理文件保存逻辑
|
1451
|
1451
|
Back.GS.GSExport.main_function_example(self, db_path, excelname_utf8,folder_name,file_name)
|
1452
|
|
- QMessageBox.information(self, "保存成功", f"文件将保存到: {file_name}")
|
|
1452
|
+ # QMessageBox.information(self, "保存成功", f"文件将保存到: {file_name}")
|
1453
|
1453
|
else:
|
1454
|
1454
|
QMessageBox.warning(self, "取消", "用户取消了保存操作")
|
1455
|
1455
|
|
|
@@ -1476,7 +1476,7 @@ class MainWindow(QMainWindow):
|
1476
|
1476
|
file_name = path.name
|
1477
|
1477
|
# 在这里处理文件保存逻辑
|
1478
|
1478
|
Back.GC.GCExport.main_function_example(self, utf_en, db_path,folder_name,file_name)
|
1479
|
|
- QMessageBox.information(self, "保存成功", f"文件将保存到: {file_name}")
|
|
1479
|
+ # QMessageBox.information(self, "保存成功", f"文件将保存到: {file_name}")
|
1480
|
1480
|
else:
|
1481
|
1481
|
QMessageBox.warning(self, "取消", "用户取消了保存操作")
|
1482
|
1482
|
# 调用main_function_example函数
|