ソースを参照

物资领用权限由 罗颖 更改为 陈湘

Lyyyi 4 週間 前
コミット
2427e7d56d

File diff suppressed because it is too large
+ 4 - 3
OASystem/OASystem.Api/Controllers/StatisticsController.cs


+ 19 - 0
OASystem/OASystem.Domain/ViewModels/Groups/Grp_CreditCardPaymentView.cs

@@ -178,6 +178,25 @@ namespace OASystem.Domain.ViewModels.Groups
         /// </summary>
         public int IsAuditGM { get; set; }
 
+        /// <summary>
+        /// 总经理审核标识
+        ///  未审核 1 已通过 2 未通过 3 自动审核
+        /// </summary>
+        public string AuditGMLabel
+        {
+            get
+            {
+                return IsAuditGM switch
+                {
+                    0 => "未审核",
+                    1 => "已通过",
+                    2 => "未通过",
+                    3 => "自动审核",
+                    _ => "未知状态"
+                };
+            }
+        }
+
         /// <summary>
         /// 超预算比例
         /// </summary>

+ 3 - 3
OASystem/OASystem.Infrastructure/Repositories/PersonnelModule/GoodsRepository.cs

@@ -880,15 +880,15 @@ namespace OASystem.Infrastructure.Repositories.PersonnelModule
                 AuditorIds = new int[] {
                     187,    // 曾艳 
                     281,    // 伏虹瑾
-                    208,    // 雷怡
+                    //208,    // 雷怡
                 }
             };
 
             if (auditType == 1)//入库
             {
                 hrAuditorIds.AuditorIds = new int[] {
-                    //343,    // 陈湘 
-                    374,    // 罗颖
+                    343,    // 陈湘 
+                    //374,    // 罗颖
                     208,    // 雷怡
                 };
                 auditList.Add(hrAuditorIds);