Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "aaron"

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.

  1. Go to <a class="postlink" href="http://localhost:4200/app/admin/ui-customization">http://localhost:4200/app/admin/ui-customization</a>.
  2. Select the Menu tab.
  3. Pick a Menu skin.

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:

  • CoreModule depends on AbpAspNetZeroCoreModule, and
  • WebCoreModule depends on AbpAspNetZeroCoreWebModule?

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;
Showing 1181 to 1190 of 1543 entries