|
@@ -33,7 +33,6 @@ namespace OASystem.Infrastructure.Repositories.PersonnelModule
|
|
|
private JsonView _jv;
|
|
|
private string _url;
|
|
|
private string _excelPath;
|
|
|
-
|
|
|
public GoodsRepository(SqlSugarClient sqlSugar, IMapper mapper) : base(sqlSugar)
|
|
|
{
|
|
|
_mapper = mapper;
|
|
@@ -336,6 +335,28 @@ namespace OASystem.Infrastructure.Repositories.PersonnelModule
|
|
|
return _jv;
|
|
|
}
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 入库/出库 审核类型
|
|
|
+ /// 根据物品类型 处理审核是否需要多部门审核
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="goodsTypeId">物品类型Id </param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public bool GoodsAuditType(int goodsTypeId)
|
|
|
+ {
|
|
|
+ //多部门审核类型Id
|
|
|
+ var goodsTypeIds = new List<int>() {
|
|
|
+ 1420, //1420 贵重物品
|
|
|
+ };
|
|
|
+
|
|
|
+ if (goodsTypeIds.Contains(goodsTypeId))
|
|
|
+ {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 物品入库列表(带审核)
|
|
|
/// </summary>
|
|
@@ -376,6 +397,7 @@ namespace OASystem.Infrastructure.Repositories.PersonnelModule
|
|
|
{
|
|
|
Id = gs.Id,
|
|
|
GoodsId = gs.GoodsId,
|
|
|
+ GoodsType = gi.Type,
|
|
|
BatchNo = gs.BatchNo,
|
|
|
GoodsName = gi.Name,
|
|
|
Quantity = gs.Quantity,
|
|
@@ -403,24 +425,24 @@ namespace OASystem.Infrastructure.Repositories.PersonnelModule
|
|
|
var finAuditInfo = auditList.FirstOrDefault(x => x.AuditDep == GoodsAuditDepEnum.Financial);
|
|
|
if (hrAuditInfo != null)
|
|
|
{
|
|
|
- if (hrAuditInfo.AuditorIds.Any(x => x == userId))
|
|
|
- {
|
|
|
- hrAuditPer = true;
|
|
|
- }
|
|
|
+ if (hrAuditInfo.AuditorIds.Any(x => x == userId)) hrAuditPer = true;
|
|
|
}
|
|
|
if (finAuditInfo != null)
|
|
|
{
|
|
|
- if (finAuditInfo.AuditorIds.Any(x => x == userId))
|
|
|
- {
|
|
|
- finAuditPer = true;
|
|
|
- }
|
|
|
+ if (finAuditInfo.AuditorIds.Any(x => x == userId)) finAuditPer = true;
|
|
|
}
|
|
|
+
|
|
|
foreach (var item in data)
|
|
|
{
|
|
|
- item.AuditPers = new GoodsStorageAuditPerView[] {
|
|
|
- new (){ AuditPer = hrAuditPer, AuditDep = GoodsAuditDepEnum.Hr, ButtonText = GoodsAuditDepEnum.Hr.GetEnumDescription()},
|
|
|
- new (){ AuditPer = finAuditPer, AuditDep = GoodsAuditDepEnum.Financial, ButtonText = GoodsAuditDepEnum.Financial.GetEnumDescription()}
|
|
|
- };
|
|
|
+ var auditDeps = new List<GoodsStorageAuditPerView>();
|
|
|
+ auditDeps.Add(new() { AuditPer = hrAuditPer, AuditDep = GoodsAuditDepEnum.Hr, ButtonText = GoodsAuditDepEnum.Hr.GetEnumDescription() });
|
|
|
+ var auditPer = GoodsAuditType(item.GoodsType);
|
|
|
+ if (auditPer)
|
|
|
+ {
|
|
|
+ auditDeps.Add(new() { AuditPer = finAuditPer, AuditDep = GoodsAuditDepEnum.Financial, ButtonText = GoodsAuditDepEnum.Financial.GetEnumDescription() });
|
|
|
+ }
|
|
|
+
|
|
|
+ item.AuditPers = auditDeps.ToArray();
|
|
|
}
|
|
|
|
|
|
_jv.Code = StatusCodes.Status200OK;
|
|
@@ -488,9 +510,7 @@ namespace OASystem.Infrastructure.Repositories.PersonnelModule
|
|
|
_sqlSugar.BeginTran();
|
|
|
if (info.Id > 0) //修改
|
|
|
{
|
|
|
- var selectInfo = await _sqlSugar.Queryable<Pm_GoodsStorage>()
|
|
|
- .Where(x => x.Id == dto.Id)
|
|
|
- .FirstAsync();
|
|
|
+ var selectInfo = await _sqlSugar.Queryable<Pm_GoodsStorage>().FirstAsync(x => x.Id == dto.Id);
|
|
|
var auditStatus = selectInfo.ConfirmStatus;
|
|
|
if (auditStatus == GoodsConfirmEnum.Confirmed || auditStatus == GoodsConfirmEnum.PartConfirmed)
|
|
|
{
|
|
@@ -606,6 +626,14 @@ namespace OASystem.Infrastructure.Repositories.PersonnelModule
|
|
|
return _jv;
|
|
|
}
|
|
|
|
|
|
+ var goodsInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().Where(x => x.IsDel == 0 && x.Id == info.GoodsId).FirstAsync();
|
|
|
+ if (goodsInfo == null)
|
|
|
+ {
|
|
|
+ _jv.Msg = string.Format("物品信息不存在!");
|
|
|
+ return _jv;
|
|
|
+ }
|
|
|
+ int goodsTypeId = goodsInfo.Type;
|
|
|
+
|
|
|
var preChangeStatus = info.ConfirmStatus;
|
|
|
|
|
|
if (preChangeStatus == dto.ConfirmStatus)
|
|
@@ -655,21 +683,35 @@ namespace OASystem.Infrastructure.Repositories.PersonnelModule
|
|
|
//入库确认 更改入库状态及扣或增加除库存数、金额
|
|
|
var confirmStatus = GoodsConfirmEnum.WaitConfirm;
|
|
|
|
|
|
- if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() >= 2)
|
|
|
- {
|
|
|
- confirmStatus = GoodsConfirmEnum.Confirmed;
|
|
|
- }else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() >= 1)
|
|
|
- {
|
|
|
- confirmStatus = GoodsConfirmEnum.PartConfirmed;
|
|
|
- }
|
|
|
- else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.UnApproved).Count() > 0)
|
|
|
+ //验证是否需要多级确认
|
|
|
+ var isAuditPer = GoodsAuditType(goodsTypeId);
|
|
|
+
|
|
|
+ if (isAuditPer) //多级审核确认
|
|
|
{
|
|
|
- confirmStatus = GoodsConfirmEnum.UnApproved;
|
|
|
+ if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() >= 2)
|
|
|
+ {
|
|
|
+ confirmStatus = GoodsConfirmEnum.Confirmed;
|
|
|
+ }
|
|
|
+ else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.Confirmed).Count() >= 1)
|
|
|
+ {
|
|
|
+ confirmStatus = GoodsConfirmEnum.PartConfirmed;
|
|
|
+ }
|
|
|
+ else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.UnApproved).Count() > 0)
|
|
|
+ {
|
|
|
+ confirmStatus = GoodsConfirmEnum.UnApproved;
|
|
|
+ }
|
|
|
+ else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.PartConfirmed).Count() > 0)
|
|
|
+ {
|
|
|
+ confirmStatus = GoodsConfirmEnum.PartConfirmed;
|
|
|
+ }
|
|
|
}
|
|
|
- else if (preInfos.Where(x => x.AuditStatus == GoodsConfirmEnum.PartConfirmed).Count() > 0)
|
|
|
+ else //人事部审核确认
|
|
|
{
|
|
|
- confirmStatus = GoodsConfirmEnum.PartConfirmed;
|
|
|
+ confirmStatus = GoodsConfirmEnum.Confirmed;
|
|
|
+ confirmStatus = dto.ConfirmStatus;
|
|
|
+ preInfos = preInfos.Where(x => x.Dep == GoodsAuditDepEnum.Hr).ToList();
|
|
|
}
|
|
|
+
|
|
|
//入库状态描述
|
|
|
var statusDesc = new StringBuilder();
|
|
|
foreach (var preInfo in preInfos)
|
|
@@ -704,7 +746,6 @@ namespace OASystem.Infrastructure.Repositories.PersonnelModule
|
|
|
decimal auditQuantity = info.Quantity,
|
|
|
auditTotalPrice = info.TotalPrice;
|
|
|
|
|
|
- var goodsInfo = await _sqlSugar.Queryable<Pm_GoodsInfo>().FirstAsync(x => x.Id == info.GoodsId);
|
|
|
goodsInfo.LastUpdateUserId = currUserId;
|
|
|
goodsInfo.LastUpdateTime = DateTime.Now;
|
|
|
if (confirmStatus == GoodsConfirmEnum.Confirmed) // 确认状态
|
|
@@ -789,7 +830,7 @@ namespace OASystem.Infrastructure.Repositories.PersonnelModule
|
|
|
/// 2:出库审核
|
|
|
/// </param>
|
|
|
/// <returns></returns>
|
|
|
- public List<GoodsAuditDepView> GoodsStorageConfirmAuditDep(int auditType=1)
|
|
|
+ public List<GoodsAuditDepView> GoodsStorageConfirmAuditDep(int auditType = 1)
|
|
|
{
|
|
|
var auditList = new List<GoodsAuditDepView>();
|
|
|
|
|
@@ -806,7 +847,7 @@ namespace OASystem.Infrastructure.Repositories.PersonnelModule
|
|
|
{
|
|
|
AuditDep = GoodsAuditDepEnum.Financial,
|
|
|
AuditorIds = new int[] {
|
|
|
- 187, // 曾艳 、
|
|
|
+ 187, // 曾艳
|
|
|
281, // 伏虹瑾
|
|
|
208, // 雷怡
|
|
|
}
|