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
    • Estate 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
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

✅ Events feature request : "Every other" recurrence pattern

Subscribe

Get notified when there's activity on this post

This question has been flagged
upgraderequesteventsFeaturefeature request
1624 Views
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
Discard
Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
✅ eLearning feature request : Revoke course access when subscription is closed or canceled
subscription upgrade request eLearning feature request
Avatar
0
Mar 25
1513
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
1507
FileNotFoundError after v17 to v18 upgrade
upgrade
Avatar
Avatar
1
Sep 25
1328
Upgrade v18->v19 on-premise
upgrade
Avatar
Avatar
Avatar
2
Sep 25
4955
How to Automatically Send Google Meet Links to Participants in Odoo's Event App?
events
Avatar
Avatar
Avatar
2
Apr 25
3286
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
الْعَرَبيّة 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 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

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