Activities of "christophe.baille"

  • ABP Framework version: v7.0.1
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

I have an issue since I migrate my solution from ABP 5 to 7:

I have a controller with a method to upload a file

When I generate the proxy using the command

abp generate-proxy -t ng

and try to run the angular application, I got an error because IRemoteStreamContent is not defined

In ABP 5 it was working because the command was creating a model.ts file with the definition of IRemoteStreamContent

The problem is that since I updated to ABP 7, this file is not generated anymore so I got this error.

I can pass the issue by creating the file somewhere and add the import on my file, but I will have to add the import manually each time I generate the proxy.

Any idea on how I could make this file to be generated again or if I need to add a package which reference it on my angular project?

Thanks

  • ABP Framework version: v7.0.1
  • UI type: Angualr
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes

We migrate our solution from ABP 5 to ABP 7.

In some methods of our componentrs, we use this.oAuthService.getAccessToken() to get the token, but since the update, when I open the view we get this error on the console:

TypeError: this.oAuthService is undefined

I do not really understand why I get this error as the class works well on the component default-home.component.ts

I added some line in app.module.ts as explained here:

https://github.com/abpframework/abp/pull/15337/files#diff-e56244fece49a709a76bf89ab104f8ebea9da142d8952faa2e1e33edb4379c18

but it still doesn't work on my class

  • ABP Framework version: v7.0.1
  • UI type: MAUI Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

Steps to reproduce:

  • Create a new solution with UI Framework MAUI Blazor
  • Run DbMigrator and run the app to be sure all is working fine
  • on ABP Suite, open the project and add a new entity

When I press "Save and generate", I got the error "An internal error occurred during your request!".

On the console, I got this error

The error might come from the UI generator because when I uncheck this it works

  • ABP Framework version: v7.0.0
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

On which criteria methods are added on the audit or not?

From the doc here, it seems that by default all methods write to the log table

https://docs.abp.io/en/abp/latest/Audit-Logging

In my solution, I have the issue that most of my methods do not write on the table.

It is well setup, I have "UseAuditing()" on my module and all should be ok, for example, the /Account/Login is logged all the time. But most of other methods from my application services do not appears but they should if I did not add "[DisableAuditing]" right?

Something even more strange, I have a method that run any times I login to build my menu, when login as admin it write on the log table, but if log with another account it doesn't...

Any explanation about how to add all methods to this audit tables?

To try to understand on how logs works, I did this:

1- Create a new Blazor server solution and add an entity 2- Open the entity view, add item, edit it, delete it 3- Open audit log table

I can see that the methods Create, Delete and Get write on the log table, but I have nothing about GetList and Update.

Why GetList and Update are not in log tables if others are? I did nothing appart of buiding from template, is there anything wrong on ABP or something else not documented should be done?

Thanks

  • ABP Framework version: v6.0.0
  • UI type:Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

Our SAAS solution is using Stripe to make payment. We are using the subscriptionway, so we can charge our clients on regular bases (monthly in my case). Everything have been implemented using Stripe API and all is running well. I do not use ABP integration as it doesn't (didn't?) support "Stripe subscription"

I now want to add a "first-time extra charge" for our client, this amount will be taken only once (unlike subscription). It is simple to do with Stripe as I simply need to add this new priceId in options when creating my subscription on Stripe. But, for that, I now need to have 2 Gateway plans (price) per plan, one that will be charged once (the new one), then a second one as a "subscription" (which is already fine for now).

My issue here is that I got an error when trying to save this second "Gateway plan".

I see on the logs Microsoft.Data.SqlClient.SqlException (0x80131904): Violation of PRIMARY KEY constraint 'PK_PayGatewayPlans'. Cannot insert duplicate key in object 'dbo.PayGatewayPlans'. The duplicate key value is (a58f425e-7eff-9cd4-f217-3a015f7298c6, stripe)

I see that it doesn't allow having the same PlanId/Gateway.

As I do not use your integration, I do not mind selecting another gateway than "Stripe", but for now I do not have any other option

Is there any way to add another gateway to this list? Without installing packages for another payment platform of course

Otherwise is there any other way to bypass this key violation?

I am stuck because of this limitation and can not implement the new feature that I need very soon

Thanks

  • ABP Framework version: v6.0.1

Following the ticket which have been locked https://support.abp.io/QA/Questions/3967/Abp-suite-not-working-on-Firefox

Here is the console screenshot from my Firefox when I switch from one tab to another:

  • ABP Framework version: v6.0.1
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

There is issue on showing proper name for custom themes.

See as discussed here:

https://support.abp.io/QA/Questions/3951#answer-c295d8bd-a351-e30e-2148-3a0797c402eb

  • ABP Framework version: v6.0.1
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

On Blazor server application the "Filter menu" do not work in this 2 cases:

  • When I first run the application, I need to reload the page, otherwise the filter do not work (with Edge Browser Version 107.0.1418.35)
  • When I add redis as explain on this doc, the filter do not work anymore https://docs.abp.io/en/abp/latest/Redis-Cache
  • ABP Framework version: v6.1
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

A ticket already exists for this issue:

https://support.abp.io/QA/Questions/3524/ABP-LeptonX-vertical-menu-missing-scrolling

But nobody reply when I asked, maybe it is because I have the issue on Blazor server and not MVC (the ticket and the github link is about Mvc)

Anyway, I created a new solution this morning with the "new" ABP 6.1 which has LeptonX 1 (not rc anymore). I then added several entities to have my menu full, but the menu still can not scroll down.

Any way to fix it please? I updated a project from us with LeptonX, but because of this problem, I can not update our main branch...

Thanks

  • ABP Framework version: v6.0.0
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

I tried to add a new entity with Abp Suite on Firefox:

  • I select my project
  • I add entity information
  • I switch to Properties tab to fill my information
  • I click to Save and got error that information are missing (from entity)

If I switch back to Entity, all information I provided is gone. From here I switch to Properties again and all is empty too. It seems that when switching to a new tab, nothing is kept...

My Firefox is up to date (version 106.0.3)

Showing 1 to 10 of 40 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11