/// <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("OrderItem.Id", PlanOrderItemInfo.Id, "equal");
            filterGroup.Rules.Add(filterRuleName);
            pageRepuestParams.FilterGroup = filterGroup;
            var result = Utility.Http.HttpClientHelper.PostResponse <OperationResult <PageResult <PlanProductionScheduleInfoModel> > >(GlobalData.ServerRootUri + "PlanProductionScheduleInfo/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())
                {
                    //TotalCounts = result.Data.Total;
                    //Messenger.Default.Send(LoginUser, MessengerToken.LoginSuccess);
                    PlanProductionScheduleInfoList = new ObservableCollection <PlanProductionScheduleInfoModel>(result.Data.Data);
                    TotalCounts = result.Data.Total;
                }
                else
                {
                    PlanProductionScheduleInfoList?.Clear();
                    TotalCounts = 0;
                    Application.Current.Resources["UiMessage"] = "未找到数据";
                }
            }
            else
            {
                //操作失败,显示错误信息
                PlanProductionScheduleInfoList             = new ObservableCollection <PlanProductionScheduleInfoModel>();
                Application.Current.Resources["UiMessage"] = result?.Message ?? "查询生产计划信息失败,请联系管理员!";
            }
        }
Пример #2
0
 /// <summary>
 /// 模型数据改变
 /// </summary>
 /// <param name="obj"></param>
 private void dataChanged(PlanProductionScheduleInfoModel productInfoModel)
 {
     getPageData(pageRepuestParams.PageIndex, pageRepuestParams.PageSize);
     this.PlanProductionScheduleInfo = PlanProductionScheduleInfoList.FirstOrDefault();
 }