add - 物料库存统计

collectionStore
wenjy 1 year ago
parent 9f70f90d86
commit 9a43c72971

@ -38,6 +38,8 @@ namespace Aucma.Scada.Business
/// 货道明细
/// </summary>
private IBaseSpaceDetailService _spaceDetailService;
private IBaseBomInfoService _bomInfoService;
#endregion
#region 委托事件
@ -54,6 +56,7 @@ namespace Aucma.Scada.Business
{
_spaceInfoService = registerServices.GetService<IBaseSpaceInfoService>();
_spaceDetailService = registerServices.GetService<IBaseSpaceDetailService>();
_bomInfoService = registerServices.GetService<IBaseBomInfoService>();
}
/// <summary>
@ -67,6 +70,7 @@ namespace Aucma.Scada.Business
try
{
spaceInfos = _spaceInfoService.GetSpaceInfosByStoreCode(storeCode);
}
catch (Exception ex)
{

@ -120,6 +120,9 @@
<Compile Include="Page\InventoryInfo\LinerInventory.xaml.cs">
<DependentUpon>LinerInventory.xaml</DependentUpon>
</Compile>
<Compile Include="Page\InventoryInfo\MaterialStatisticsWindow.xaml.cs">
<DependentUpon>MaterialStatisticsWindow.xaml</DependentUpon>
</Compile>
<Compile Include="Page\InventoryInfo\ShellInventory.xaml.cs">
<DependentUpon>ShellInventory.xaml</DependentUpon>
</Compile>
@ -144,6 +147,7 @@
<Compile Include="viewModel\InStoreInfo\InStoreInfoViewModel.cs" />
<Compile Include="viewModel\InventoryInfo\InventoryInfoViewModel.cs" />
<Compile Include="viewModel\InventoryInfo\LinerInventoryViewModel.cs" />
<Compile Include="viewModel\InventoryInfo\MaterialStatisticsViewModel.cs" />
<Compile Include="viewModel\InventoryInfo\SpaceDetailViewModel.cs" />
<Compile Include="viewModel\LogInfoViewModel.cs" />
<Compile Include="viewModel\MainViewModel.cs" />
@ -191,6 +195,10 @@
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Page\InventoryInfo\MaterialStatisticsWindow.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Page\InventoryInfo\ShellInventory.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>

@ -255,6 +255,7 @@
<ComboBoxItem Content="自动" />
</ComboBox>
<Button Content="计划维护" Command="{Binding PlanInfoEditCommand}" Style="{StaticResource BUTTON_AGREE}" Background="#007DFA" BorderBrush="#007DFA" Width="80" Height="30" Margin="20,0,0,0"/>
<Button Content="物料库存" Command="{Binding MaterialStatisticsCommand}" Style="{StaticResource BUTTON_AGREE}" Background="#007DFA" BorderBrush="#007DFA" Width="80" Height="30" Margin="20,0,0,0"/>
</StackPanel>
</Border>
</Grid>

@ -0,0 +1,140 @@
<Window x:Class="Aucma.Scada.UI.Page.InventoryInfo.MaterialStatisticsWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Aucma.Scada.UI.Page.InventoryInfo"
mc:Ignorable="d"
Title="物料库存统计" Height="650" Width="1000" Name="window" Background="White"
ResizeMode="NoResize" Topmost="True">
<Border Margin="5" Background="#1254AB" CornerRadius="10">
<Border.Effect>
<DropShadowEffect Color="Gray" ShadowDepth="0" BlurRadius="5" Opacity="0.3" Direction="0"></DropShadowEffect>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="12*"/>
<RowDefinition Height="12*"/>
<RowDefinition Height="2*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Border Grid.Row="0" Grid.Column="0" BorderBrush="#1254AB" BorderThickness="2" Margin="5">
<Border.Effect>
<DropShadowEffect Color="#1254AB" ShadowDepth="0" BlurRadius="5" Opacity="0.5" Direction="0"></DropShadowEffect>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="2*"/>
<RowDefinition Height="13*"/>
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="箱 壳 库 库 存" Foreground="#FFFFFF" FontSize="15"/>
</StackPanel>
<DataGrid Grid.Row="1" ItemsSource="{Binding ShellMaterialStockDataGrid}" Background="Transparent"
FontSize="15" ColumnHeaderHeight="35"
RowHeight="31" AutoGenerateColumns="False" RowHeaderWidth="0"
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Hidden"
ScrollViewer.VerticalScrollBarVisibility="Hidden" BorderThickness="0" CanUserAddRows="False"
Foreground="#FFFFFF" >
<!--resourceStyle 399行修改选中字体颜色-->
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding materialType}" Header="物料型号" Width="1*" IsReadOnly="True"/>
<!--<DataGridTextColumn Binding="{Binding executePlanCode}" Header="物料编码" Width="1*" IsReadOnly="True"/>-->
<DataGridTextColumn Binding="{Binding spaceStock}" Header="在库数量" Width="1*" IsReadOnly="True"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
<Border Grid.Row="0" Grid.Column="1" BorderBrush="#1254AB" BorderThickness="2" Margin="5">
<Border.Effect>
<DropShadowEffect Color="#1254AB" ShadowDepth="0" BlurRadius="5" Opacity="0.5" Direction="0"></DropShadowEffect>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="2*"/>
<RowDefinition Height="13*"/>
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="内 胆 库 库 存" Foreground="#FFFFFF" FontSize="15"/>
</StackPanel>
<DataGrid Grid.Row="1" ItemsSource="{Binding LinerMaterialStockDataGrid}" Background="Transparent"
FontSize="15" ColumnHeaderHeight="35"
RowHeight="31" AutoGenerateColumns="False" RowHeaderWidth="0"
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Hidden"
ScrollViewer.VerticalScrollBarVisibility="Hidden" BorderThickness="0" CanUserAddRows="False"
Foreground="#FFFFFF" >
<!--resourceStyle 399行修改选中字体颜色-->
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding materialType}" Header="物料型号" Width="1*" IsReadOnly="True"/>
<!--<DataGridTextColumn Binding="{Binding executePlanCode}" Header="物料编码" Width="1*" IsReadOnly="True"/>-->
<DataGridTextColumn Binding="{Binding spaceStock}" Header="在库数量" Width="1*" IsReadOnly="True"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
<Border Grid.Row="1" Grid.Column="0" BorderBrush="#1254AB" BorderThickness="2" Margin="5">
<Border.Effect>
<DropShadowEffect Color="#1254AB" ShadowDepth="0" BlurRadius="5" Opacity="0.5" Direction="0"></DropShadowEffect>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="2*"/>
<RowDefinition Height="13*"/>
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="泡 前 库 库 存" Foreground="#FFFFFF" FontSize="15"/>
</StackPanel>
<DataGrid Grid.Row="1" ItemsSource="{Binding FoamBeforeMaterialStockDataGrid}" Background="Transparent"
FontSize="15" ColumnHeaderHeight="35"
RowHeight="31" AutoGenerateColumns="False" RowHeaderWidth="0"
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Hidden"
ScrollViewer.VerticalScrollBarVisibility="Hidden" BorderThickness="0" CanUserAddRows="False"
Foreground="#FFFFFF" >
<!--resourceStyle 399行修改选中字体颜色-->
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding materialType}" Header="物料型号" Width="1*" IsReadOnly="True"/>
<!--<DataGridTextColumn Binding="{Binding executePlanCode}" Header="物料编码" Width="1*" IsReadOnly="True"/>-->
<DataGridTextColumn Binding="{Binding spaceStock}" Header="在库数量" Width="1*" IsReadOnly="True"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
<Border Grid.Row="1" Grid.Column="1" BorderBrush="#1254AB" BorderThickness="2" Margin="5">
<Border.Effect>
<DropShadowEffect Color="#1254AB" ShadowDepth="0" BlurRadius="5" Opacity="0.5" Direction="0"></DropShadowEffect>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="2*"/>
<RowDefinition Height="13*"/>
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="发 泡 夹 具 状 态" Foreground="#FFFFFF" FontSize="15"/>
</StackPanel>
</Grid>
</Border>
<Border Grid.Row="2" Grid.Column="1" BorderBrush="#1254AB" BorderThickness="2">
<!--<Border.Effect>
<DropShadowEffect Color="#1254AB" Direction="270" BlurRadius="10" ShadowDepth="5" Opacity="0.5"/>
</Border.Effect>-->
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0,0,20,0">
<Button Content="刷 新" Command="{Binding RefreshCommand}" Style="{StaticResource BUTTON_AGREE}" Background="#007DFA" BorderBrush="#007DFA" Width="80" Height="30" Margin="20,0,0,0"/>
<Button Content="取 消" Command="{Binding CloseWindowCommand}" CommandParameter="{Binding ElementName=window}" Style="{StaticResource BUTTON_AGREE}" Background="#FF9900" Foreground="white" Margin="20,0,50,0" Height="30" BorderBrush="#FF9900" Width="80" />
</StackPanel>
</Border>
</Grid>
</Border>
</Window>

