|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using SlnMesnac.Common;
|
|
|
|
|
using SlnMesnac.Model.domain;
|
|
|
|
|
using SlnMesnac.Repository.service.@base;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Linq.Expressions;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace SlnMesnac.Repository.service.Impl
|
|
|
|
|
{
|
|
|
|
|
public class ProdPlanInfoServiceImpl : BaseServiceImpl<ProdPLanInfo>
|
|
|
|
|
{
|
|
|
|
|
private ILogger<ProdPlanInfoServiceImpl> _logger;
|
|
|
|
|
public ProdPlanInfoServiceImpl(Repository<ProdPLanInfo> repository, ILogger<ProdPlanInfoServiceImpl> logger) : base(repository)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通过订单编号、工单编号、物料名称获取工单信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="orderCode"></param>
|
|
|
|
|
/// <param name="planCode"></param>
|
|
|
|
|
/// <param name="materialCode"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public List<ProdPLanInfo> GetRecordStaffAttendancesByOrderCodeAndPlanCodeAndMaterialName(string orderCode, string planCode, string materialCode)
|
|
|
|
|
{
|
|
|
|
|
List<ProdPLanInfo> prodPLanInfos = null;
|
|
|
|
|
Expression<Func<ProdPLanInfo, bool>> exp = x => true;
|
|
|
|
|
if (!string.IsNullOrEmpty(orderCode))
|
|
|
|
|
{
|
|
|
|
|
exp = exp.And(x => x.OrderCode == orderCode);
|
|
|
|
|
}
|
|
|
|
|
if (!string.IsNullOrEmpty(planCode))
|
|
|
|
|
{
|
|
|
|
|
exp = exp.And(x => x.PlanCode == planCode);
|
|
|
|
|
}
|
|
|
|
|
if (!string.IsNullOrEmpty(materialCode))
|
|
|
|
|
{
|
|
|
|
|
exp = exp.And(x => x.MaterialCode == materialCode);
|
|
|
|
|
}
|
|
|
|
|
prodPLanInfos = base._rep.GetList(exp);
|
|
|
|
|
return prodPLanInfos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<ProdPLanInfo> GetRecordStaffAttendances()
|
|
|
|
|
{
|
|
|
|
|
List<ProdPLanInfo> pLanInfos = null;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
pLanInfos = base._rep.GetList();
|
|
|
|
|
pLanInfos.Reverse();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError($"获取员工打卡信息异常{ex.Message}");
|
|
|
|
|
}
|
|
|
|
|
return pLanInfos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|