You can add a Create method in AuditLogAppService.
Can you check if there are entries with the same Name for TenantId = 1 in your dbo.AbpLanguages table?
Add these SettingDefinitions in AppSettingProvider.
The error says that you can't do this: Amount = s.DefaultIfEmpty(new SubscriptionPayment()).Sum(c => c.Amount)
Since you're already doing Date = s.First().CreationTime.Date, change that line to:
Amount = s.Sum(c => c.Amount)
Show the code for IncomeStatisticsService.GetDailyIncomeStatisticsData method.
Great. That's resolved here: #4275@c6b912df-2a2b-49be-bd05-a651d60a8e79
You can download a new project using your existing project name as @aaron suggested. Then you can take the newly generated license code in downloded project's appsettings.json and use it in your existing application.
Can you check if dbo.AbpTenantNotifications table contains the corresponding TenantNotification for the user?
Can you check if your:
ERROR 2017-12-14 06:24:49,494 [36 ] Mvc.ExceptionHandling.AbpExceptionFilter - Can't create component 'Nec.Stanchion.Web.Controllers.TokenAuthController' as it has dependencies to be satisfied.
'Nec.Stanchion.Web.Controllers.TokenAuthController' is waiting for the following dependencies:
- Service 'Abp.AspNetZeroCore.Web.Authentication.External.IExternalAuthConfiguration' which was not registered.
- Service 'Abp.AspNetZeroCore.Web.Authentication.External.IExternalAuthManager' which was not registered.
Add this in TokenAuthController:
using Abp.AspNetZeroCore.Web.Authentication.External;