Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

✅ Subscription & Calendar feature request: Extend subscription end dates to account for holidays

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
calendarholidayssubscriptionSubscribefeature request
1364 Visninger
Avatar
Nicolas LAURENT

I work primarly with subscription services. Currently, Odoo doesn't natively support the extension of the subscription end dates to account for holidays (public holidays or business closure).

I think a lot of users relying on subscription services would also need this feature.

I've looked up in the app store but not sure if there are apps that can do that.

Any advice on that question?

For reference, here's what Deepseek say:

________________________

To extend subscription end dates in Odoo to account for holidays (e.g., business closures), you’ll need to customize the subscription logic. Here are the best approaches:

1. Native Odoo Solution (Limited)

Odoo’s Subscription module doesn’t natively support holiday-based extensions, but you can manually adjust dates:

  1. Go to Sales > Subscriptions.
  2. Open the subscription and edit the End Date field.
  3. Add the number of holiday days to the original end date (e.g., extend by 7 days for a week-long closure).

Limitation: Manual and time-consuming for large customer bases.

2. Automated Solution (Custom Development)

Step 1: Create a Holiday Calendar

  1. Go to Settings > Technical > Calendar > Calendars and create a "Business Holidays" calendar.
  2. Add holidays as events (e.g., "Annual Closure: Dec 25–Jan 1").

Step 2: Override Subscription Renewal Logic

Use a custom Python method to skip holidays when calculating end dates:

python

Copy

from datetime import timedelta
from odoo import fields, models

class Subscription(models.Model):
    _inherit = 'sale.subscription'

    def _compute_end_date(self):
        for sub in self:
            end_date = sub.start_date + timedelta(days=sub.template_id.duration)
            # Skip holidays
            holidays = self.env['calendar.event'].search([
                ('start_date', '<=', end_date),
                ('stop_date', '>=', end_date),
                ('holiday_calendar_id', '=', sub.company_id.holiday_calendar_id.id)
            ])
            if holidays:
                end_date += timedelta(days=len(holidays))  # Extend by holiday duration
            sub.end_date = end_date

Step 3: Link Holidays to Subscriptions

  • Add a field to link subscriptions to your holiday calendar:
    python
    Copy
    holiday_calendar_id = fields.Many2one('calendar.calendar', string="Holiday Calendar")

3. Alternative: Use "Pause Subscription" Functionality

  1. Manually pause subscriptions during holidays:
    • Go to Subscriptions, select records, and click "Pause".
    • Resubscriptions will auto-extend by the paused duration.
  2. Automate pausing with a scheduled action triggered by holidays.

4. Third-Party Apps

  • Explore Odoo apps like "Subscription Extensions" or "Advanced Subscriptions" (check the Odoo App Store).
  • Look for features like:
    • "Skip holidays in billing cycles".
    • "Auto-adjust end dates".

Key Considerations

  • Prorated Billing: If extending subscriptions, decide whether to charge customers for the extra days.
  • Notifications: Send emails to inform customers of adjusted dates.
  • Testing: Dry-run with a test subscription before deploying.

Why This Works

  • Holiday Awareness: Subscriptions now account for business closures.
  • Scalability: Automated for large customer bases.

For a no-code fix, use manual date edits or pause subscriptions. For automation, custom development is required (cost: ~€200–€500 via freelancer).

0
Avatar
Kassér
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
How to block specific dates/times in Odoo calendar?
calendar holidays
Avatar
0
jan. 21
6409
subscribtion automatic invoices
subscription Subscribe
Avatar
Avatar
1
jul. 20
3439
where is calendar to manage holidays?
calendar holidays
Avatar
0
mar. 15
4832
✅ eLearning subscription feature request: Gradual access to course conditioned by number of subcription renewals
subscription eLearning feature request
Avatar
0
mar. 25
1651
Public Holidays Not shown in Calendar Løst
calendar holidays odoo
Avatar
Avatar
Avatar
5
feb. 24
9347
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now