@ -0,0 +1,30 @@
using Aucma.Scada.UI.viewModel.InventoryInfo;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace Aucma.Scada.UI.Page.InventoryInfo
{
/// <summary>
/// MaterialStatisticsWindow.xaml 的交互逻辑
/// </summary>
public partial class MaterialStatisticsWindow : Window
{
public MaterialStatisticsWindow()
{
InitializeComponent();
this.DataContext = new MaterialStatisticsViewModel();
}
}
}

@ -438,4 +438,274 @@
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.InStoreInfo.InStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\InStoreInfo\InStoreInfoViewModel.cs:行号 214 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 11:38:58,792 [1] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 获取货道信息异常<br>【异常类型】SqlSugarException <br>【异常信息】:中文提示 : 多表查询存在别名不一致,请把Where中的x改成s就可以了特殊需求可以使用.Select((x,y)=>new{ id=x.id,name=y.name}).MergeTable().Orderby(xxx=>xxx.Id)功能将Select中的多表结果集变成单表这样就可以不限制别名一样<br>English Message : Join s needs to be the same as Where x <br>【堆栈调用】: 在 SqlSugar.Check.Exception(Boolean isException, String message, String[] args)<br> 在 SqlSugar.QueryBuilder.CheckExpression(Expression expression, String methodName)<br> 在 SqlSugar.QueryableProvider`1._Where(Expression expression)<br> 在 SqlSugar.QueryableProvider`1.Where(Expression`1 expression)<br> 在 HighWayIot.Repository.service.Impl.BaseSpaceInfoServiceImpl.GetSpaceInfosByStoreCode(String storeCode) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\HighWayIot.Repository\service\Impl\BaseSpaceInfoServiceImpl.cs:行号 183 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 11:39:06,489 [1] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 获取货道信息异常<br>【异常类型】SqlSugarException <br>【异常信息】:中文提示 : 多表查询存在别名不一致,请把Where中的x改成s就可以了特殊需求可以使用.Select((x,y)=>new{ id=x.id,name=y.name}).MergeTable().Orderby(xxx=>xxx.Id)功能将Select中的多表结果集变成单表这样就可以不限制别名一样<br>English Message : Join s needs to be the same as Where x <br>【堆栈调用】: 在 SqlSugar.Check.Exception(Boolean isException, String message, String[] args)<br> 在 SqlSugar.QueryBuilder.CheckExpression(Expression expression, String methodName)<br> 在 SqlSugar.QueryableProvider`1._Where(Expression expression)<br> 在 SqlSugar.QueryableProvider`1.Where(Expression`1 expression)<br> 在 HighWayIot.Repository.service.Impl.BaseSpaceInfoServiceImpl.GetSpaceInfosByStoreCode(String storeCode) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\HighWayIot.Repository\service\Impl\BaseSpaceInfoServiceImpl.cs:行号 183 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 11:39:10,790 [1] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 获取货道信息异常<br>【异常类型】SqlSugarException <br>【异常信息】:中文提示 : 多表查询存在别名不一致,请把Where中的x改成s就可以了特殊需求可以使用.Select((x,y)=>new{ id=x.id,name=y.name}).MergeTable().Orderby(xxx=>xxx.Id)功能将Select中的多表结果集变成单表这样就可以不限制别名一样<br>English Message : Join s needs to be the same as Where x <br>【堆栈调用】: 在 SqlSugar.Check.Exception(Boolean isException, String message, String[] args)<br> 在 SqlSugar.QueryBuilder.CheckExpression(Expression expression, String methodName)<br> 在 SqlSugar.QueryableProvider`1._Where(Expression expression)<br> 在 SqlSugar.QueryableProvider`1.Where(Expression`1 expression)<br> 在 HighWayIot.Repository.service.Impl.BaseSpaceInfoServiceImpl.GetSpaceInfosByStoreCode(String storeCode) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\HighWayIot.Repository\service\Impl\BaseSpaceInfoServiceImpl.cs:行号 183 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 11:39:52,840 [1] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 获取货道信息异常<br>【异常类型】SqlSugarException <br>【异常信息】:中文提示 : 多表查询存在别名不一致,请把Where中的x改成s就可以了特殊需求可以使用.Select((x,y)=>new{ id=x.id,name=y.name}).MergeTable().Orderby(xxx=>xxx.Id)功能将Select中的多表结果集变成单表这样就可以不限制别名一样<br>English Message : Join s needs to be the same as Where x <br>【堆栈调用】: 在 SqlSugar.Check.Exception(Boolean isException, String message, String[] args)<br> 在 SqlSugar.QueryBuilder.CheckExpression(Expression expression, String methodName)<br> 在 SqlSugar.QueryableProvider`1._Where(Expression expression)<br> 在 SqlSugar.QueryableProvider`1.Where(Expression`1 expression)<br> 在 HighWayIot.Repository.service.Impl.BaseSpaceInfoServiceImpl.GetSpaceInfosByStoreCode(String storeCode) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\HighWayIot.Repository\service\Impl\BaseSpaceInfoServiceImpl.cs:行号 183 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 11:39:55,841 [1] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 获取货道信息异常<br>【异常类型】SqlSugarException <br>【异常信息】:中文提示 : 多表查询存在别名不一致,请把Where中的x改成s就可以了特殊需求可以使用.Select((x,y)=>new{ id=x.id,name=y.name}).MergeTable().Orderby(xxx=>xxx.Id)功能将Select中的多表结果集变成单表这样就可以不限制别名一样<br>English Message : Join s needs to be the same as Where x <br>【堆栈调用】: 在 SqlSugar.Check.Exception(Boolean isException, String message, String[] args)<br> 在 SqlSugar.QueryBuilder.CheckExpression(Expression expression, String methodName)<br> 在 SqlSugar.QueryableProvider`1._Where(Expression expression)<br> 在 SqlSugar.QueryableProvider`1.Where(Expression`1 expression)<br> 在 HighWayIot.Repository.service.Impl.BaseSpaceInfoServiceImpl.GetSpaceInfosByStoreCode(String storeCode) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\HighWayIot.Repository\service\Impl\BaseSpaceInfoServiceImpl.cs:行号 183 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 11:40:03,490 [1] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 获取货道信息异常<br>【异常类型】SqlSugarException <br>【异常信息】:中文提示 : 多表查询存在别名不一致,请把Where中的x改成s就可以了特殊需求可以使用.Select((x,y)=>new{ id=x.id,name=y.name}).MergeTable().Orderby(xxx=>xxx.Id)功能将Select中的多表结果集变成单表这样就可以不限制别名一样<br>English Message : Join s needs to be the same as Where x <br>【堆栈调用】: 在 SqlSugar.Check.Exception(Boolean isException, String message, String[] args)<br> 在 SqlSugar.QueryBuilder.CheckExpression(Expression expression, String methodName)<br> 在 SqlSugar.QueryableProvider`1._Where(Expression expression)<br> 在 SqlSugar.QueryableProvider`1.Where(Expression`1 expression)<br> 在 HighWayIot.Repository.service.Impl.BaseSpaceInfoServiceImpl.GetSpaceInfosByStoreCode(String storeCode) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\HighWayIot.Repository\service\Impl\BaseSpaceInfoServiceImpl.cs:行号 183 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:07,381 [1] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : UI线程全局异常捕获成功<br>【异常类型】ArgumentException <br>【异常信息】:源数组长度不足。请检查 srcIndex 和长度以及数组的下限。 <br>【堆栈调用】: 在 System.Array.Copy(Array sourceArray, Int32 sourceIndex, Array destinationArray, Int32 destinationIndex, Int32 length, Boolean reliable)<br> 在 System.Collections.Generic.List`1.CopyTo(T[] array, Int32 arrayIndex)<br> 在 System.Collections.ObjectModel.Collection`1.CopyTo(T[] array, Int32 index)<br> 在 System.Linq.Buffer`1..ctor(IEnumerable`1 source)<br> 在 System.Linq.OrderedEnumerable`1.<GetEnumerator>d__1.MoveNext()<br> 在 MS.Internal.Data.EnumerableCollectionView.LoadSnapshotCore(IEnumerable source)<br> 在 MS.Internal.Data.EnumerableCollectionView..ctor(IEnumerable source)<br> 在 MS.Internal.Data.ViewManager.GetViewRecord(Object collection, CollectionViewSource cvs, Type collectionViewType, Boolean createView, Func`2 GetSourceItem)<br> 在 MS.Internal.Data.DataBindEngine.GetViewRecord(Object collection, CollectionViewSource key, Type collectionViewType, Boolean createView, Func`2 GetSourceItem)<br> 在 System.Windows.Data.CollectionViewSource.GetDefaultCollectionView(Object source, Boolean createView, Func`2 GetSourceItem)<br> 在 System.Windows.Data.CollectionViewSource.GetDefaultCollectionView(Object source, DependencyObject d, Func`2 GetSourceItem)<br> 在 System.Windows.Controls.ItemCollection.SetItemsSource(IEnumerable value, Func`2 GetSourceItem)<br> 在 System.Windows.Controls.ItemsControl.OnItemsSourceChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)<br> 在 System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br> 在 System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br> 在 System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)<br> 在 System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, Boolean coerceWithCurrentValue, OperationType operationType)<br> 在 System.Windows.DependencyObject.InvalidateProperty(DependencyProperty dp, Boolean preserveCurrentValue)<br> 在 System.Windows.Data.BindingExpressionBase.Invalidate(Boolean isASubPropertyChange)<br> 在 System.Windows.Data.BindingExpression.TransferValue(Object newValue, Boolean isASubPropertyChange)<br> 在 System.Windows.Data.BindingExpression.ScheduleTransfer(Boolean isASubPropertyChange)<br> 在 MS.Internal.Data.ClrBindingWorker.NewValueAvailable(Boolean dependencySourcesChanged, Boolean initialValue, Boolean isASubPropertyChange)<br> 在 MS.Internal.Data.PropertyPathWorker.UpdateSourceValueState(Int32 k, ICollectionView collectionView, Object newValue, Boolean isASubPropertyChange)<br> 在 MS.Internal.Data.PropertyPathWorker.RefreshValue()<br> 在 MS.Internal.Data.ClrBindingWorker.ScheduleTransferOperation(Object arg)<br> 在 MS.Internal.Data.DataBindOperation.Invoke()<br> 在 MS.Internal.Data.DataBindEngine.ProcessCrossThreadRequests()<br> 在 System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)<br> 在 System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler) <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:09,413 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:09,416 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:11,451 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:11,463 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:13,489 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:13,496 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:15,526 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:15,536 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:17,559 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:17,572 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:19,591 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:19,609 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:21,624 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:21,643 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:23,660 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:23,684 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:25,696 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:25,717 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:29,104 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:36,669 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:38,910 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:48,422 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:48,456 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:50,457 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:50,492 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:52,493 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:52,523 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:54,527 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:54,562 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:56,563 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:56,602 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:58,597 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:36:58,635 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:00,630 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:00,670 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:02,666 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:02,705 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:04,700 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:04,741 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:06,733 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:06,778 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:08,770 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:08,816 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:10,806 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:10,852 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:12,845 [14] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1><HR COLOR=red>
异常时间2023-11-14 13:37:12,886 [15] <BR>
异常级别ERROR <BR>
异 常 类logerror [(null)] <BR>
【附加信息】 : 日志数据绑定异常<br>【异常类型】IndexOutOfRangeException <br>【异常信息】:索引超出了数组界限。 <br>【堆栈调用】: 在 System.Collections.Generic.List`1.Insert(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)<br> 在 System.Collections.ObjectModel.Collection`1.Add(T item)<br> 在 Aucma.Scada.UI.viewModel.OutStoreInfo.OutStoreInfoViewModel.PrintMessageToListBox(String message) <strong style="color:red">位置</strong> E:\桌面\澳柯玛MES项目\程序设计\Aucma.Scada\Aucma.Scada.UI\viewModel\OutStoreInfo\OutStoreInfoViewModel.cs:行号 185 <BR>
<HR Size=1>

