WinLocationInput.xaml.cs
2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
using HHECS.Bll;
using HHECS.Model;
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 HHECS.Controls
{
/// <summary>
/// Frm_LocationInput.xaml 的交互逻辑
/// </summary>
public partial class WinLocationInput : Window
{
public Equipment DeviceEntity { get; set; }
public Location NewLocation { get; set; }
public string LocationCode
{
get { return (string)GetValue(locationCodeProperty); }
set { SetValue(locationCodeProperty, value); }
}
// Using a DependencyProperty as the backing store for locationCode. This enables animation, styling, binding, etc...
public static readonly DependencyProperty locationCodeProperty =
DependencyProperty.Register("locationCode", typeof(string), typeof(WinLocationInput), new PropertyMetadata(""));
public WinLocationInput()
{
InitializeComponent();
Txt_Location.SetBinding(TextBox.TextProperty, new Binding("LocationCode") { Source = this, Mode = BindingMode.TwoWay });
Lab_1.Content = $"请重新录入一个巷道为{DeviceEntity?.RoadWay}的库位";
}
private void Btn_Cancel_Click(object sender, RoutedEventArgs e)
{
this.DialogResult = false;
}
private void Btn_Verify_Click(object sender, RoutedEventArgs e)
{
if (string.IsNullOrEmpty(LocationCode))
{
MessageBox.Show("请先录入库位");
}
else
{
BllResult<List<Location>> bllResult = AppSession.Bll.GetAllLocations(null, null, null, null, null, null, LocationCode);
if (bllResult.Success)
{
Location locationEntity = bllResult.Data[0];
if (locationEntity.Roadway.ToString() == DeviceEntity.RoadWay)
{
if (locationEntity.Status == "empty" && string.IsNullOrWhiteSpace(locationEntity.ContainerCode))
{
NewLocation = locationEntity;
this.DialogResult = true;
}
else
{
MessageBox.Show("库位状态非空闲");
}
}
else
{
MessageBox.Show($"库位巷道{bllResult.Data[0].Type}与堆垛机巷道类型:L不一致");
}
}
else
{
MessageBox.Show($"未找到库位{bllResult.Msg}");
}
}
}
}
}