Documentation Home
This version of the framework is no longer supported. View the latest documentation.

This module adds admin functionality to manage credit and gift accounts.
As apart of our community offering in the framework itself, this admin module provides easier ways to administer this information in
the database.

Screenshots of the admin capabilities:

Account Management
Debit Funds
Add Funds
User Account

To include this in your project, simply follow the steps below (up-to-date diff from DemoSite)[https://github.com/BroadleafCommerce/DemoSite-AccountCredit/compare/upstream-develop...develop]

  1. Add the required dependency management to the parent pom

    <dependency>
    <groupId>com.broadleafcommerce</groupId>
    <artifactId>broadleaf-account-credit</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <type>jar</type>
    <scope>compile</scope>
    </dependency>
    
  2. Add the required dependency to the admin pom

    <dependency>
    <groupId>com.broadleafcommerce</groupId>
    <artifactId>broadleaf-account-credit</artifactId>
    </dependency>
    
  3. Add the following line to your .gwt.xml file

    <inherits name="com.broadleafcommerce.search.admin.accountCreditModule" />