File diff suppressed because one or more lines are too long

@ -302,4 +302,380 @@
日志时间2023-11-14 09:58:02,605 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:04:32,891 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:04:34,942 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:04:34,942 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:04:36,969 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:06:21,204 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:06:23,250 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:06:23,250 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:06:25,303 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:22:44,703 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:22:46,789 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:22:46,793 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:22:48,800 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:28:12,841 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:28:14,912 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:28:14,912 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:28:16,935 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:31:00,684 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:31:02,740 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:31:02,740 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:31:04,742 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:33:44,443 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:33:46,469 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:33:46,469 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:33:48,499 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:43:01,674 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:43:03,741 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:43:03,741 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:43:05,775 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:55:55,813 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:56:07,732 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:56:09,765 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:56:09,765 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:56:11,800 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:57:22,550 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:57:24,606 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 10:57:24,606 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 10:57:26,633 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:01:48,945 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:01:50,985 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:01:50,985 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:01:53,013 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:06:57,440 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:06:59,478 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:06:59,478 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:07:01,498 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:08:03,286 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:08:05,327 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:08:05,327 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:08:07,365 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:21:17,227 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:21:19,303 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:21:19,303 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:21:21,309 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:24:49,256 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:24:51,299 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:24:51,299 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:24:53,332 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:30:24,069 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:30:26,118 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:30:26,118 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:30:28,147 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:37:31,014 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:37:33,059 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:37:33,059 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:37:35,075 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:38:40,303 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:38:42,346 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:38:42,347 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:38:44,365 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:39:33,054 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:39:35,129 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 11:39:35,129 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 11:39:37,165 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 13:27:28,605 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 13:27:30,654 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 13:27:30,654 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 13:27:32,678 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 13:30:39,287 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 13:32:16,570 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 13:32:18,624 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 13:32:18,624 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 13:32:20,663 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 13:34:06,950 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 13:34:09,012 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 13:34:09,016 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 13:34:11,021 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 13:34:40,685 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 13:34:42,720 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 13:34:42,720 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 13:34:44,736 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 13:35:37,444 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 13:35:39,517 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败
<-------------->
日志时间2023-11-14 13:35:39,517 [1]
日志级别INFO
日志内容三菱Q系列PLC连接开始
<-------------->
日志时间2023-11-14 13:35:41,548 [1]
日志级别INFO
日志内容三菱Q系列PLC建立连接失败

