Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

✅ Events feature request : "Every other" recurrence pattern

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
upgraderequesteventsFeaturefeature request
1626 Visualizzazioni
Avatar
Nicolas LAURENT

I'd like to have a new recurrence pattern added in Odoo Events module.

I hope this can be included in a future update.

Below is how Deepseek would do it.

___________________________

In Odoo, creating an "every other" recurrence pattern (e.g., every other Tuesday) for events isn’t natively supported in the standard Events module. However, you can achieve this with custom development or workarounds. Here’s how:

1. Native Recurrence Limitations

Odoo’s built-in recurrence options (in Website > Events) only allow:

  • Daily/Weekly/Monthly/Yearly intervals (e.g., "Every Tuesday").
  • Fixed intervals (e.g., "Every 1 week"), but not "every 2 weeks" directly.

2. Workarounds to Create "Every Other" Events

Option 1: Manual Workaround (No Coding)

  1. Create the First Event:
    • Go to Website > Events > Create and set the initial date (e.g., Tuesday, June 4).
  2. Duplicate and Adjust Dates:
    • Click Duplicate, then manually change the date to 2 weeks later (e.g., Tuesday, June 18).
    • Repeat for future dates.

Option 2: Custom Recurrence with Python (Developer Needed)

  1. Create a Custom Field:
    • Add a field like recurrence_interval (e.g., 2 for "every 2 weeks") to the event.event model.
  2. Scheduled Action to Generate Events:
    • Go to Settings > Technical > Automation > Scheduled Actions.
    • Create a Python script to generate events every X weeks:
      python
      Copy
      from datetime import timedelta
      from odoo import models, fields
      
      class Event(models.Model):
          _inherit = 'event.event'
      
          def generate_recurring_events(self):
              events = self.search([('recurrence_interval', '>', 1)])
              for event in events:
                  next_date = fields.Datetime.to_datetime(event.date_begin) + timedelta(weeks=event.recurrence_interval)
                  event.copy({'date_begin': next_date})

Option 3: Use External Calendar + Sync

  • Google Calendar:
    1. Create a recurring event in Google Calendar (supports "every 2 weeks").
    2. Sync with Odoo via the Calendar module or API.

3. Example: "Every Other Tuesday" Setup

  1. Custom Field:
    • Add recurrence_interval = fields.Integer(default=2) to the event.event model.
  2. Automated Logic:
    • When an event is created with recurrence_interval=2, the scheduled action copies it every 2 weeks.

4. Alternative for Advanced Users

  • Odoo Studio (Custom Edition):
    • Use Studio to create a custom recurrence rule (limited flexibility).
  • Third-Party Modules:
    • Explore apps like "Advanced Event Recurrence" on the Odoo App Store (may require payment).

5. Key Considerations

  • Native Support: Odoo’s default recurrence is simple (e.g., "every week"). Complex patterns require customization.
  • Time Zones: Ensure dates are generated in the user’s timezone.
  • Performance: For large-scale events, test automated scripts for efficiency.

Conclusion

To set up "every other [day/week/month]" in Odoo:

  • Basic Needs: Manually duplicate events and adjust dates.
  • Advanced Needs: Hire a developer to create a custom recurrence script or use external tools like Google Calendar.

If you need a no-code solution, explore Odoo Studio or third-party modules. For precise control, custom development is the best route.

0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
✅ eLearning feature request : Revoke course access when subscription is closed or canceled
subscription upgrade request eLearning feature request
Avatar
0
mar 25
1514
Event Coupon Subscription feature request: How to set up a subscription product to issue a fixed number of time-limited coupons that expire with the subscription and cannot be rolled over?
subscription events coupons feature request
Avatar
Avatar
1
mar 25
1508
FileNotFoundError after v17 to v18 upgrade
upgrade
Avatar
Avatar
1
set 25
1330
Upgrade v18->v19 on-premise
upgrade
Avatar
Avatar
Avatar
2
set 25
4966
How to Automatically Send Google Meet Links to Participants in Odoo's Event App?
events
Avatar
Avatar
Avatar
2
apr 25
3288
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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