工艺标准接口

This commit is contained in:
2023-06-06 17:14:58 +08:00
parent 1a576bee30
commit 2fc0dfc0bd
6 changed files with 233 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace Tnb.PerMgr.Entities.Dto
{
public class ProcessChildDataInput
{
public string process_standards_id { get; set; }
/// <summary>
/// 工艺参数id
/// </summary>
public string process_param_id { get; set; }
public decimal value { get; set; }
}
}

View File

@@ -0,0 +1,18 @@
namespace Tnb.PerMgr.Entities.Dto
{
public class ProcessParamTypeChildrenOutput
{
/// <summary>
/// 工艺标准子表id
/// </summary>
public string id { get; set; }
/// <summary>
/// 工艺参数id
/// </summary>
public string process_param_id { get; set; }
public string name { get; set; }
public decimal? value { get; set; }
public decimal upper_value { get; set; }
public decimal lower_value { get; set; }
}
}

View File

@@ -0,0 +1,42 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.PerMgr.Entities;
/// <summary>
/// 工艺标准子表
/// </summary>
[SugarTable("per_process_standards_d")]
public partial class PerProcessStandardsD : BaseEntity<string>
{
public PerProcessStandardsD()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 工艺标准主表id
/// </summary>
public string process_standards_id { get; set; } = string.Empty;
/// <summary>
/// 工艺参数id
/// </summary>
public string process_param_id { get; set; } = string.Empty;
/// <summary>
/// 设定值
/// </summary>
public decimal value { get; set; }
/// <summary>
/// 上限
/// </summary>
public decimal? upper_value { get; set; }
/// <summary>
/// 下限
/// </summary>
public decimal? lower_value { get; set; }
}

View File

@@ -0,0 +1,28 @@
using Tnb.PerMgr.Entities.Dto;
namespace Tnb.PerMgr.Interfaces
{
public interface IPerProcessParamTypeService
{
/// <summary>
/// 根据设备id获取工艺参数类型和对应工艺参数
/// </summary>
/// <param name="dic"></param>
/// <returns></returns>
public Task<dynamic> GetProcessParamType(Dictionary<string, string> dic);
/// <summary>
/// 保存工艺参数子表
/// </summary>
/// <param name="inpuy"></param>
/// <returns></returns>
public Task<string> SaveData(List<ProcessChildDataInput> input);
/// <summary>
/// 根据id获取修改信息
/// </summary>
/// <param name="dic"></param>
/// <returns></returns>
public Task<dynamic> GetProcessStandardsChildrenInfo(Dictionary<string, string> dic);
}
}

View File

