Settings & Configuration
This course covers all configuration areas in Quickenerp. Learn how to manage system-wide settings, configure email servers, set up security rules, manage translations, and use technical tools like automated actions and scheduled tasks. This is the most important course for administrators – everything here applies across all modules.
| Responsible | System |
|---|---|
| Last Update | 07/21/2026 |
| Completion Time | 6 days 18 hours |
| Members | 1 |
System Parameters
System parameters store key-value configuration pairs. They are used to customise Quickenerp's behaviour without writing code.
Navigation
Go to Settings > Technical > System Parameters (developer mode required).
Commonly Used System Parameters
| Key | Default Value | Purpose |
|---|---|---|
web.base.url | Auto-detected | The public URL of your Quickenerp instance. Used in email links and redirects. Set this manually if auto-detection gives the wrong URL. |
database.expire_date | – | For trial databases: the expiry date. Users see a warning as the date approaches. |
mail.catchall.domain | – | The catchall email domain. Emails sent to unknown aliases @catchall.domain are bounced. |
mail.bounce.alias | bounce | Prefix for the bounce email address. Bounce processing removes invalid email addresses from mailing lists. |
report.url | Auto-detected | URL used to generate PDF reports. Override if you use a separate reporting server. |
google_analytics.key | – | Google Analytics 4 Measurement ID. When set, tracking code is added to all website pages. |
snailmail.cooperator_threshold | – | Maximum number of recipients for bulk snail mail sending. |
Creating a System Parameter
- Click Create.
- Key – Use dot notation (e.g.
mycompany.some_setting). Follow existing conventions for consistency. - Value – The string value. Quickenerp automatically parses booleans, integers, and floats.
- Click Save. The parameter takes effect immediately (some may require a page reload).
Sequences
Sequences control auto-numbering of documents – invoice numbers, quotation numbers, order references, etc.
Navigation
Go to Settings > Technical > Sequences > Sequences (developer mode).
Sequence Structure
Each sequence has:
- Name – e.g. "Sales Order Sequence".
- Code – Internal code (e.g.
sale.orderfor sales orders). - Prefix – Text before the number:
SO/{{year}}/producesSO/2026/0001. - Suffix – Text after the number.
- Padding – Number of digits (4 = 0001, 5 = 00001).
- Next Number – The next number in the sequence. You can manually change this.
- Reset Period – Reset the counter: No Reset, Daily, Monthly, Yearly.
Customising Numbering
Example: Change invoice numbering from INV/2026/0001 to INV-2026-00001:
- Find the "Customer Invoice Sequence" in the sequence list.
- Change Prefix from
INV/{{year}}/toINV-{{year}}-. - Change Padding from 4 to 5.
- Save. The next invoice will be numbered
INV-2026-00001. - Already-issued invoices are not affected.
Note: Some localisation packages set numbering according to legal requirements. In the EU, invoices must be numbered sequentially without gaps. Adjust with care.
General Settings Overview
View allSystem Parameters
System parameters store key-value configuration pairs. They are used to customise Quickenerp's behaviour without writing code.
Navigation
Go to Settings > Technical > System Parameters (developer mode required).
Commonly Used System Parameters
| Key | Default Value | Purpose |
|---|---|---|
web.base.url | Auto-detected | The public URL of your Quickenerp instance. Used in email links and redirects. Set this manually if auto-detection gives the wrong URL. |
database.expire_date | – | For trial databases: the expiry date. Users see a warning as the date approaches. |
mail.catchall.domain | – | The catchall email domain. Emails sent to unknown aliases @catchall.domain are bounced. |
mail.bounce.alias | bounce | Prefix for the bounce email address. Bounce processing removes invalid email addresses from mailing lists. |
report.url | Auto-detected | URL used to generate PDF reports. Override if you use a separate reporting server. |
google_analytics.key | – | Google Analytics 4 Measurement ID. When set, tracking code is added to all website pages. |
snailmail.cooperator_threshold | – | Maximum number of recipients for bulk snail mail sending. |
Creating a System Parameter
- Click Create.
- Key – Use dot notation (e.g.
mycompany.some_setting). Follow existing conventions for consistency. - Value – The string value. Quickenerp automatically parses booleans, integers, and floats.
- Click Save. The parameter takes effect immediately (some may require a page reload).
Sequences
Sequences control auto-numbering of documents – invoice numbers, quotation numbers, order references, etc.
Navigation
Go to Settings > Technical > Sequences > Sequences (developer mode).
Sequence Structure
Each sequence has:
- Name – e.g. "Sales Order Sequence".
- Code – Internal code (e.g.
sale.orderfor sales orders). - Prefix – Text before the number:
SO/{{year}}/producesSO/2026/0001. - Suffix – Text after the number.
- Padding – Number of digits (4 = 0001, 5 = 00001).
- Next Number – The next number in the sequence. You can manually change this.
- Reset Period – Reset the counter: No Reset, Daily, Monthly, Yearly.
Customising Numbering
Example: Change invoice numbering from INV/2026/0001 to INV-2026-00001:
- Find the "Customer Invoice Sequence" in the sequence list.
- Change Prefix from
INV/{{year}}/toINV-{{year}}-. - Change Padding from 4 to 5.
- Save. The next invoice will be numbered
INV-2026-00001. - Already-issued invoices are not affected.
Note: Some localisation packages set numbering according to legal requirements. In the EU, invoices must be numbered sequentially without gaps. Adjust with care.
Automated Actions
Automated actions are server-side rules that trigger automatically when records are created, updated, or deleted. They are a powerful no-code automation tool.
Navigation
Go to Settings > Technical > Automated Actions (developer mode required).
Anatomy of an Automated Action
- Name – A descriptive name (e.g. "Notify Manager on Large Order").
- Model – The model to watch (e.g. Sale Order, Invoice, Lead).
- Trigger – When to fire:
- On Creation – When a new record is created.
- On Update – When an existing record is modified.
- On Creation & Update – Both.
- On Deletion – When a record is deleted.
[('amount_total', '>', 10000)] – only for orders over $10,000.- Send an email (select an email template).
- Create a new record (e.g. create a task in Projects).
- Update a field on the current record (e.g. set a flag).
- Execute a server action (Python code or multi-step process).
- Add a follower to the record.
- Create an activity (e.g. schedule a follow-up call).
Practical Examples
Example 1: Notify Manager on High-Value Orders
- Model: Sales Order
- Trigger: On Creation & Update
- Condition:
[('amount_total', '>', 50000)] - Action: Send Email – use a template that emails the sales manager with order details.
Example 2: Flag Expired Credit Cards on Contacts
- Model: Contact (res.partner)
- Trigger: On Update (when credit card expiry changes)
- Condition:
[('credit_card_expiry', '<', current_date)] - Action: Update field – set "Credit Card Valid" to False, create an activity to call customer.
Example 3: Auto-Assign Salesperson on New Lead
- Model: CRM Lead
- Trigger: On Creation
- Condition:
[('user_id', '=', False)](not assigned yet) - Action: Execute Python code – find the least-loaded salesperson in the lead's country team and assign them.
Testing Automated Actions
- Create a test record that meets the condition.
- Check that the action executed (email received, record created, field updated).
- Check the server logs if the action didn't fire.
- Remember that automated actions run synchronously – they execute immediately as part of the create/write operation. A slow action can make the UI feel sluggish.
Multi-Language Support
Quickenerp supports 50+ languages. The interface, reports, website, and customer portal can all be translated. Each user can choose their preferred language.
Installing a Language
- Go to Settings > General Settings.
- In the "Language/Translations" section, click Load a Translation.
- Select the language from the dropdown (e.g. French, Spanish, German, Japanese).
- Click Load. Quickenerp installs the translation pack – this may take a few minutes.
- The language is now available for users to select in their preferences.
How Translations Work
Quickenerp uses a three-tier translation system:
- Module Translations – Pre-built translation files shipped with each module. These translate standard interface terms (labels, buttons, messages).
- User-Customised Translations – YOU can override any translated term. Go to Settings > Technical > Translations > Custom Translations (developer mode). This is useful when you prefer different terminology (e.g. "Clients" instead of "Customers").
- Language-Specific Data – Some data records can have translated fields. For example, a product can have different names and descriptions per language. Enable "Translatable" on any text field in the field definition (Technical – Fields).
User Language Selection
Each user can set their own interface language:
- Click the user avatar (top-right) – My Profile.
- In the Preferences tab, select the Language field.
- Save. The interface reloads in the selected language.
Fiscal Localisation Packages
Localisation packages include country-specific chart of accounts, taxes, fiscal positions, and report templates. Go to Accounting > Configuration > Settings – "Fiscal Localisation" section.
Select your country to install the appropriate localisation:
- United States – US chart of accounts, sales tax setup, 1099 reporting.
- United Kingdom – UK chart of accounts, VAT setup, MTD-compatible reports.
- India – GST-compatible chart, HSN/SAC codes, GSTR reports.
- France – French chart, VAT, FEC export.
- Germany – SKR03/SKR04 charts, GDPdU/GoBD compliance.
- UAE – VAT setup, FTA-compliant reports.
Each localisation package installs the chart of accounts, default tax templates, fiscal position rules for intra-community trading, and statutory report templates.