Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

✅ Events feature request : "Every other" recurrence pattern

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
upgraderequesteventsFeaturefeature request
1646 Vues
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
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
✅ eLearning feature request : Revoke course access when subscription is closed or canceled
subscription upgrade request eLearning feature request
Avatar
0
mars 25
1523
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
mars 25
1520
FileNotFoundError after v17 to v18 upgrade
upgrade
Avatar
Avatar
1
sept. 25
1348
Upgrade v18->v19 on-premise
upgrade
Avatar
Avatar
Avatar
2
sept. 25
5022
How to Automatically Send Google Meet Links to Participants in Odoo's Event App?
events
Avatar
Avatar
Avatar
2
avr. 25
3295
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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