Skip to main content

Billing plugin for NEMO

Project description

NEMO billing

This billing plugin for NEMO includes core facilities and custom charges/adjustments. It also includes sub-modules for adding rates and invoices.

Installation

pip install NEMO-billing

Add core billing plugin

in settings.py add to INSTALLED_APPS:

INSTALLED_APPS = [
    '...',
    'NEMO_billing',  # Add before NEMO to have new navbar menu items show up
    'NEMO_billing.rates',
    'NEMO_billing.invoices',
    # 'NEMO_billing.cap_discount',  # Optional
    # 'NEMO_billing.prepayments',  # Optional
    # 'NEMO_billing.quotes',  # Optional
    # 'NEMO_billing.institution_agreements',  # Optional
    '...',
    # 'NEMO_user_details',  # If using user details plugin
    '...',
    'NEMO',
    '...'
]

NEMO Compatibility

NEMO-Billing NEMO NEMO-CE
>= 4.10.0 >= 7.4.2 >= 7.4.6
>= 4.7.0 >= 7.3.3 >= 7.3.5
>= 4.4.0 >= 7.2.0 >= 7.2.0
>= 4.0.0 >= 7.0.0 >= 7.0.0
>= 3.0.0 >= 6.0.0 >= 6.0.0
>= 2.9.4 >= 5.5.3 >= 2.4.4
>= 2.9.1 >= 5.5.2
>= 2.9.0 >= 5.5.0
>= 2.8.0 >= 5.3.0
>= 2.7.0 >= 4.7.0
>= 2.6.13 >= 4.6.4
>= 2.5.8 >= 4.6.0
>= 2.0.0 >= 4.5.0
>= 1.23.0 >= 4.3.0
>= 1.22.2 >= 4.2.1
>= 1.22.1 >= 4.2.0
>= 1.19.0 >= 4.1.0
>= 1.18.0 >= 4.0.0
>= 1.16.0 >= 3.14.0
>= 1.13.0 >= 3.13.0
>= 1.5.0 >= 3.10.0

Usage

This plugin will add core facilities and custom charges which can be added through django admin.

Core Facility can be set on Custom Charges, Tools, Areas, Consumables and Staff Charges

There are 2 ways to set them up:

  1. In Detailed Administration -> Core Facilities, you can select each tool, area, consumable or staff charge
  2. In Detailed Administration -> NEMO on each individual custom charge, tool, area, consumable or staff charge

Core Facility can be accessed on a tool, area, consumable or staff charge using: tool.core_facility, area.core_facility, consumable.core_facility or staff_charge.core_facility

Options

By default, a Core Facility is not required for each custom charge, tool, area, consumable or staff charge.

That can be changed by updating the following default settings in settings.py:

TOOL_CORE_FACILITY_REQUIRED = False
AREA_CORE_FACILITY_REQUIRED = False
CONSUMABLE_CORE_FACILITY_REQUIRED = False
STAFF_CHARGE_CORE_FACILITY_REQUIRED = False
CUSTOM_CHARGE_CORE_FACILITY_REQUIRED = False

In the billing (user, project billing, billing API, invoices) tool usage and area access on behalf of a user (only during a remote project) are categorized as Staff Charges.

That can be changed by updating the following default settings in settings.py

STAFF_TOOL_USAGE_AS_STAFF_CHARGE = True
STAFF_AREA_ACCESS_AS_STAFF_CHARGE = True

Email templates

To change email templates, either go to Invoices customization settings in NEMO and upload new files, or directly create a file in NEMO's media folder with the same name.
The following templates can be set:

  • email_send_invoice_subject.txt
  • email_send_invoice_message.html
  • email_send_invoice_reminder_subject.txt
  • email_send_invoice_reminder_message.html
  • billing_project_expiration_reminder_email_subject.txt
  • billing_project_expiration_reminder_email_message.html

Timed services/cron jobs

To send reminder emails, set a cron job daily with one of the 2 options:

  1. send an authenticated http request to <nemo_url>/invoices/send_invoice_payment_reminder
  2. run command django-admin send_invoice_payment_reminder or python manage.py send_invoice_payment_reminder

