Activities of "abpVAndy"

Seems??? : Another bug for the suite. Both module and application has the same issue.

Database: MySql

The angular ui seems check bool as integer. (New Buttton only) (Edit works) I created root entity with the bool property. But the UI "new button" will check bool validation(int).

================================ ABP Framework version: v4.3.2 UI type: Angular DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): yes Exception message and stack trace: Steps to reproduce the issue:

Hi maliming,

Yes it works. Thank you so much!

Another quesion: What was (Angular account UI) used for? What are they used for? I used Angular Seperated Ids4. I know it was designed by mvc razor.

Thx

I seach code, it seems should change from Account.cshtml in Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic But I donot have the commercial source code for that.

Letpon is open source for you!

abp get-source Volo.LeptonTheme  

Yes, Sorry, I use the button "Replace packages with source code" to replace it.

Now I try "abp get-source Volo.LeptonTheme", they are different.

Thx, will let you know the result. I will test it. thanks.

I seach code, it seems should change from Account.cshtml in Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic But I donot have the commercial source code for that.

Letpon is open source for you!

abp get-source Volo.LeptonTheme  

Thanks for your hint.

But I do not think it works for this scenarios. I think I need the source code: Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton.Themes.Lepton But my license cannot got them.

I try to mock the logic of basic theme. It works basiclly, not very well (css style should be).

I create theme file in here: \src\loginProTest.IdentityServer\Themes\Lepton\Layouts\Account

The result:

Could I hide the Tenant switch component without the lepton theme source code? I cannot make it.

Could you please give me more suggetions?

Thx

We've fixed the issue. It will be available with the next RC or final version.

Hi ilkayilknur,

Is it possible to refund one ticket to me for this one?

thx

hi

The tenant switch component show logic:

MultiTenancyOptions.Value.IsEnabled && 
(TenantResolveResultAccessor.Result?.AppliedResolvers?.Contains(CookieTenantResolveContributor.ContributorName) == true)) 

Hi,

1, Enable MultiTenant, I need it. It will be true.
public static class MultiTenancyConsts { public const bool IsEnabled = true; }

2, Cookie store the tenant name. Yes, I will use cookie. But the cookie is from hidden code.

My scenarios is, I will not let customer to select/put in his tenant name. Instead of, when customer signin, i will check db to find his tenant name and in the code, it will set cookie with his tenant name.

So I need multiTenant and also need the cookie to keep his tenant name.

How should I hide the tenant switch component?

Thx

Here is my main code for the signin code, which assigned tenant id by code instead by customer.

============================================================================

hi

You can give it a try. I think it will be works.

Like your example website, it automatically jumps to the login page.

The demo website is angular. You are using Blazor Server.

Hi maliming,

Where the code for Angular. I also need to do like jumping to the login page. We use angular and Identity Server Separated.

Thx

 ICollection<OrderLine> OrderLines  
 Product Product { get; set; } 
  

these are not navigation properties

Sorry is not Product. It is Order. Here is the whole class.

public class Order : FullAuditedAggregateRoot<Guid>, IMultiTenant { public virtual ICollection<OrderLine> OrderLines { get; set; } }

public class OrderLine : FullAuditedEntity<Guid>, IMultiTenant { public virtual Order Order { get; set; } }

Here is the ABP Suite create addition class:

 public class BackCategoryWithNavigationProperties
    {
        public BackCategory BackCategory { get; set; }
        public BackCategoryBrother BackCategoryBrother { get; set; }
   }

I have some confusion about it. Why create another class for the navigation relationship.

Why Example easy-crm use property for the navigation relationship.

Do you get my question? thx

public class Order : FullAuditedAggregateRoot<Guid>, IMultiTenant
{ 
    public virtual ICollection<OrderLine> OrderLines { get; set; }
}

public class OrderLine : FullAuditedEntity<Guid>, IMultiTenant
{ 
    public virtual Order Order { get; set; }
}
Showing 61 to 70 of 83 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30