using BBWY.Controls;
using System.Collections.Generic;
using System.Windows;

namespace BBWY.Client.Views.Order
{
    /// <summary>
    /// SkuRecentSalesConfirmWindow.xaml 的交互逻辑
    /// </summary>
    public partial class SkuRecentSalesConfirmWindow : BWindow
    {
        public SkuRecentSalesConfirmWindow(IList<string> skuIds)
        {
            InitializeComponent();
            txtContent.Text = $"SKU {string.Join(',', skuIds)} 最近30天一件代发已超过5件, 建议批量采购入仓,权重更高,推广费用更便宜";
        }

        private void BButton_Click(object sender, RoutedEventArgs e)
        {
            this.DialogResult = true;
            this.Close();
        }
    }
}