更改FTP文件导入

This commit is contained in:
2026-01-28 15:04:16 +08:00
parent f65fa21760
commit b940170607
44 changed files with 2748 additions and 271 deletions

View File

@@ -11,7 +11,7 @@ using System.Windows;
namespace FATrace.WPLApp.ViewModels
{
/// <summary>
/// 工厂-原料生产信息 查询 VM展示 FactoryProductionRecord
/// 工厂-包袋生产 查询 VM展示 FactoryProductionRecord
/// </summary>
public class FactoryProductionRecordViewModel : NavigationViewModel
{
@@ -141,7 +141,7 @@ namespace FATrace.WPLApp.ViewModels
try
{
IsBusy = true;
_log.Info("FactoryProductionRecord 查询开始");
_log.Info("FactoryProductionRecord(工厂-包袋生产) 查询开始");
var data = await Task.Run(() =>
{
@@ -195,11 +195,11 @@ namespace FATrace.WPLApp.ViewModels
PageIndex = data.normalizedPage == 0 ? 1 : data.normalizedPage;
});
_log.Info($"FactoryProductionRecord 查询完成,记录数: {TotalCount}");
_log.Info($"FactoryProductionRecord(工厂-包袋生产) 查询完成,记录数: {TotalCount}");
}
catch (Exception ex)
{
_log.Error($"FactoryProductionRecord 查询失败: {ex}");
_log.Error($"FactoryProductionRecord(工厂-包袋生产) 查询失败: {ex}");
MessageBox.Show($"查询失败: {ex.Message}", "错误", MessageBoxButton.OK, MessageBoxImage.Error);
}
finally