步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
723 B

2 years ago
using BBWY.Client.Models.Statistics.AfterSaleOrder;
3 years ago
using BBWY.Controls;
namespace BBWY.Client.Views.Order
{
/// <summary>
/// EditAfterSaleOrderSku.xaml 的交互逻辑
/// </summary>
public partial class EditAfterSaleOrderSku : BWindow
{
public AfterSaleOrder SaleOrder { get; set; }
public EditAfterSaleOrderSku(AfterSaleOrder afterSaleOrder)
{
InitializeComponent();
3 years ago
SaleOrder = afterSaleOrder.Clone() as AfterSaleOrder;
3 years ago
this.DataContext = this;
}
private void btn_Save_Click(object sender, System.Windows.RoutedEventArgs e)
{
this.DialogResult = true;
this.Close();
}
}
}