Open Closed

Adding a custom entity to a pre-built module "Saas" #7935


User avatar
0
AbdulrahmanMZ created
  • ABP Framework version: v8.2.2
  • UI Type: Angular
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes

I want to customize Saas module by adding a new entity `Product` with `Name` and `Discription` properties, The `Product` entity relate with `Tenant` entity in many to many relationship. The ultimate goal of mine is to render product name field in tenant grid and as a multi-select drop downlist in edit and add new actions modals. Is this possible? if yes, then what is the most straightforward way for fulfilling this requirement ? Give me step by step guid please for both backend and frontend implementation.

and is there some kind of automation i can use to facilate and accelerate this process as I'm going to repeat this customization many times?


7 Answer(s)
  • User Avatar
    0
    liangshiwei created
    Support Team Fullstack Developer

    Hi,

    You can use ABP Suite to add a Product entity and relate with a Tenant entity in many-to-many relationships. https://abp.io/docs/latest/suite/creating-many-to-many-relationship

    The ultimate goal of mine is to render product name field in tenant grid and as a multi-select drop downlist in edit and add new actions modals. Is this possible?

    To achieve this goal, you must override Tenant pages.

    First you can create your own TenantAppService to return tenant and product data.

    public class MyTenantAppService : ApplicationService, IMyTenantAppService
    {
        public virtual async Task... GetListAsync()
        {
            var tenants = tenantRepository....;
            var products = ProductRepository....;
        }
    }
    

    Then, override the Tenant page to get data from your app service.

    Here is the document

    • https://abp.io/docs/latest/framework/ui/angular/component-replacement

    you can download the saas module source code to get the page code.

  • User Avatar
    0
    AbdulrahmanMZ created

    you can download the saas module source code to get the page code.

    Is it a must to replace the Saas module package with source code to accomplish this goal.

  • User Avatar
    0
    liangshiwei created
    Support Team Fullstack Developer

    Hi,

    No, you don't.

    Just download the source code to refer

  • User Avatar
    0
    AbdulrahmanMZ created

    Hi,

    Note that the navigation collection property needs to be created on tenant entity Can I access tenant entity on abp suite and add a navigation collection property? or what is the best approach to address this?

  • User Avatar
    0
    liangshiwei created
    Support Team Fullstack Developer

    Hi

    Can I access tenant entity on abp suite and add a navigation collection property?

    No , you can't

    or what is the best approach to address this?

    the only way is replace package with source code to custom it.

  • User Avatar
    0
    AbdulrahmanMZ created

    Hi,

    That means we are back to the first square. I don't want to have to customize saas module myself, I want an automated way!!

    So if I tried the first approach you have mentioned before that include overriding the TenantAppService and replacing the Tenant page,

    In your opinion , does this sufficient to get to my goal?

    Remember this is my goal:

    The ultimate goal of mine is to render product name field in tenant grid and as a multi-select drop downlist in edit and add new actions modals.

  • User Avatar
    0
    AbdulrahmanMZ created

    Hi

    another important question.

    according to your advice,

    You can use ABP Suite to add a Product entity and relate with a Tenant entity in many-to-many relationships.

    How does this be accomplished without replacing Saas module with source code?

Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13