change-一线下线AB库切换完善

main
liuwf 12 months ago
parent 9085610112
commit 901f4a62b5

@ -386,11 +386,7 @@ namespace Aucma.Core.ProductOffLine.Business
bool plcResult = false; bool plcResult = false;
// 先查询分垛方向A或者B // 先查询分垛方向A或者B
string direction = getDirectioneEvent?.Invoke(materialType); string direction = getDirectioneEvent?.Invoke(materialType);
if (direction == "")
{
//未设置方向处理,默认去A
direction = "A";
}
plcResult = DownLoadPassFlag(ScannerNo, direction); //下发plc放行信号,分垛AB库 plcResult = DownLoadPassFlag(ScannerNo, direction); //下发plc放行信号,分垛AB库
return plcResult; return plcResult;
} }

@ -57,7 +57,21 @@ namespace Aucma.Core.ProductOffLine.ViewModels
private void DirectionInit() private void DirectionInit()
{ {
#region 分垛模式
if (appConfig.SelectedMaterialType == "1")
{
SelectedMaterialType = "手动模式";
}
else if (appConfig.SelectedMaterialType == "2")
{
SelectedMaterialType = "自动模式";
}
else
{
SelectedMaterialType = "手动模式";
appConfig.SelectedMaterialType = "1";
}
#endregion
#region 默认方向 #region 默认方向
if (appConfig.PalletizDirection == "1") if (appConfig.PalletizDirection == "1")
@ -85,26 +99,28 @@ namespace Aucma.Core.ProductOffLine.ViewModels
/// <param name="materialType"></param> /// <param name="materialType"></param>
public String getInstoreDirection(string materialType) public String getInstoreDirection(string materialType)
{ {
// 二线默认A库一线默认B库
string direction = "A";
string direction = string.Empty; // 自动模式模式
Application.Current.Dispatcher.Invoke(() => if (appConfig.SelectedMaterialType == "2")
{ {
// 设置了入库自动模式模式 BaseMaterialInfo info = _baseMaterialInfoServices.Query(x => x.MaterialCode == materialType).FirstOrDefault();
if (SelectedMaterialType != null && SelectedMaterialType.Content.ToString() == "自动模式") if (info != null && !string.IsNullOrEmpty(info.InboundDirection)) // 设置过了方向
{ {
BaseMaterialInfo info = _baseMaterialInfoServices.Query(x => x.MaterialCode == materialType).FirstOrDefault(); direction = info.InboundDirection;
if (info != null && !string.IsNullOrEmpty(info.InboundDirection)) // 设置过了方向
{
direction = info.InboundDirection;
}
} }
else // 设置手动模式 else // 自动模式未设置方向,按照手动模式走
{ {
if (IsSelectedOptionA == true) direction = "A"; direction = appConfig.PalletizDirection == "1" ? "A" : "B";
if (IsSelectedOptionB == true) direction = "B";
} }
});
}
else // 设置手动模式
{
direction = appConfig.PalletizDirection == "1" ? "A" : "B";
}
return direction; return direction;
} }
@ -150,14 +166,26 @@ namespace Aucma.Core.ProductOffLine.ViewModels
/// 分垛模式(自动模式,手动模式)SelectedMaterialType.content.tostring() /// 分垛模式(自动模式,手动模式)SelectedMaterialType.content.tostring()
/// </summary> /// </summary>
/// private string _selectedMaterialType; /// private string _selectedMaterialType;
private ComboBoxItem _selectedMaterialType; private string _selectedMaterialType;
public ComboBoxItem SelectedMaterialType public string SelectedMaterialType
{ {
get { return _selectedMaterialType; } get { return _selectedMaterialType; }
set set
{ {
if (_selectedMaterialType != value) if (_selectedMaterialType != value)
{ {
if (value == "手动模式")
{
appConfig.SelectedMaterialType = "1";
}
else if (value == "自动模式")
{
appConfig.SelectedMaterialType = "2";
}
else
{
appConfig.SelectedMaterialType = "1";
}
_selectedMaterialType = value; _selectedMaterialType = value;
OnPropertyChanged(nameof(SelectedMaterialType)); OnPropertyChanged(nameof(SelectedMaterialType));
} }
@ -180,7 +208,7 @@ namespace Aucma.Core.ProductOffLine.ViewModels
if (result == MessageBoxResult.Yes) if (result == MessageBoxResult.Yes)
{ {
var obj = PlcHelper.melsecList.FirstOrDefault(d => d.EquipName.Equals("成品下线Plc")); var obj = PlcHelper.melsecList.FirstOrDefault(d => d.EquipName.Equals("成品下线Plc"));
// obj = null; // obj = null;
if (obj != null) if (obj != null)
{ {
bool flag = obj.plc.ReadBool("B100A"); bool flag = obj.plc.ReadBool("B100A");
@ -194,7 +222,7 @@ namespace Aucma.Core.ProductOffLine.ViewModels
{ {
IsSelectedOptionB = false; IsSelectedOptionB = false;
} }
MessageBox.Show("切换成功");
} }
else else
{ {
@ -227,10 +255,11 @@ namespace Aucma.Core.ProductOffLine.ViewModels
if (value) if (value)
{ {
var result = MessageBox.Show("确认切换B方向吗?", "确认", MessageBoxButton.YesNo, MessageBoxImage.Question); var result = MessageBox.Show("确认切换B方向吗?", "确认", MessageBoxButton.YesNo, MessageBoxImage.Question);
if (result == MessageBoxResult.Yes) if (result == MessageBoxResult.Yes)
{ {
var obj = PlcHelper.melsecList.FirstOrDefault(d => d.EquipName.Equals("成品下线Plc")); var obj = PlcHelper.melsecList.FirstOrDefault(d => d.EquipName.Equals("成品下线Plc"));
// obj = null; // obj = null;
if (obj != null) if (obj != null)
{ {
bool flag = obj.plc.ReadBool("B100A"); bool flag = obj.plc.ReadBool("B100A");
@ -245,7 +274,7 @@ namespace Aucma.Core.ProductOffLine.ViewModels
{ {
IsSelectedOptionA = false; IsSelectedOptionA = false;
} }
MessageBox.Show("切换成功");
} }
else else
{ {

@ -70,7 +70,7 @@
<Grid Grid.Row="1"> <Grid Grid.Row="1">
<WrapPanel VerticalAlignment="Center" HorizontalAlignment="Left"> <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="分垛模式选择:" Margin="10 0" Foreground="White" FontSize="20" VerticalAlignment="Center"/> <TextBlock Text="分垛模式选择:" Margin="10 0" Foreground="White" FontSize="20" VerticalAlignment="Center"/>
<ComboBox Name="SelectedMaterialType" SelectedItem="{Binding SelectedMaterialType,Mode=TwoWay}" Width="200" Margin="5 0 0 0" VerticalAlignment="Center" FontSize="30" Foreground="White"> <ComboBox Name="SelectedMaterialType" SelectedValue="{Binding SelectedMaterialType,Mode=TwoWay}" SelectedValuePath="Content" Width="200" Margin="5 0 0 0" VerticalAlignment="Center" FontSize="30" Foreground="White">
<ComboBoxItem Content="手动模式" Foreground="Blue" /> <ComboBoxItem Content="手动模式" Foreground="Blue" />
<ComboBoxItem Content="自动模式" Foreground="Blue"/> <ComboBoxItem Content="自动模式" Foreground="Blue"/>
</ComboBox> </ComboBox>

@ -229,10 +229,10 @@
"EquipName": "成品下线Plc", "EquipName": "成品下线Plc",
"PlcType": "Melsec", "PlcType": "Melsec",
"Enabled": true, "Enabled": true,
"IP": "127.0.0.1", // "IP": "127.0.0.1",
"Port": 6000 // "Port": 6000
//"IP": "10.10.92.70", "IP": "10.10.92.70",
// "Port": 2015 "Port": 2015
} }
], ],

Loading…
Cancel
Save