File diff suppressed because it is too large Load Diff

@ -27,4 +27,5 @@ outstoreTaskType=2
shellHikRobotIp=169.254.100.169
#内胆扫码器IP
linerHikRobotIp=127.0.0.1
searchItems=Option 1%Option 2%Option 3%Option 42%Option 5%Option 6%Option 7%Option 8%Option 9%Option 10%%%
searchItems=Option 1%SC234%Option 3%SC232%Option 5%Option 6%Option 7%Option 8%Option 9%Option 10%%%%%
foamBeforeStoreCode=PBSCK-001

@ -1,6 +1,7 @@
using Aucma.Scada.Business;
using Aucma.Scada.Model.domain;
using Aucma.Scada.UI.Page.AssemblyPlan;
using Aucma.Scada.UI.Page.InventoryInfo;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command;
using HighWayIot.Common;
@ -35,6 +36,8 @@ namespace Aucma.Scada.UI.viewModel.AssemblyPlan
PlanInfoEditCommand = new RelayCommand(PlanInfoEdit);
MaterialStatisticsCommand = new RelayCommand(MaterialStatistics);
assemblyPlanBusiness.RefreshExecutePlanInfoEvent += RefreshDataGrid;
outStoreBusiness.RefreshAssemblyPlanInitEvent += RefreshPlanInfoDataGrid;
@ -211,6 +214,8 @@ namespace Aucma.Scada.UI.viewModel.AssemblyPlan
public RelayCommand<object> NextPassCommand { get; set; }
public RelayCommand PlanInfoEditCommand { get; set; }
public RelayCommand MaterialStatisticsCommand { get; set; }
#endregion
@ -332,6 +337,12 @@ namespace Aucma.Scada.UI.viewModel.AssemblyPlan
planInfoEditWindow.ShowDialog();
}
private void MaterialStatistics()
{
MaterialStatisticsWindow materialStatisticsWindow = new MaterialStatisticsWindow();
materialStatisticsWindow.ShowDialog();
}
/// <summary>
/// 刷新计划执行
/// </summary>

