Metadata-Version: 2.1
Name: NEMO-transaction-validation
Version: 0.0.4
Summary: NEMO Plugin - Transaction Validation
Home-page: UNKNOWN
License: UNKNOWN
Description: This NEMO plugin is inspired from the transaction validation features implemented by Penn State's LEO.
        
        # Description
        This plugin allows staff members to validate and contest transactions performed on behalf of a customer. Once contests are reviewed and approved by an administrator, the plugin automatically revises the transaction according to the contest submission. The plugin also saves a copy of the original transaction data as a contest item for historical data.
        
        A transaction can be validated if no contests are required. Else, if contests have been submitted for approval, then it can be validated once all contests are approved by the administrator.
        
        # Installation
        1. Install plugin.
        ```
        pip install NEMO-transaction-validation
        ```
        
        2. Add the plugin to `INSTALLED_APPS` in your `settings.py` file.
        ```
        INSTALLED_APPS = [
            ...
            'NEMO_transaction_validation', #must be placed before 'NEMO'
            'NEMO',
            ...
        ]
        ```
        
        # Changes
        Version | Description
        --------|------------
        0.0.4   | Fixed plugin import error in cron function
        0.0.3   | Added cron job function for auto validating transactions every 5 minutes
        0.0.2   | Fixed plugin imports
        0.0.1   | Initial
Platform: UNKNOWN
Description-Content-Type: text/markdown
