Files
ns_erpnext_app/ns_app/hooks.py
Norman King 1784d3819b refactor: move customer statements into its own app
Customer statements + late-fee billing now live in the standalone
`customer_statements` app, so they can be versioned and deployed
independently of the NMI payment integration.

Removed here: api/statements.py, setup.py (its custom fields existed only
for late fees), customer_statements.js, customer_list.js, the statement
template, and the feature doc. hooks.py drops the statements JS,
doctype_list_js, and after_migrate accordingly.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-25 04:53:43 -04:00

31 lines
618 B
Python

app_name = "ns_app"
app_title = "NS App"
app_publisher = "NS Innovations"
app_description = "Custom ERPNext extensions"
app_email = "dev@nsinnovations.net"
app_license = "MIT"
# Load on every page
app_include_js = [
"/assets/ns_app/js/customer_quick_entry.js"
]
# Load on Sales Invoice form
doctype_js = {
"Sales Invoice": "public/js/sales_invoice.js"
}
# Fixtures tracked in Git
fixtures = [
{
"dt": "Print Format",
"filters": [
["name", "in", [
"NS Invoice",
"NS Sales Order",
"NS Quotation"
]]
]
}
]