@ -23,19 +23,6 @@ namespace Aucma.Scada.UI.viewModel.AssemblyPlan
SaveSearchCriteriaCommand = new RelayCommand(SaveSearchCriteria);
CloseWindowCommand = new RelayCommand<object>(t => CloseWindow(t));
//Configurations = new ObservableCollection<string>
//{
// "Option 1",
// "Option 2",
// "Option 3",
// "Option 4",
// "Option 5",
// "Option 6",
// "Option 7",
// "Option 8",
// "Option 9",
// "Option 10"
//};
init();
}

@ -0,0 +1,134 @@
using Aucma.Scada.Business;
using Aucma.Scada.Model.domain;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command;
using HighWayIot.Config;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace Aucma.Scada.UI.viewModel.InventoryInfo
{
public class MaterialStatisticsViewModel:ViewModelBase
{
private AppConfig appConfig = AppConfig.Instance;
private InventoryInfoBusiness _inventoryInfoBusiness = InventoryInfoBusiness.Instance;
public MaterialStatisticsViewModel()
{
CloseWindowCommand = new RelayCommand<object>(t => CloseWindow(t));
RefreshCommand = new RelayCommand(init);
init();
}
#region 参数定义
/// <summary>
/// 箱壳物料库存DataGrid
/// </summary>
private ObservableCollection<BaseSpaceInfo> shellMaterialStockDataGrid;
public ObservableCollection<BaseSpaceInfo> ShellMaterialStockDataGrid
{
get { return shellMaterialStockDataGrid; }
set { shellMaterialStockDataGrid = value; RaisePropertyChanged(() => ShellMaterialStockDataGrid); }
}
/// <summary>
/// 内胆物料库存DataGrid
/// </summary>
private ObservableCollection<BaseSpaceInfo> linerMaterialStockDataGrid;
public ObservableCollection<BaseSpaceInfo> LinerMaterialStockDataGrid
{
get { return linerMaterialStockDataGrid; }
set { linerMaterialStockDataGrid = value; RaisePropertyChanged(() => LinerMaterialStockDataGrid); }
}
/// <summary>
/// 泡前库物料库存DataGrid
/// </summary>
private ObservableCollection<BaseSpaceInfo> foamBeforeMaterialStockDataGrid;
public ObservableCollection<BaseSpaceInfo> FoamBeforeMaterialStockDataGrid
{
get { return foamBeforeMaterialStockDataGrid; }
set { foamBeforeMaterialStockDataGrid = value; RaisePropertyChanged(() => FoamBeforeMaterialStockDataGrid); }
}
#endregion
#region 事件定义
public RelayCommand RefreshCommand { get; set; }
public RelayCommand<object> CloseWindowCommand { get; set; }
#endregion
private void init()
{
//箱壳物料库存
ShellMaterialStockDataGrid = new ObservableCollection<BaseSpaceInfo>();
List<BaseSpaceInfo> shellList = _inventoryInfoBusiness.GetSpaceInfos(appConfig.shellStoreCode);
var shellResult = from m in shellList
group m by m.materialType into g
select new BaseSpaceInfo()
{
materialType = g.Key,
spaceStock = g.Sum(m => m.spaceStock)
};
foreach( var item in shellResult)
{
if (string.IsNullOrEmpty(item.materialType)) continue;
ShellMaterialStockDataGrid.Add(new BaseSpaceInfo() { materialType = item.materialType, spaceStock = item.spaceStock });
}
//内胆物料库存
LinerMaterialStockDataGrid = new ObservableCollection<BaseSpaceInfo>();
List<BaseSpaceInfo> linerList = _inventoryInfoBusiness.GetSpaceInfos(appConfig.linerStoreCode);
var linerResult = from m in linerList
group m by m.materialType into g
select new BaseSpaceInfo()
{
materialType = g.Key,
spaceStock = g.Sum(m => m.spaceStock)
};
foreach (var item in linerResult)
{
if (string.IsNullOrEmpty(item.materialType)) continue;
LinerMaterialStockDataGrid.Add(new BaseSpaceInfo() { materialType = item.materialType, spaceStock = item.spaceStock });
}
//泡前库物料库存
FoamBeforeMaterialStockDataGrid = new ObservableCollection<BaseSpaceInfo>();
List<BaseSpaceInfo> foamBeforeList = _inventoryInfoBusiness.GetSpaceInfos(appConfig.foamBeforeStoreCode);
var foamBeforeResult = from m in foamBeforeList
group m by m.materialType into g
select new BaseSpaceInfo()
{
materialType = g.Key,
spaceStock = g.Sum(m => m.spaceStock)
};
foreach (var item in foamBeforeResult)
{
if (string.IsNullOrEmpty(item.materialType)) continue;
FoamBeforeMaterialStockDataGrid.Add(new BaseSpaceInfo() { materialType = item.materialType, spaceStock = item.spaceStock });
}
}
private void CloseWindow(object parameter)
{
var window = parameter as Window;
if (window != null)
{
window.Close();
}
}
}
}

