李昊 4 vuotta sitten
vanhempi
commit
1eaafa1e53

+ 11 - 1
GxPress/Api/GxPress.Api/AppControllers/AppReportController.cs

@@ -1,8 +1,10 @@
 using System.Collections.Generic;
 using System.Linq;
 using System.Threading.Tasks;
+using GxPress.Auth;
 using GxPress.Common.Tools;
 using GxPress.Entity;
+using GxPress.Repository.Interface;
 using GxPress.Repository.Interface.AppReport;
 using Microsoft.AspNetCore.Authorization;
 using Microsoft.AspNetCore.Mvc;
@@ -19,9 +21,14 @@ namespace GxPress.Api.AppControllers
     public class AppReportController : ControllerBase
     {
         private readonly IAppReportRepository _appReportRepository;
-        public AppReportController(IAppReportRepository appReportRepository)
+        private readonly IUserRepository userRepository;
+        private readonly ILoginContext _loginContext;
+
+        public AppReportController(IAppReportRepository appReportRepository, IUserRepository userRepository, ILoginContext _loginContext)
         {
             _appReportRepository = appReportRepository;
+            this.userRepository = userRepository;
+            this._loginContext = _loginContext;
         }
         /// <summary>
         /// 查询
@@ -30,6 +37,9 @@ namespace GxPress.Api.AppControllers
         [HttpPost("list")]
         public async Task<IEnumerable<Entity.AppReport>> GetAppReportList()
         {
+            var user = await userRepository.GetAsync(_loginContext.AccountId);
+            if (!user.IsReply)
+                return new List<Entity.AppReport>();
             var result = await _appReportRepository.GetAppReportListAsync();
             var appReportList = result as AppReport[] ?? result.ToArray();
             foreach (var appReport in appReportList)

+ 7 - 0
GxPress/Model/GxPress.Entity/User.cs

@@ -142,5 +142,12 @@ namespace GxPress.Entity
         /// <value></value>
         [DataColumn]
         public string OpenId { get; set; }
+
+        /// <summary>
+        /// 是否开启报表
+        /// </summary>
+        /// <value></value>
+         [DataColumn]
+        public bool IsReport { get; set; }
     }
 }