예제 #1
0
        /// <summary>
        /// 解除复核
        /// </summary>
        public void CancelLots()
        {
            CheckLotsViewModel VM = IoC.Get <CheckLotsViewModel>();

            CheckLotsViewModel.TitleStr = "解除复核";
            CheckLotsViewModel.SetReultList(ResultList);
            var result = windowManager.ShowDialog(VM);
        }
예제 #2
0
        /// <summary>
        /// 批量传输
        /// </summary>
        public void SendLots()
        {
            CheckLotsViewModel VM = IoC.Get <CheckLotsViewModel>();

            CheckLotsViewModel.SetReultList(ResultList);
            CheckLotsViewModel.TitleStr = "批量传输";
            var result = windowManager.ShowDialog(VM);
        }
예제 #3
0
        /// <summary>
        /// 重新传输
        /// </summary>
        public void ReSendLots()
        {
            CheckLotsViewModel VM = IoC.Get <CheckLotsViewModel>();

            if (VM.LastReportID != "")
            {
                VM.SendReultList(VM.LastReportID);
            }
        }