Skip to Content
Settings & Configuration

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
Getting Started
System Parameters & Sequences
System Parameters & Sequences

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.urlAuto-detectedThe public URL of your Quickenerp instance. Used in email links and redirects. Set this manually if auto-detection gives the wrong URL.
database.expire_dateFor trial databases: the expiry date. Users see a warning as the date approaches.
mail.catchall.domainThe catchall email domain. Emails sent to unknown aliases @catchall.domain are bounced.
mail.bounce.aliasbouncePrefix for the bounce email address. Bounce processing removes invalid email addresses from mailing lists.
report.urlAuto-detectedURL used to generate PDF reports. Override if you use a separate reporting server.
google_analytics.keyGoogle Analytics 4 Measurement ID. When set, tracking code is added to all website pages.
snailmail.cooperator_thresholdMaximum number of recipients for bulk snail mail sending.

Creating a System Parameter

  1. Click Create.
  2. Key – Use dot notation (e.g. mycompany.some_setting). Follow existing conventions for consistency.
  3. Value – The string value. Quickenerp automatically parses booleans, integers, and floats.
  4. 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.order for sales orders).
  • Prefix – Text before the number: SO/{{year}}/ produces SO/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:

  1. Find the "Customer Invoice Sequence" in the sequence list.
  2. Change Prefix from INV/{{year}}/ to INV-{{year}}-.
  3. Change Padding from 4 to 5.
  4. Save. The next invoice will be numbered INV-2026-00001.
  5. 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 all
New Content
System Parameters & Sequences
System Parameters & Sequences
Preview

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.urlAuto-detectedThe public URL of your Quickenerp instance. Used in email links and redirects. Set this manually if auto-detection gives the wrong URL.
database.expire_dateFor trial databases: the expiry date. Users see a warning as the date approaches.
mail.catchall.domainThe catchall email domain. Emails sent to unknown aliases @catchall.domain are bounced.
mail.bounce.aliasbouncePrefix for the bounce email address. Bounce processing removes invalid email addresses from mailing lists.
report.urlAuto-detectedURL used to generate PDF reports. Override if you use a separate reporting server.
google_analytics.keyGoogle Analytics 4 Measurement ID. When set, tracking code is added to all website pages.
snailmail.cooperator_thresholdMaximum number of recipients for bulk snail mail sending.

Creating a System Parameter

  1. Click Create.
  2. Key – Use dot notation (e.g. mycompany.some_setting). Follow existing conventions for consistency.
  3. Value – The string value. Quickenerp automatically parses booleans, integers, and floats.
  4. 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.order for sales orders).
  • Prefix – Text before the number: SO/{{year}}/ produces SO/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:

  1. Find the "Customer Invoice Sequence" in the sequence list.
  2. Change Prefix from INV/{{year}}/ to INV-{{year}}-.
  3. Change Padding from 4 to 5.
  4. Save. The next invoice will be numbered INV-2026-00001.
  5. 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.

New Content
Scheduled Actions (Cron Jobs)
Scheduled Actions (Cron Jobs)
Preview

Scheduled Actions

Scheduled actions (also called cron jobs) run automated tasks on a repeating schedule. They handle periodic maintenance, data processing, and automated communications.

Navigation

Go to Settings > Technical > Scheduled Actions (developer mode required).

Important System Scheduled Actions

Name Schedule Purpose
Mail: Email Queue ManagerEvery 1 minuteProcesses the outgoing email queue. If this cron is inactive, no emails are sent.
Mail: Fetchmail ServersEvery 5 minutesChecks incoming mail servers for new emails. If inactive, incoming email processing stops.
Accounting: Generate Valuation LayersEvery 1 hourCreates inventory valuation layers for stock moves.
Sales: Subscription Auto-InvoiceDaily at 2:00 AMGenerates invoices for subscriptions due on the current date.
CRM: Lead Scoring BatchEvery 12 hoursRecalculates lead scores based on scoring rules.
Website: Sitemap GenerationDaily at 3:00 AMGenerates SEO sitemap.xml for the website.
Base: Update Currency RatesDaily at 9:00 AMFetches latest exchange rates from configured API.

Creating a Custom Scheduled Action

  1. Click Create.
  2. Name – e.g. "Daily Sales Summary Email".
  3. Model – The model the action works on (most system actions use ir.actions.server).
  4. Execution Frequency:
  • Number of Calls – Run a fixed number of times, then stop.
  • Do Not Repeat – Run once.
  • Repeat Every – Run on a recurring schedule. Specify interval (Minutes, Hours, Days, Weeks, Months).
  • Next Execution Date – When to run first. Use a future date/time.
  • Number of Calls Remaining – For repeating actions, this decreases each run. Set to -1 for unlimited runs.
  • Under Server Action to Run, select the action that executes when the cron fires.
  • Check Active to enable the cron.
  • Click Save.
  • Cron Monitoring

    The list view of scheduled actions shows:

    • Status – "Done", "Running", or "Failed". Red background indicates a failure.
    • Last Execution – Timestamp of the last run.
    • Next Execution – When the next run is scheduled.
    • Progress – For long-running crons, shows progress information.

    If a cron fails, click the failed status to see the error details in the server logs. Common causes: Python errors in the action, unavailable network resources, or database locks.

    Best Practices

    • Schedule heavy operations during off-peak hours (e.g. 2:00 AM).
    • Avoid running crons too frequently – a "Repeat Every 1 Minute" cron that takes 30 seconds may overlap with itself if it starts a second instance before the first finishes. Quickenerp prevents this by checking that the previous instance has completed before starting a new one.
    • Test new crons by setting "Number of Calls" to 1 and a "Next Execution" of 2 minutes from now, then verify it runs correctly before making it recurring.
    New Content
    Automated Actions
    Automated Actions
    Preview

    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

    1. Name – A descriptive name (e.g. "Notify Manager on Large Order").
    2. Model – The model to watch (e.g. Sale Order, Invoice, Lead).
    3. 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.
  • Trigger Fields – For "On Update" triggers, specify which field changes should activate the rule. If empty, any field change triggers it.
  • Conditional Filter (Domain) – Only fire when the record matches this domain. Example: [('amount_total', '>', 10000)] – only for orders over $10,000.
  • Actions to Execute – What happens when the rule fires:
    • 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

    1. Create a test record that meets the condition.
    2. Check that the action executed (email received, record created, field updated).
    3. Check the server logs if the action didn't fire.
    4. 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.
    This documentation is updated continuously. Some features described here may be renamed, deprecated, or still being finalized.