/// <summary>
        /// 模型数据改变
        /// </summary>
        /// <param name="obj"></param>
        private void dataChanged(MatInventoryItemInfoModel planorderiteminfo)
        {
            //getPageData();
            getPageData(pageRepuestParams.PageIndex, pageRepuestParams.PageSize);
            var tmpModel = MatInventoryItemInfoList.FirstOrDefault(a => a.Id == planorderiteminfo.Id);

            this.MatInventoryItemInfo = MatInventoryItemInfoList.FirstOrDefault();
        }
 /// <summary>
 /// 是否可以执行打印命令
 /// </summary>
 /// <returns></returns>
 private bool OnCanExecutePrintCommand()
 {
     if (Equals(MatInventoryItemInfoList, null) || !MatInventoryItemInfoList.Any())
     {
         return(false);
     }
     else
     {
         return(true);
     }
 }
        /// <summary>
        /// 取得分页数据
        /// </summary>
        /// <param name="pageIndex"></param>
        /// <param name="pageSize"></param>
        private void getPageData(int pageIndex, int pageSize)
        {
#if DEBUG
            System.Diagnostics.Stopwatch stopwatch = new System.Diagnostics.Stopwatch();
            stopwatch.Start();
#endif

            pageRepuestParams.SortField = GlobalData.SortField;
            pageRepuestParams.SortOrder = GlobalData.SortOrder;

            pageRepuestParams.PageIndex = pageIndex;
            pageRepuestParams.PageSize  = pageSize;
            FilterGroup filterGroup    = new FilterGroup(FilterOperate.Or);
            FilterRule  filterRuleName = new FilterRule("MatInventory.Id", MatInventoryInfo.Id, "equal");
            filterGroup.Rules.Add(filterRuleName);

            pageRepuestParams.FilterGroup = filterGroup;

            //var result = Utility.Http.HttpClientHelper.PostResponse<OperationResult<PageResult<MatInventoryItemInfoModel>>>(GlobalData.ServerRootUri + "MatInventoryInfo/GetMatInventoryItemInfoListByInventoryID", Utility.JsonHelper.ToJson(MatInventoryInfo));
            var result = Utility.Http.HttpClientHelper.PostResponse <OperationResult <PageResult <MatInventoryItemInfoModel> > >(GlobalData.ServerRootUri + "MatInventoryItemInfo/PageData", Utility.JsonHelper.ToJson(pageRepuestParams));

#if DEBUG
            stopwatch.Stop();
            Utility.LogHelper.Info("获取盘点明细信息信息用时(毫秒):" + stopwatch.ElapsedMilliseconds);
            Utility.LogHelper.Info("盘点明细信息信息内容:" + Utility.JsonHelper.ToJson(result));
#endif

            if (!Equals(result, null) && result.Successed)
            {
                Application.Current.Resources["UiMessage"] = result?.Message;
                LogHelper.Info(Application.Current.Resources["UiMessage"].ToString());
                if (result.Data.Data.Any())
                {
                    MatInventoryItemInfoList = new ObservableCollection <MatInventoryItemInfoModel>(result.Data.Data);
                    TotalCounts = result.Data.Total;
                }
                else
                {
                    MatInventoryItemInfoList?.Clear();
                    TotalCounts = 0;
                    Application.Current.Resources["UiMessage"] = "未找到数据";
                }
            }
            else
            {
                //操作失败,显示错误信息
                MatInventoryItemInfoList = new ObservableCollection <MatInventoryItemInfoModel>();
                Application.Current.Resources["UiMessage"] = result?.Message ?? "查询盘点明细信息信息失败,请联系管理员!";
            }
        }