Blame view

sys/Hh.Mes.Service/WebService/Configure/ApiWorkorderHeadService.cs 4.64 KB
赖素文 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using Hh.Mes.Common.Infrastructure;
using Hh.Mes.Common.log;
using Hh.Mes.Common.Request;
using Hh.Mes.POJO.Entity;
using Hh.Mes.POJO.Response;
using Hh.Mes.Service.Repository;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using Hh.Mes.Pojo.System;

namespace Hh.Mes.Service.Configure
{
    public class ApiWorkorderHeadService : RepositorySqlSugar<api_workOrder_head>
    {
        public dynamic Load(PageReq pageReq, api_workOrder_head entity)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var result = new Response<List<api_workOrder_head>>();
                var expression = LinqWhere(entity);
                //先组合查询表达式
25
                var query = Context.Queryable<api_workOrder_head>().Where(expression).OrderBy(x => x.createTime, OrderByType.Desc);
赖素文 authored
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
                //Exelture就不分页,因为导出的话是全部导出
                if (pageReq != null)
                {
                    int total = 0;
                    result.Result = query.ToOffsetPage(pageReq.page, pageReq.limit, ref total);
                    result.Count = total;
                }
                else
                {
                    result.Result = query.ToList();
                    result.Count = result.Result.Count();
                }
                return result;
            }, catchRetrunValue: "list");
        }

        public dynamic Ins(api_workOrder_head entity)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var response = new Response();
                //entity.createBy = sysWebUser?.Account;
                //entity.createTime = DateTime.Now;
                response.Status = Add(entity);
                if (!response.Status)response.Message = SystemVariable.dataActionError;
                return response;
            });
        }

        public dynamic Upd(api_workOrder_head entity)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var response = new Response();
               //entity.updateBy = sysWebUser?.Account;
                //entity.updateTime = DateTime.Now;
                response.Status = Update(entity);
                if (!response.Status) response.Message = SystemVariable.dataActionError;
                return response;
            });
        }

        public dynamic DelByIds(int[] ids)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var response = new Response();
                Context.Deleteable<api_workOrder_head>(t => ids.Contains(t.id)).ExecuteCommand();
                return response;
            });
        }

        public Response ExportData(api_workOrder_head entity)
        {
            return Load(null, entity);
        }

        public Expression<Func<api_workOrder_head, bool>> LinqWhere(api_workOrder_head model)
        {
            try
            {
                var exp = Expressionable.Create<api_workOrder_head>();
                //数据过滤条件
                //if (!string.IsNullOrWhiteSpace(model.XXX)) exp.And(x => x.XXX.Contains(model.XXX));
                if (!string.IsNullOrWhiteSpace(model.plmeId))
                {
                    exp.And(x => x.plmeId.Contains(model.plmeId));
                }
                if (!string.IsNullOrWhiteSpace(model.workOrderCode))
                {
                    exp.And(x => x.workOrderCode.Contains(model.workOrderCode));
                }
                if (!string.IsNullOrWhiteSpace(model.planCode))
                {
                    exp.And(x => x.planCode.Contains(model.planCode));
                }
                return exp.ToExpression();//拼接表达式
            }
            catch (Exception ex)
            {
                throw new Exception($"{ex.Message}");
            }
        }



        #region 明细
        /// <summary>
        /// 查询方法明细  支持导出查询
        /// </summary>
        public Response LoadDesc(PageReq pageReq, api_workOrder_detail model)
        {
            var totalCount = 0;
            var result = new Response();
            var query = base.Context.Queryable<api_workOrder_detail>();
            var data = model.headkeysList != null ? query.In(x => x.headKeys, model.headkeysList).ToList() :
                       query.Where(x => x.headKeys == model.headKeys).OrderBy(x => x.createTime).ToOffsetPage(pageReq.page, pageReq.limit, ref totalCount);
            //页码,页数
            result.Result = data;
            result.Count = totalCount;
            return result;
        }
        #endregion
    }
}