Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Property Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
      • Get a Tailored Demo
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +32 2 290 34 90
    • Get a Tailored Demo
  • Pricing
  • Help
  1. APPS
  2. Extra Tools
  3. NextERP License Client v 19.0
  4. Sales Conditions FAQ

NextERP License Client

by NextERP Romania https://www.nexterp.ro
Odoo
v 19.0 Third Party
Download for v 19.0 Deploy on Odoo.sh
Apps purchases are linked to your Odoo account, please sign in or sign up first.
Availability
Odoo Online
Odoo.sh
On Premise
Odoo Apps Dependencies Discuss (mail)
Community Apps Dependencies Show
NextERP Base
Lines of code 878
Technical Name nexterp_license
LicenseLGPL-3
Websitehttps://www.nexterp.ro
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Odoo Apps Dependencies Discuss (mail)
Community Apps Dependencies Show
NextERP Base
Lines of code 878
Technical Name nexterp_license
LicenseLGPL-3
Websitehttps://www.nexterp.ro
NextERP License Client icon

NextERP License Client

Generic license cache for private NextERP packages

v 19.0.1.0.0 ToolsLGPL-3
  • Overview
  • Features
  • Configuration
  • How it works
  • Versions

Overview

This module provides a generic, shared license cache used by every private NextERP package (declarations, partner_data_anaf, ...). Consuming modules extend license_type, declare their API key field on res.company, and yield their requests from _collect_license_requests. The cache itself is one row per (company, license_type), refreshed by a cron against the NextERP license server.


NextERP Romania

Built & supported by NextERP Romania

Romanian Odoo specialists, here for the long run — from implementation to localization and day-to-day production support.

10+
Years of Odoo experience per team member
80%+
of Romanian Localization maintained on Odoo Apps
19.0
Tracking every Odoo major release

What we do

⚙️

Odoo Solutions

From quick-start rollouts to multi-company deployments and custom modules built for your processes.

🇷🇴

Romanian Localization

SAF-T (D406), e-Factura, e-Transport, D300 / D390 / D394, ANAF integration, full chart of accounts and fiscal positions.

🛟

Our Services

Implementation, customization, migration, integration, support and consultancy — Romanian-speaking, SLA-backed.

Features

  • Shared license cache — one nexterp.license row per (company, license_type), used by every private NextERP module (declarations, partner_data_anaf, ...).
  • Pluggable consumers — each consuming module extends the license_type selection and overrides _collect_license_requests to yield its own (license_type, api_key) tuples.
  • Centralised refresh cron — a single cron iterates all companies, collects every consumer's requests and POSTs them to the NextERP license server's /check_license endpoint.
  • Cached state, dates and feature flags — state, start_date, expiry_date, feature_codes, package_name, latest_version and last_check are stored on the cache row so the rest of Odoo can read them without hitting the network.
  • Feature gating helper — has_feature(license_type, code) is the one-line check consuming modules call to enable a paid feature.
  • Optional auto-update — a second cron pip-upgrades any package whose latest_version exceeds the installed version; the Odoo module upgrade itself is delegated to an external supervisor.
  • Per-company server URL — the license server URL is configurable on res.company (group System) and defaults to https://nexterp.ro.

Configuration

1. Set the license server URL (optional)

Edit the company (group System) to override NextERP License Server (nexterp_license_server_url). The default is https://nexterp.ro and is correct for all standard NextERP subscribers.

2. Provide the API key on each consuming module

This module ships only the cache. The actual API keys live on res.company and are added by each consuming module — for example nexterp_declarations_license_key for the declarations package. Open Settings → Companies → your company and fill in the keys issued to you by NextERP support.

3. Refresh

The scheduled action NextERP License: Refresh runs daily and calls /check_license for every (company, license_type) declared by consuming modules. You can also trigger a refresh manually from the list view (NextERP → Licenses) via Refresh All.

4. Auto-update (optional)

The scheduled action NextERP License: Auto-update Packages pip-upgrades each package whose latest_version exceeds the locally installed version. The actual Odoo module upgrade (restart with -u <module>) is delegated to your external supervisor — this cron only refreshes the Python package on disk.

How it works

Inspecting cached licenses

  1. Go to NextERP → Licenses.
  2. Each row shows a (company, license_type) pair with its current state, start_date, expiry_date, feature_codes, package_name, installed_version and latest_version.
  3. Open a row to read the last error returned by the server (last_error) and the timestamp of the most recent check (last_check).

Calling from another module

Consuming modules check whether a feature is unlocked with:

self.env["nexterp.license"].has_feature("declarations", "d390")

This returns True only when the cache row for the current company is active, not expired and includes the given code in feature_codes.

Versions

19.0.1.0.0 (2026-06-08)

  • Initial release: generic license cache shared by every private NextERP package.

Discover the NextERP suite

Other modules from the same publisher, built to work together.

NE
NextERP Base
Tools

Base connector for NextERP API

NE
NextERP Chatbot
Tools

NextERP Chatbot Support Integration

NE
NextERP - ANAF Token Authorization
Localization

Authorize partner with ANAF

NE
NextERP - Migration
Usability

NextERP - Migration

NextERP Romania

Odoo implementation, customization, Romanian localization and long-term support since 2018.

nexterp.ro
All apps

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author, please use the developer contact information. They can usually be found in the description.
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with