123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- using AntDesign.TableModels;
- using Microsoft.AspNetCore.Components.Authorization;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net.Http;
- using System.Net.Http.Json;
- using System.Threading.Tasks;
- using wispro.sp.entity;
- using wispro.sp.share;
- using wispro.sp.web.Auth;
- namespace wispro.sp.web.Services
- {
- public class PerformanceItemServices
- {
- private readonly IHttpService _httpClient;
- private readonly JwtAuthenticationStateProvider _jwt;
- public PerformanceItemServices(IHttpService httpClient, AuthenticationStateProvider jwt)
- {
- _httpClient = httpClient;
- _jwt = (JwtAuthenticationStateProvider)jwt;
- }
- public async Task<ListApiResponse<PerformanceItem>> GetItems(int _pageIndex,int _pageSize)
- {
- ListApiResponse<PerformanceItem> data = await _httpClient.Get<ListApiResponse<PerformanceItem>>($"PerformanceItem/Query?pageIndex={_pageIndex}&pageSize={_pageSize}");
- return data;
- }
- public async Task<ApiSaveResponse> SaveFieldChange(int id,string Field,string value)
- {
- ApiSaveResponse data = await _httpClient.Get<ApiSaveResponse>($"PerformanceItem/UpdateFieldValue?id={id}&field={Field}&value={value}");
- return data;
- }
- public async Task<ListApiResponse<PerformanceItem>> GetMyList(int userid,jxType type,int pageIndex=1,int pageSize=5)
- {
- ListApiResponse<PerformanceItem> data = await _httpClient.Get<ListApiResponse<PerformanceItem>>($"PerformanceItem/GetMyList?userid={userid}&Type={Convert.ToInt32(type)}&pageIndex={pageIndex}&pageSize={pageSize}");
- return data;
- }
- public async Task<ListApiResponse<PerformanceItem>> Query(int userid, jxType type, QueryModel<PerformanceItem> queryModel)
- {
- QueryFilter query = new QueryFilter();
- query.userId = userid;
- query.jxType = type;
- query.PageIndex = queryModel.PageIndex;
- query.PageSize = queryModel.PageSize;
- query.ConditionTree = new List<FieldCondition>();
- foreach(var filter in queryModel.FilterModel)
- {
- foreach(var f in filter.Filters)
- {
- FieldCondition condition = new FieldCondition() { FieldName = filter.FieldName};
- condition.Value = f.Value.ToString();
- condition.ValueType = typeof(PerformanceItem).GetProperty(filter.FieldName).PropertyType.ToString();
- switch (f.FilterCompareOperator)
- {
- case AntDesign.TableFilterCompareOperator.Contains:
- condition.Operator = OperatorEnum.Contains;
- break;
- case AntDesign.TableFilterCompareOperator.EndsWith:
- condition.Operator = OperatorEnum.EndWith;
- break;
- case AntDesign.TableFilterCompareOperator.Equals:
- condition.Operator = OperatorEnum.EndWith;
- break;
- case AntDesign.TableFilterCompareOperator.GreaterThan:
- condition.Operator = OperatorEnum.Greater ;
- break;
- case AntDesign.TableFilterCompareOperator.GreaterThanOrEquals:
- condition.Operator = OperatorEnum.GreaterEqual;
- break;
- case AntDesign.TableFilterCompareOperator.LessThan:
- condition.Operator = OperatorEnum.Less;
- break;
- case AntDesign.TableFilterCompareOperator.LessThanOrEquals:
- condition.Operator = OperatorEnum.LessEqual;
- break;
- case AntDesign.TableFilterCompareOperator.NotContains:
- condition.Operator = OperatorEnum.NotContains;
- break;
- case AntDesign.TableFilterCompareOperator.NotEquals:
- condition.Operator = OperatorEnum.NotEqual;
- break;
- case AntDesign.TableFilterCompareOperator.StartsWith:
- condition.Operator = OperatorEnum.StartsWith;
- break;
-
- }
- switch (f.FilterCondition)
- {
- case AntDesign.TableFilterCondition.And:
- condition.LogicOperate = LogicEnum.And;
- break;
- case AntDesign.TableFilterCondition.Or:
- condition.LogicOperate = LogicEnum.Or;
- break;
- default:
- condition.LogicOperate = LogicEnum.And;
- break;
- }
- query.ConditionTree.Add(condition);
-
- }
- }
- query.Sorts =new List<OrderField>();
- foreach(var sort in queryModel.SortModel)
- {
- if (!string.IsNullOrEmpty(sort.Sort))
- {
- query.Sorts.Add(new OrderField() { FieldName = sort.FieldName, Sort = (sort.Sort == "descend" ? 1 : 0) });
- }
- }
- var data = await _httpClient.Post<ListApiResponse<PerformanceItem>>($"PerformanceItem/QueryFilter",query);
- return data;
- }
- public async Task<List<StaffStatistics>> CalMyStatistics(int year, int month, int? userid = null)
- {
- var data = await _httpClient.Get<List<StaffStatistics>>($"PerformanceItem/CalMyStatistics?userid={userid}&year={year}&month={month}");
- return data;
- }
- public async Task<PerformanceItem> GetProjectInfo(string caseNo)
- {
- var data = await _httpClient.Get<PerformanceItem>($"IPEasy/GetCaseInfo?CaseNo={caseNo}");
- return data;
- }
- public async Task<ApiSaveResponse> AddProjectPerformanctItem(ProjectPointRecord projectPoint)
- {
- var data = await _httpClient.Post<ApiSaveResponse>($"PerformanceItem/AddProjectPerformance",projectPoint);
- return data;
- }
- }
- }
|