LocationService.cs 4.98 KB
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.Base
{
    public class LocationService : RepositorySqlSugar<base_location>
    {
        public dynamic Load(PageReq pageReq, base_location entity)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var result = new Response();
                var expression = LinqWhere(entity);
                //先组合查询表达式(多表查询查看IOT 设备列表案例)
                var query = Context.Queryable<base_location>().Where(expression);
                //Exel false 分页
                if (!entity.Exel)
                {
                    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 Expression<Func<base_location, bool>> LinqWhere(base_location model)
        {
            try
            {
                var exp = Expressionable.Create<base_location>();
                //数据过滤条件
                //if (!string.IsNullOrWhiteSpace(model.XXX)) exp.And(x => x.XXX.Contains(model.XXX));
                if (!string.IsNullOrWhiteSpace(model.locationCode))
                {
                    exp.And(x => x.locationCode.Contains(model.locationCode));
                }
                if (!string.IsNullOrWhiteSpace(model.locationName))
                {
                    exp.And(x => x.locationName.Contains(model.locationName));
                }
                if (!string.IsNullOrWhiteSpace(model.stationCode))
                {
                    exp.And(x => x.stationCode.Contains(model.stationCode));
                }
                return exp.ToExpression();//拼接表达式
            }
            catch (Exception ex)
            {
                throw new Exception($"{ex.Message}");
            }
        }

        public dynamic Ins(base_location entity)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var response = new Response();
                return ExceptionsHelp.Instance.ExecuteT(() =>
                {
                    entity.keys = Guid.NewGuid();
                    entity.createBy = base.sysWebUser?.Account;
                    var warehouse = base.Context.Queryable<base_warehouse>().First(x => x.code == entity.warehouseCode);
                    entity.lineCode = warehouse.lineCode;
                    entity.createTime = DateTime.Now;
                    response.Status = Add(entity);
                    if (!response.Status) response.Message = SystemVariable.dataActionError;
                    return response;
                });
            });
        }
 
        public dynamic Upd(base_location entity)
        {     
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var response = new Response();
                entity.updateBy = base.sysWebUser?.Account;
                entity.updateTime = DateTime.Now;
                response.Status = base.Context.Updateable(entity).
                                       IgnoreColumns(it => new { it.createBy, it.createTime, it.lineCode }).ExecuteCommand() > 0;
                if (!response.Status) response.Message = SystemVariable.dataActionError;
                return response;
            });
        }


        public dynamic DelByIds(string[] ids)
        {
            var response = new Response();
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var index = 0;
                foreach (var code in ids)
                {
                    var isExit = Context.Queryable<base_inventory>().Any(u => u.locationCode == code);//是否存在
                    if (isExit)
                    {
                        index++;
                        //提示
                        response.Code = 300;
                        response.Message += $"库位料点数据:{code}在库存里面存在数据不能删除  <br>";
                    }
                }
                if (index > 0) return response;

                var temp = Context.Deleteable<base_location>().In(x => x.locationCode, ids).ExecuteCommand() > 0;
                if (!temp)
                {
                    response.Message = SystemVariable.dataActionError;
                }
                return response;

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