@ -21,7 +21,9 @@ namespace HighWayIot.Config
private AppConfig()
{
stationName = "箱壳内胆组装";
//stationName = "箱壳内胆组装";
//linerStoreCode = "NDJCK-001";
//foamBeforeStoreCode = "PBSCK-001";
}
public string mesConnStr
@ -73,6 +75,15 @@ namespace HighWayIot.Config
set { iniHelper.IniWriteValue("system", "linerStoreCode", value); }
}
/// <summary>
/// 泡前库编号
/// </summary>
public string foamBeforeStoreCode
{
get { return iniHelper.IniReadValue("system", "foamBeforeStoreCode"); }
set { iniHelper.IniWriteValue("system", "foamBeforeStoreCode", value); }
}
/// <summary>
/// 箱壳物料类型编号
/// </summary>

@ -8,6 +8,7 @@ using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Security.Cryptography;
namespace HighWayIot.Repository.service.Impl
{
@ -177,7 +178,28 @@ namespace HighWayIot.Repository.service.Impl
List<BaseSpaceInfo> spaceInfos = null;
try
{
spaceInfos = _mesRepository.GetList(x => x.storeCode == storeCode).ToList();
//spaceInfos = _mesRepository.GetList(x => x.storeCode == storeCode).ToList();
spaceInfos = _mesRepository.Context.Queryable<BaseSpaceInfo>()
.LeftJoin<BaseBomInfo>((s, b) => s.materialType == b.materialCode)
.Where((s, b) => s.storeCode == storeCode)
.Select((s, b) => new BaseSpaceInfo()
{
objId = s.objId,
spaceCode = s.spaceCode,
spaceName = s.spaceName,
spaceCapacity = s.spaceCapacity,
spaceStock = s.spaceStock,
spaceStatus = s.spaceStatus,
spaceType = s.spaceType,
isFlag = s.isFlag,
materialType = b.materialName,
onRouteAmount = s.onRouteAmount,
inStoreFlag = s.inStoreFlag,
outRouteAmount = s.outRouteAmount,
outStoreFlag = s.outStoreFlag,
unusualFlag = s.unusualFlag,
}).ToList();
}
catch (Exception ex)
{

Loading…
Cancel
Save