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

How to exclude specific day between two date in calculation ?

Subscribe

Get notified when there's activity on this post

This question has been flagged
pythondateexcludeignore
13 Replies
14549 Views
Avatar
Ankit H Gandhi(AHG)

Hello People,

I want to total number of days from two dates. but there is one condition to count total number of day but excluded(ignore) specific day ?

Like

I have below dates  

start date: 01/01/2015

end date: 31/03/2015

Here I want total number of days between start date and end date, but not including " Tuesday " in total number of days.

Thanks in Advance.

1
Avatar
Discard
Avatar
Temur
Best Answer

@Ankit, here is brute-force version:

from datetime import datetime, date, timedelta

date_start = datetime.strptime('2015-01-01','%Y-%m-%d').date()
date_end = datetime.strptime('2015-03-31','%Y-%m-%d').date()

delta_day = timedelta(days=1)

days = {'mon':0,'tue':1,'wed':2,'thu':3,'fri':4,'sat':5,'sun':6}

dt = date_start
day_count=0

while dt <= date_end:
if dt.weekday() != days['tue']:
day_count+=1
dt += delta_day

But suggestion of @Drees is much more lightweight and should be executed faster for large periods, if you'll get it worked.


UPDATE:

slightly modified approach suggested by @Drees, if we make sure day count starts at the weekday we are interested in (by "removing" days before first occurrence of the target day i.e. weekday to be excluded), then total count of weekday occurrence will be:

# total_days  -- days between start_date (inclusive) and and_date (inclusive)
# days_before -- days from total_days period, that are before first occurrence of the weekday to be excluded

weekday_count = (total_days - days_before) / 7

if (total_days - days_before) % 7:
weekday_count = weekday_count + 1

days_wit_excluded_target_day = total_days - weekday_count

If we're agree that above code may calculate correctly the day count in [start_date, end_date] period with a target_weekday excluded, then there is a corresponding code:

version with calculation

from datetime import datetime

date_start_val = '2015-01-01' # start date (inclusive)
date_end_val = '2015-03-31' # end date (inclusive)

date_start = datetime.strptime(date_start_val,'%Y-%m-%d').date()
date_end = datetime.strptime(date_end_val,'%Y-%m-%d').date()

days = {'mon':0,'tue':1,'wed':2,'thu':3,'fri':4,'sat':5,'sun':6}

total_days = (date_end - date_start).days + 1

first_weekday = date_start.weekday()
target_weekday = days['tue']

if target_weekday == first_weekday:
days_before = 0
elif target_weekday < first_weekday:
days_before = 7 - first_weekday + target_weekday
else:
days_before = target_weekday - first_weekday
 
weekday_count = total_days - days_before
if weekday_count > 0:
weekday_count = weekday_count/7 + (weekday_count%7 and 1 or 0)
else:
weekday_count = 0

day_count = total_days - weekday_count

this version should be much faster on large periods then other versions.


1
Avatar
Discard
Ankit H Gandhi(AHG)
Author

Thanks for your help @ Temur !!! It is fully working...+1

Temur

Please see the last version that I've added after update. it's a recommended version.

Temur

wrapped code into the python function, see a gist

Ankit H Gandhi(AHG)
Author

Sorry @ Temur Using updated code I am not get perfect total days. I am using below date for count date_start_val = '2015-07-04' date_end_val = '2015-07-05' I got total number of days in 0 (zero), but actually total number of days will be 2 (Two) . Please advice on it.

Temur

<=0 as there is not Tuesday at all in date range ['2015-07-04','2015-07-05' ] then day_count = 0 were executed under else clause in the above code fragment, instead of weekday_count = 0. It's corrected now in the answer and function in gist is updated accordingly.

Ankit H Gandhi(AHG)
Author

Thanks again now it's work fine..@ Temur

Temur

You're welcome

Avatar
Rihene
Best Answer

Hi Ankit;

What i propose to you is to calculate the total of days between start_date and end_date.

And then, to get your 'Tuesday' day you have to divide the total number by seven.

And you have to get the day of the first_date as shown by this code:

Python:

>>> import datetime

>>> datetime.datetime.today()

datetime.datetime(2012, 3, 23, 23, 24, 55, 173504)

>>> datetime.datetime.today().weekday()

4

Where weekday Returns the day of the week as an integer, where Monday is 0 and Sunday is 6.

Example:

Total_date = 29

29/7 = 4 + 1 so there is 4 tuesday and 1 < 3 if the start_date is monday

so total_date becomes 25.

Hope this may help you :)

Regards.

2
Avatar
Discard
Ankit H Gandhi(AHG)
Author

Thanks for you quick response @ Dress Far +1 I had little bit confusion with your code but @ Temur solved out confusion

Avatar
Akhil P Sivan
Best Answer

Hi Ankit,

If the start date and end date are fields of type date, you can try the following code:

For example, to avoid tuesdays and get the day count:

import dateutil.parser
import datetime
from openerp import models, fields

class your_class(models.Model):
_name = "your.model"

def your_function(self):
days_count = 0
while (start_date < end_date):
day = dateutil.parser.parse(start_date).date().weekday()
if day != 1:
days_count += 1
start_date = start_date + datetime.timedelta(days=1)

Here days_count will give the no. of days between two dates avoided tuesday

if the start_date and end_date are not date fields, you need convert to date type like this:

s_date = dateutil.parser.parse(start_date).date()
1
Avatar
Discard
Ankit H Gandhi(AHG)
Author

Thanks @ Akhil.. It is work fine. +1

Avatar
Rabie Sakhri
Best Answer

Thanks for this help

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
How to verify that a field date is empty? Solved
python date
Avatar
Avatar
Avatar
3
Dec 23
46654
Format language date_format '%B' in python Solved
language python date
Avatar
Avatar
1
Mar 17
29627
transformation of date
python date change
Avatar
Avatar
Avatar
2
Mar 16
4418
How to extract the month from a date field?
python date month odoo9
Avatar
Avatar
Avatar
2
May 22
17567
How can i get sum of records between two dates? Solved
python date datetime odoo
Avatar
Avatar
3
Mar 24
5309
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