Open Closed

Adding Payment Module #6918


User avatar
0
rrader26 created
  • ABP Framework version: latest
  • UI Type: Angular
  • Database System: EF Core SQL Server
  • Tiered (for MVC) or Auth Server Separated (for Angular): Separate
  • Exception message and full stack trace:
  • Steps to reproduce the issue: I created a brand new project in ABP Suite. After project is created and db populated. I immediately add the payment module to my project and do a dotnet build command. I get these errors


6 Answer(s)
  • User Avatar
    0
    rrader26 created

    Also on the angular side, it is not creating the screens and references to call the module

  • User Avatar
    0
    EngincanV created
    Support Team .NET Developer

    ABP Framework version: latest

    Can you say which version do you use exactly, the latest stable (v8.0.5) or the latest preview (v8.1.0-rc.3)?

  • User Avatar
    0
    rrader26 created

    8.0.5

  • User Avatar
    0
    EngincanV created
    Support Team .NET Developer

    For the backend side, please remove the *.WeChat.Web and *.AliPay.Web projects from both Volo.Payment.sln and your project's solution reference. )

    I'll check for the frontend side.

  • User Avatar
    0
    rrader26 created

    Any updates on the frontend portion?

  • User Avatar
    0
    EngincanV created
    Support Team .NET Developer

    Any updates on the frontend portion?

    Hi sorry for the late response, you should add the @volo/abp.ng.payment package to package.json and configure the Payment Angular Module as below:

    .....
    import { PaymentAdminConfigModule } from '@volo/abp.ng.payment/admin/config';
    
    .....
    
    PaymentAdminConfigModule.forRoot(),
    
    {
    path: 'payment',
    loadChildren: () =>
      import('@volo/abp.ng.payment/admin').then(m => m.PaymentAdminModule.forLazy()),
    }
    
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11