Automatic Numbering for Invoices

Use the NumberingSequence API to assign invoice numbers automatically in A-Cube.

Step 1: Create a Numbering Sequence

Define sequences that specify the format and number series for invoices.

Creating a NumberingSequence

Send a POST request:

Copy
Copied
POST /numbering-sequences

With a JSON body (example):

Copy
Copied
{
  "name": "SequenceName",
  "format": "Sez1-%s",
  "number": 1
}
  • name : Unique sequence identifier
  • format : Template for invoice numbers (use "%s" as a placeholder for the number)
  • number : Initial number

The API returns a resource with a UUID that identifies the sequence. For details, see the NumberingSequence API.

Step 2: Use Numbering Sequences in Invoices

Insert the placeholder in your invoice:

Copy
Copied
getNumero(<name>)

Example JSON:

Copy
Copied
{
  // other fields in the invoice
  "dati_generali_documento": {
    "data": "2021-01-01",
    "numero": "getNumero(SequenceName)"
    ...
  }
}

or XML:

Copy
Copied
// other fields in the invoice
<DatiGeneraliDocumento>
  <Data>2021-01-01</Data>
  <Numero>getNumero(SequenceName)</Numero>
  ...

When you create an invoice, A-Cube replaces the placeholder with the next number: "Sez1-1", "Sez1-2", etc.

Notes

  • Increments automatically for every new invoice
  • Resets at the start of each year (from 1)