@@ -0,0 +1,131 @@
using JNPF.Common.Core.Manager;
using JNPF.Common.Enums;
using JNPF.DependencyInjection;
using JNPF.DynamicApiController;
using JNPF.FriendlyException;
using Microsoft.AspNetCore.Mvc;
using SqlSugar;
using Tnb.EquipMgr.Entities;
using Tnb.PerMgr.Entities;
using Tnb.PerMgr.Entities.Dto;
using Tnb.PerMgr.Interfaces;
namespace Tnb.PerMgr
{
/// <summary>
/// 工艺参数类型
/// </summary>
[ApiDescriptionSettings
(Tag = ModuleConsts.Tag, Area = ModuleConsts.Area, Order = 700)]
[Route("api/[area]/[controller]/[action]")]
public class PerProcessParamTypeService : IPerProcessParamTypeService, IDynamicApiController, ITransient
{
private readonly ISqlSugarRepository<PerProcessParamType> _repository;
private readonly IUserManager _userManager;
public PerProcessParamTypeService(ISqlSugarRepository<PerProcessParamType> repository, IUserManager userManager)
{
_userManager = userManager;
_repository = repository;
}
[HttpPost]
public async Task<dynamic> GetProcessParamType(Dictionary<string, string> dic)
{
string equipId = dic["equip_id"];
var db = _repository.AsSugarClient();
var equipment = await db.Queryable<EqpEquipment>().Where(x => x.id == equipId).SingleAsync();
string equipTypeId = equipment?.equip_type_id;
//List<PerProcessParamType> perProcessParamTypes = await _repository.GetListAsync(x => x.equip_type_id == equipTypeId);
var result = await db.Queryable<PerProcessParamType>()
.Where(x => x.equip_type_id == equipTypeId)
.OrderBy(x=>x.ordinal)
.Select(x => new
{
tab_id = x.id,
tab_name = x.name,
children = SqlFunc.Subqueryable<PerProcessParam>()
.LeftJoin<PerToleranceCategory>((y,z)=>y.tolerance_category_id==z.id)
.Where(y=>y.process_param_type_id==x.id)
.OrderBy((y,z)=>y.ordinal)
.ToList<ProcessParamTypeChildrenOutput>((y,z)=>new ProcessParamTypeChildrenOutput
{
process_param_id = y.id,
name = y.name,
upper_value = z.upper_value,
lower_value = z.lower_value
}),
}).ToListAsync();
return result;
}
[HttpPost]
public async Task<string> SaveData(List<ProcessChildDataInput> input)
{
var db = _repository.AsSugarClient();
DbResult<bool> result = await db.Ado.UseTranAsync(async () =>
{
List<PerProcessStandardsD> list = new List<PerProcessStandardsD>();
if (input != null && input.Count > 0)
{
foreach (var item in input)
{
list.Add(new PerProcessStandardsD()
{
process_standards_id = item.process_standards_id,
process_param_id = item.process_param_id,
value = item.value
});
}
await db.Insertable<PerProcessStandardsD>(list).ExecuteCommandAsync();
}
});
if(!result.IsSuccess) throw Oops.Oh(ErrorCode.COM1008);
return result.IsSuccess ? "保存成功" : result.ErrorMessage;
}
[HttpPost]
public async Task<dynamic> GetProcessStandardsChildrenInfo(Dictionary<string, string> dic)
{
string id = dic["id"];
var db = _repository.AsSugarClient();
var perProcessStandardsH = await db.Queryable<PerProcessStandardsH>().SingleAsync(x => x.id == id);
var equipment = await db.Queryable<EqpEquipment>().Where(x => x.id == perProcessStandardsH.equip_id).SingleAsync();
string equipTypeId = equipment?.equip_type_id;
var result = await db.Queryable<PerProcessParamType>()
.Where(a => a.equip_type_id == equipTypeId)
.OrderBy(a=>a.ordinal)
.Select(a => new
{
tab_id = a.id,
tab_name = a.name,
children = SqlFunc.Subqueryable<PerProcessStandardsD>()
.LeftJoin<PerProcessParam>((b,c)=>b.process_param_id==c.id)
.LeftJoin<PerToleranceCategory>((b,c,d)=>c.tolerance_category_id==d.id)
.Where((b,c,d)=>c.process_param_type_id==a.id && b.process_standards_id==id)
.OrderBy((b,c,d)=>c.ordinal)
.ToList<ProcessParamTypeChildrenOutput>((b,c,d)=>new ProcessParamTypeChildrenOutput
{
id = b.id,
process_param_id = c.id,
name = c.name,
value = b.value,
upper_value = d.upper_value,
lower_value = d.lower_value
}),
}).ToListAsync();
return result;
}
}
}

View File

@@ -7,6 +7,7 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\EquipMgr\Tnb.EquipMgr.Entities\Tnb.EquipMgr.Entities.csproj" />
<ProjectReference Include="..\..\visualdev\Tnb.VisualDev.Engine\Tnb.VisualDev.Engine.csproj" />
<ProjectReference Include="..\Tnb.PerMgr.Interfaces\Tnb.PerMgr.Interfaces.csproj" />
</ItemGroup>