Description
n8n-nodes-erpnext-selling




Community n8n node package for ERPNext/Frappe Selling v15-v16.
This package is part of the n8n2erpnext ecosystem. It focuses on customer-facing sales workflows and keeps generic escape hatches for custom DocTypes and whitelisted Frappe methods.
Connected Ecosystem Coverage
Selling is live-tested as part of a connected ERPNext business lifecycle, not as an isolated customer-document node.
The Stock validation suite includes end-to-end workflows that connect Buying, Stock, Selling, and Accounting:
- Standard Product Lifecycle: Supplier -> Purchase Receipt -> inventory increase -> Purchase Invoice -> Customer Sale -> Sales Invoice
update_stock = 1-> inventory decrease. - Exception / After-Sales Lifecycle: sale -> return credit note -> warranty warehouse -> defective warehouse -> repair/virtual workshop -> disposal.
- Cross-module lock validation: linked Sales Invoice blocks unsafe Delivery Note cancellation in the Stock suite.
- Ledger validation:
Bin,Stock Ledger Entry, Sales Invoice, Credit Note, Delivery Note, and Stock Entry documents are verified after submit. - ERP administrators who maintain ERPNext/Frappe.
- Sales, customer success, finance, or operations teams that need lead, opportunity, quotation, or sales order workflows.
- Integration teams that want repeatable n8n automations without writing custom Frappe client code for every selling process.
This proves the Selling node participates in the full operational chain: turning inventory into customer revenue, linking to Stock movement, and preserving accounting integrity after invoicing or returns.
Live-Tested Status
This package has been live-tested end to end on the project ERPNext/Frappe test environment:
| Area | Status |
| — | — |
| ERPNext/Frappe target | Live-tested on ERPNext v16/Frappe v16 behavior |
| n8n runtime | Live-tested on self-hosted n8n 2.20.7-exp.0 |
| Infrastructure | Live-tested through LXD ERPNext container at http://10.192.135.2:8001 with host header erp.thaiduy.digital |
| API coverage | Live-tested with Frappe API v1 read workflow and API v2 document workflows |
| Module lifecycle | Customer, Lead, Opportunity, Quotation, Sales Order, Sales Invoice bridge, Payment Entry bridge, amendment flow, and negative cases |
| Ecosystem coverage | Buying -> Stock -> Selling -> Accounting end-to-end workflows |
| Adjacent document coverage | Sales Invoice submit and Payment Entry submit through Custom DocType |
| Amendment coverage | Sales Order cancel/amend/submit flow |
| Negative coverage | Duplicate Item, missing Customer, delete submitted Sales Order, fake Sales Order lookup |
| Security response policy | Public webhook responses were allowlisted summaries; securityFindings: [] |
| Cleanup | Temporary workflows were deactivated and verified as 404 Active version not found |
The live verification used traceable demo records in the ERPNext LXD test instance. The README intentionally includes test infrastructure routing values and document IDs, but no API keys, API secrets, Authorization headers, database passwords, npm tokens, or credential material.
Who This Is For
This package is built for teams that run ERPNext Selling and want controlled sales automations in n8n.
Typical users:
The node is intentionally conservative: it exposes standard Selling document operations, supports Frappe API v1 and v2, and allows controlled fallback access to custom DocTypes and whitelisted Frappe methods.
Architecture At A Glance
Read workflow from left to right:
ERPNext / Frappe Selling <---- API token ----> n8n ERPNext Selling node <---- webhook/API ----> Client / App / Report
Common read pattern:
Client
-> n8n Webhook
-> ERPNext Selling node
-> Frappe REST API
-> ERPNext Selling DocType
-> filtered JSON response
Common selling lifecycle pattern:
n8n Webhook / Schedule / App Event
-> validation / mapping / approval logic
-> ERPNext Selling node
-> Customer, Lead, Opportunity, Quotation, or Sales Order
-> safe summary response or downstream system
Recommended production network pattern:
Public Client
-> HTTPS reverse proxy / VPN / allowlist
-> n8n
-> private network or internal VPS address
-> ERPNext / Frappe site
Supported Resources
Custom DocType is used when a selling workflow crosses into another ERPNext module, such as Delivery Note, Sales Invoice, or Payment Entry.
Node Identity
All n8n2erpnext module nodes use the same ERPNext-style logo shape. Each module changes only the main background color.
| Module | Color | Hex | Reason |
| — | — | — | — |
| Core | ERPNext blue | #2490EF | Foundation package, closest to the ERPNext brand color. |
| HRMS | People green | #2E7D5F | Human operations, employees, attendance, leave, payroll. |
| Accounting | Finance orange-red | #D94A2B | Ledger, journals, invoices, financial control. |
| Buying | Procurement amber | #C47F00 | Purchase flow, suppliers, RFQs, purchase orders, receipts, spend. |
| Selling | Commerce teal | #00A6A6 | Customer-facing pipeline, quotations, sales orders, revenue. |
| Stock | Frappe black | #171717 | Warehouses, items, inventory movement; aligned with Frappe black. |
Operations
For Selling doctypes:
For Frappe methods:
API Versions
The node supports both ERPNext/Frappe document API styles:
v1: /api/resource/:doctypev2: /api/v2/document/:doctypeUse v1 for broad compatibility. Use v2 when your ERPNext/Frappe v16 environment is ready for the newer document API behavior.
Submit and cancel use the shared n8n2erpnext helper rule:
{ doc } to frappe.client.submit.{ doctype, name } to frappe.client.cancel.Reference:
Credentials
Create an API key and secret in ERPNext/Frappe, then configure:
https://erp.example.comerp.example.comThe node authenticates with:
Authorization: token apikey:apisecret
Credential fields are marked as password fields where appropriate. Do not expose API keys, API secrets, Authorization headers, tokens, or passwords in webhook responses, logs, README examples, or package artifacts.
Internal URL With Public Host Header
When n8n and ERPNext run on the same VPS, you can point n8n at the internal ERPNext address and still send the public ERPNext host header:
http://erpnext.internal:8001erp.example.comThis avoids public reverse-proxy authentication while still letting ERPNext receive the expected site host.
For the current VPS/LXD test setup:
Site URL: http://10.192.135.2:8001
Site Host Header: erp.thaiduy.digital
This is infrastructure routing information for the project test environment, not credential material. API keys and API secrets are not included in this README.
For production, create a dedicated ERPNext integration user instead of using a daily admin account. Give that user only the roles required for the workflows it runs.
Official Frappe references:
Examples
Get recent customers:
{
"resource": "customer",
"operation": "getMany",
"apiVersion": "v1",
"fields": "name,customername,customergroup,territory,disabled",
"filtersJson": "[]",
"returnAll": false,
"limit": 20,
"orderBy": "modified desc"
}
Get submitted sales orders:
{
"resource": "salesOrder",
"operation": "getMany",
"apiVersion": "v2",
"fields": "name,customer,transactiondate,grandtotal,status,perdelivered,perbilled",
"filtersJson": "[["docstatus","=",1]]",
"returnAll": false,
"limit": 20,
"orderBy": "transaction_date desc"
}
Run a whitelisted Frappe method:
{
"resource": "frappeMethod",
"operation": "runMethod",
"methodName": "frappe.client.get_value",
"argumentsJson": {
"doctype": "Sales Order",
"filters": { "name": "SAL-ORD-2026-00001" },
"fieldname": ["name", "customer", "grand_total", "status"]
}
}
Use Custom DocType for selling-adjacent documents:
{
"resource": "customDocType",
"customDocType": "Sales Invoice",
"operation": "get",
"documentName": "ACC-SINV-2026-00001",
"apiVersion": "v2"
}
Webhook From n8n To ERPNext Selling
Use this pattern when you want an HTTP endpoint in n8n that reads or writes Selling data in ERPNext.
Client / Browser / App
-> n8n webhook URL
-> ERPNext Selling node
-> Frappe REST API
-> ERPNext Selling DocType
-> JSON response or safe summary
1. Configure The ERPNext Credential
In n8n, create or edit an ERPNext API credential:
http://erpnext.internal:8001erp.example.comfalseFor the current VPS/LXD test setup:
Site URL: http://10.192.135.2:8001
Site Host Header: erp.thaiduy.digital
2. Create A Read Workflow
Create a workflow with these nodes:
GET Webhook -> ERPNext Selling
Webhook node:
GETerpnext-selling-get-customersWhen Last Node FinishesAll EntriesERPNext Selling node:
ERPNext API credentialCustomerGet Manyv1name,customername,customergroup,territory,disabled[]false20modified desc3. Activate And Test
Activate the workflow, then call:
curl -i https://n8n.example.com/webhook/erpnext-selling-get-customers
On the local VPS, you can test without going through the public proxy:
curl -i http://127.0.0.1:5678/webhook/erpnext-selling-get-customers
The tested workflow artifact is included in this repository:
n8n-webhook-erpnext-selling-get-customers.workflow.json
Webhook From ERPNext v16 To n8n
Use this pattern when ERPNext should call n8n automatically after a Selling document is created or updated. For example, ERPNext can call a n8n workflow whenever a Lead, Opportunity, Quotation, Sales Order, or Customer changes.
ERPNext Doc Event
-> Frappe Webhook
-> POST n8n webhook URL
-> n8n workflow
-> validation, notification, CRM sync, approval, audit, or downstream automation
1. Create The n8n Webhook Receiver
Create a workflow in n8n with a Webhook trigger:
Webhook -> your processing nodes
Webhook node:
POSTerpnext-selling-eventNone for a private/internal test, or Header Auth for productionImmediately or When Last Node FinishesThe production webhook URL will look like:
https://n8n.example.com/webhook/erpnext-selling-event
2. Add The Webhook In ERPNext/Frappe v16
In ERPNext/Frappe Desk:
1. Open the global search bar.
2. Search for Webhook.
3. Open Webhook from the Integrations area.
4. Click New.
Configure the Webhook:
Sales Order, Quotation, Opportunity, Lead, Customer, or another Selling DocTypeonsubmit, oncancel, afterinsert, or onupdate depending on the workflowPOSTJSONExample JSON body:
{
"event": "salesordersubmitted",
"doctype": "{{ doc.doctype }}",
"name": "{{ doc.name }}",
"customer": "{{ doc.customer }}",
"company": "{{ doc.company }}",
"transactiondate": "{{ doc.transactiondate }}",
"grandtotal": "{{ doc.grandtotal }}",
"status": "{{ doc.status }}",
"modified": "{{ doc.modified }}"
}
For production, add a shared secret header and validate it in n8n:
X-ERPNext-Webhook-Secret: your-long-random-secret
If you use Frappe’s Webhook Secret field, Frappe adds an X-Frappe-Webhook-Signature header generated from the payload and secret. You can verify this signature in n8n with a Code node if needed.
Official Frappe reference:
Development
npm install
npm run lint
npm audit --omit=dev
npm run build
npx @n8n/node-cli lint
npx @n8n/node-cli build
npm pack --dry-run
Current verification for 0.1.1:
npm run lint passed
npm audit --omit=dev found 0 vulnerabilities
npm run build passed
npx @n8n/node-cli lint passed
npx @n8n/node-cli build passed
npm pack --dry-run passed
Expected runtime dependency policy:
n8n-workflow stays in devDependencies for local TypeScript/lint/build tooling.n8n-workflow is declared in peerDependencies so the host n8n instance provides it at runtime.form-data is pinned through overrides to avoid vulnerable transitive versions.Current Status
Initial package scaffold and live n8n verification are complete.
Tested workflow artifacts:
n8n-webhook-erpnext-selling-get-customers.workflow.jsonn8n-webhook-erpnext-selling-v2-real-sales-flow-test.workflow.jsonn8n-webhook-erpnext-selling-v2-sales-order-amend-test.workflow.jsonn8n-webhook-erpnext-selling-v2-negative-cases-test.workflow.jsonLive tested results:
SAL-ORD-2026-00002 cancelled, amended SAL-ORD-2026-00002-1 submitted.404 Active version not found.Live Test Evidence
GET Customers:
Workflow id: sellGetCustomers01
Path: /webhook/erpnext-selling-get-customers
HTTP result: 200 OK
Fields returned: name, customername, customergroup, territory, disabled
Credential scan: no API key, API secret, Authorization header, token, or password returned
Real sales flow:
Workflow id: sellRealSalesFlowV2Test01
Path: /webhook/erpnext-selling-v2-real-sales-flow-test
Run id: N8N-SELL-REAL-1779071479090
Status: passed
Customer: N8N-SELL-REAL-1779071479090 KH Đặc biệt & Space / Test
Disabled Customer: N8N-SELL-REAL-1779071479090 Disabled Customer
Lead: CRM-LEAD-2026-00016
Opportunity: CRM-OPP-2026-00002
Quotation: SAL-QTN-2026-00003
Sales Order: SAL-ORD-2026-00001
Sales Invoice: ACC-SINV-2026-00003
Payment Entry: ACC-PAY-2026-00005
Security findings: []
ERPNext database verification:
Quotation SAL-QTN-2026-00003: docstatus 1, party Customer, status Open, grand_total 585.
Opportunity CRM-OPP-2026-00002: party Customer, status Open, base_total 150.
Sales Order SAL-ORD-2026-00001: docstatus 1, status To Deliver and Bill, grandtotal 575, perbilled 0.
Sales Invoice ACC-SINV-2026-00003: docstatus 1, Paid, grandtotal 150, outstandingamount 0.
Payment Entry ACC-PAY-2026-00005: docstatus 1, Receive, paidamount 150, receivedamount 150.
GL Entry:
Sales Invoice ACC-SINV-2026-00003 | 2 rows | debit 150 | credit 150 | cancelled 0
Payment Entry ACC-PAY-2026-00005 | 2 rows | debit 150 | credit 150 | cancelled 0
Sales Order amend:
Workflow id: sellSalesOrderAmendV2Test01
Path: /webhook/erpnext-selling-v2-sales-order-amend-test
Run id: N8N-SELL-AMEND-1779071568003
Status: passed
Original Sales Order: SAL-ORD-2026-00002
Original docstatus: 2
Amended Sales Order: SAL-ORD-2026-00002-1
Amended from: SAL-ORD-2026-00002
Amended docstatus: 1
Amended qty: 2
Negative cases:
Workflow id: sellNegativeCasesV2Test01
Path: /webhook/erpnext-selling-v2-negative-cases-test
Status: passed
Sales Order under test: SAL-ORD-2026-00001
Failed as expected:
duplicateItem
salesOrderMissingCustomer
deleteSubmittedSalesOrder
getFakeSalesOrder
Security findings: []
Cleanup verification:
/webhook/erpnext-selling-get-customers -> 404 Active version not found
/webhook/erpnext-selling-v2-real-sales-flow-test -> 404 Active version not found
/webhook/erpnext-selling-v2-sales-order-amend-test -> 404 Active version not found
/webhook/erpnext-selling-v2-negative-cases-test -> 404 Active version not found
Release Checklist
Before tagging a release:
npm ci
npm run lint
npx @n8n/node-cli lint
npm run build
npx @n8n/node-cli build
npm audit --omit=dev
npm pack --dry-run
For provenance publishing, push a semver tag that matches package.json:
git tag v0.1.x
git push origin main
git push origin v0.1.x
The GitHub Actions workflow publishes to npm with provenance:
npm publish --access public --provenance
Test Policy
The ERPNext LXD environment used by this project is allowed to receive realistic demo/test sales data. Selling workflow tests should use traceable test prefixes and should avoid leaking raw ERPNext documents or credential-like fields in public webhook responses.
Temporary write-test workflows should be deactivated after verification. Current live tests confirmed these endpoints returned 404 Active version not found after cleanup:
/webhook/erpnext-selling-get-customers
/webhook/erpnext-selling-v2-real-sales-flow-test
/webhook/erpnext-selling-v2-sales-order-amend-test
/webhook/erpnext-selling-v2-negative-cases-test
Security Notes
Recommended baseline:
Get Many with explicit Fields over Get when exposing webhook responses, because Get can return full documents including comments, owners, child tables, totals, accounting metadata, and contact details.Site Host Header.Security Notice
This package pins transitive form-data resolution with an npm overrides entry so npm audit --omit=dev reports no known vulnerabilities at release time. Keep this override in place until upstream dependencies resolve to a safe version without assistance.
In this package’s tested deployment model, security risk is also reduced by:
Do not treat this mitigation as a permanent substitute for dependency maintenance. Re-run npm audit --omit=dev before publishing a new package version and upgrade compatible n8n dependencies when the upstream dependency chain allows it without breaking n8n node compatibility.
Deployment Checklist For SME And Mid-Market Teams
Before going live:
v1 or v2.Site Host Header if ERPNext is served by a named Frappe site.Suggested production approach:
Troubleshooting
401 or 403: verify API key, API secret, user roles, and DocType permissions in ERPNext.EPROTO or tlsv1 alert internal error: use the internal ERPNext HTTP URL from n8n when the public domain is protected by a reverse proxy or VPN layer.Site Host Header to the public ERPNext site name.Customer create fails: verify customer_group and territory exist in the ERPNext site. The live test site uses Individual and Vietnam.Sales Partner create fails: verify the required Sales Partner setup fields for your ERPNext version. The core live-test flow does not require Sales Partner.Quotation submit fails: verify quotationto, partyname, valid item rows, price list/currency, and company.Sales Order submit fails: verify customer, item sales flags, delivery date, company, UOM, and any pricing/tax rules.Sales Invoice or Payment Entry fails through Custom DocType: verify receivable account, cash/bank account, income account, linked invoice, fiscal period, and party.Scope Boundaries
This package is intentionally Selling-focused. Other ERPNext modules should live in separate packages so each module can evolve independently:
n8n-nodes-frappe-coren8n-nodes-erpnext-hrmsn8n-nodes-erpnext-accountingn8n-nodes-erpnext-buyingn8n-nodes-erpnext-sellingn8n-nodes-erpnext-stockUse Custom DocType for adjacent documents when a Selling workflow needs to cross into another module, such as Sales Invoice, Payment Entry, and Delivery Note. If a workflow is mostly financial, prefer the Accounting package.
References
Frappe / ERPNext:
n8n:
Maintainer Notes
Prepared and reviewed with care by Codex for the n8n2erpnext ERPNext Selling integration work.