Similarly, to automatically deactivate expired projects and send expiration reminders, set a cron job daily with one of the 2 options:

  1. send an authenticated http request to <nemo_url>/projects/deactivate_expired_projects
  2. run command django-admin deactivate_expired_projects or python manage.py deactivate_expired_projects

Add Rates plugin

in settings.py add to INSTALLED_APPS:

'NEMO_billing.rates',

Rates module options

The following default properties can be changed in settings.py

# The display rate currency is set to $ by default
RATE_CURRENCY = "CAD "
# Missed reservations rates will have the "flat" checkbox checked by default
DEFAULT_MISSED_RESERVATION_FLAT = True
# The rate list URL can be customized
RATE_LIST_URL = "fee_schedule"

Add Invoices plugin

in settings.py add to INSTALLED_APPS:

'NEMO_billing.invoices',

Invoices module options

The following default properties can be changed in settings.py:

# Date formats
INVOICE_DATETIME_FORMAT = "%m/%d/%Y %H:%M:%S"
INVOICE_DATE_FORMAT = "%B %d, %Y"
# Invoice email prefix
INVOICE_EMAIL_SUBJECT_PREFIX = "[NEMO Billing] "
# Whether to validate that all billable items belong to a core facility before generating invoice
INVOICE_ALL_ITEMS_MUST_BE_IN_FACILITY = False 

Add CAP discount plugin

in settings.py add to INSTALLED_APPS:

'NEMO_billing.cap_discount',

CAP Discount settings are available in Customization -> Billing CAP

Add Project prepayments/funds plugin

in settings.py add to INSTALLED_APPS:

'NEMO_billing.prepayments',

Add Quotes plugin

in settings.py add to INSTALLED_APPS:

'NEMO_billing.quotes',

Email templates

To add email templates, either go to Quotes customization settings in NEMO and upload new files, or directly create a file in NEMO's media folder with the same name.
The following templates are available in the resources folder:

  • quote_email.html
  • quote_approval_request_email.html
  • quote_status_update_email.html

Dashboard icon

You can add a dashboard icon in Detailed administration -> Landing page choices:

URL

  • make sure <nemo_url>/public_quote/* URL is public in your webserver (nginx, apache, etc.)

Add Institution agreements plugin

in settings.py add to INSTALLED_APPS:

'NEMO_billing.institution_agreements',

URL

  • the URL for service agreements is <nemo_url>/service_agreements/

Timed services/cron jobs

To send service agreement reminder emails, set a cron job daily with one of the 2 options:

  1. send an authenticated http request to <nemo_url>/service_agreements/email_institution_agreements_reminders
  2. run command django-admin send_institution_agreement_reminder or python manage.py send_institution_agreement_reminder

Post Installation

run:

python manage.py migrate

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nemo_billing-4.10.4.tar.gz (229.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nemo_billing-4.10.4-py3-none-any.whl (308.1 kB view details)

Uploaded Python 3

File details

Details for the file nemo_billing-4.10.4.tar.gz.

File metadata

  • Download URL: nemo_billing-4.10.4.tar.gz
  • Upload date:
  • Size: 229.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for nemo_billing-4.10.4.tar.gz
Algorithm Hash digest
SHA256 ea8218699292b59e7a612fb46b7fa2dfd5624cfffc4a499e4e08404560c54d82
MD5 e1128f10a770a05804474eac7b995c24
BLAKE2b-256 8d36433044e302a0cf55a072932c324bccfe5acf81e66746b09e4b489dfaedab

See more details on using hashes here.

File details

Details for the file nemo_billing-4.10.4-py3-none-any.whl.

File metadata

  • Download URL: nemo_billing-4.10.4-py3-none-any.whl
  • Upload date:
  • Size: 308.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for nemo_billing-4.10.4-py3-none-any.whl
Algorithm Hash digest
SHA256 31ae9ae7d79f2e962f5e226804a25c44fe73e459877dccebd8e1acfea33b7ffa
MD5 51a775fe6146be6a009542eba1946ad9
BLAKE2b-256 a22cb851ec4fc9eab01b6c40878a9c4c16a55ab8574282032da39f9806a9a399

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page