コンテンツへスキップ
Odoo メニュー
  • サインイン
  • 無料で15日試す
  • アプリ
    財務
    • 会計
    • 請求
    • 経費
    • スプレッドシート(BI)
    • ドキュメント管理
    • 署名
    販売
    • CRM
    • 販売
    • POS店舗
    • POSレストラン
    • サブスクリプション
    • レンタル
    ウェブサイト
    • ウェブサイトビルダー
    • eコマース
    • ブログ
    • フォーラム
    • ライブチャット
    • eラーニング
    サプライチェーン
    • 在庫
    • 製造
    • 製品ライフサイクル管理 (PLM)
    • 購買
    • 整備
    • 品質
    人事業務
    • 従業員管理
    • 採用
    • 休暇管理
    • 人事評価
    • リファラル
    • フリート
    マーケティング
    • ソーシャルマーケティング
    • メールマーケティング
    • SMSマーケティング
    • イベント
    • マーケティングオートメーション
    • アンケート調査
    サービス
    • プロジェクト管理
    • タイムシート
    • フィールドサービス
    • ヘルプデスク
    • 計画
    • アポイントメント
    生産性向上ツール
    • ディスカッション
    • 承認
    • IoT
    • VoIP
    • ナレッジ
    • WhatsApp
    サードパーティアプリ Odooスタジオ Odooクラウドプラットホーム
  • インダストリー(業種別ソリューション)
    小売
    • 書店
    • アパレルショップ
    • 家具専門店
    • 食料品店
    • 金物店
    • 玩具店
    飲食・ホスピタリティ業界
    • バー・パブ
    • レストラン
    • ファストフード
    • ゲストハウス
    • 飲料販売代理店
    • ホテル
    不動産
    • 不動産会社
    • 建築事務所
    • 建設
    • 不動産管理
    • 造園
    • 住宅所有者組合
    コンサルティング
    • 会計事務所
    • Odooパートナー
    • マーケティングエージェンシー
    • 法律事務所
    • 人材派遣
    • 監査・認証
    製造
    • テキスタイル
    • 金属
    • 家具
    • 飲食
    • 醸造所
    • コーポレートギフト
    ヘルス & フィットネス
    • スポーツクラブ
    • 眼鏡店
    • フィットネスセンター
    • ウェルネス専門家
    • 薬局
    • ヘアサロン
    業種
    • 便利屋
    • IT ハードウェア・サポート
    • 太陽エネルギーシステム
    • 靴メーカー
    • クリーニングサービス
    • 空調設備サービス
    その他
    • 非営利団体
    • 環境機関
    • ビルボードレンタル
    • 写真
    • 自転車リース
    • ソフトウェアリセラー
    すべての業種を見る
  • コミュニティ
    学ぶ
    • チュートリアル
    • ドキュメンテーション
    • 認定
    • トレーニング
    • ブログ
    • ポッドキャスト
    教育サポート
    • 教育プログラム
    • Scale Up! ビジネスゲーム
    • Odooオフィス訪問
    ソフトを入手
    • ダウンロード
    • エディションを比較
    • リリース
    コラボレーション
    • Github
    • フォーラム
    • イベント
    • 翻訳
    • パートナーになる
    • パートナー様向けサービス
    • 会計事務所を登録
    サービス利用
    • パートナー一覧
    • 会計事務所一覧
    • 今すぐ相談する
    • 導入支援サービス
    • お客様一覧
    • サポート
    • アップグレード
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    製品デモを利用する
  • 料金
  • ヘルプ

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

  • CRM
  • e-Commerce
  • 会計
  • 在庫
  • PoS
  • プロジェクト
  • MRP
All apps
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
ヘルプ

How to exclude specific day between two date in calculation ?

購読

この投稿に活動があった際に通知を受け取ります

この質問にフラグが付けられました
pythondateexcludeignore
13 返信
14596 ビュー
アバター
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
アバター
破棄
アバター
Temur
最善の回答

@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
アバター
破棄
Ankit H Gandhi(AHG)
著作者

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)
著作者

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)
著作者

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

Temur

You're welcome

アバター
Rihene
最善の回答

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
アバター
破棄
Ankit H Gandhi(AHG)
著作者

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

アバター
Akhil P Sivan
最善の回答

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
アバター
破棄
Ankit H Gandhi(AHG)
著作者

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

アバター
Rabie Sakhri
最善の回答

Thanks for this help

0
アバター
破棄
ディスカッションを楽しんでいますか?読むだけでなく、参加しましょう!

今すぐアカウントを作成して、限定機能を利用したり、素晴らしいコミュニティと交流しましょう!

登録
関連投稿 返信 ビュー 活動
How to verify that a field date is empty? 解決済
python date
アバター
アバター
アバター
3
12月 23
46696
Format language date_format '%B' in python 解決済
language python date
アバター
アバター
1
3月 17
29672
transformation of date
python date change
アバター
アバター
アバター
2
3月 16
4447
How to extract the month from a date field?
python date month odoo9
アバター
アバター
アバター
2
5月 22
17620
How can i get sum of records between two dates? 解決済
python date datetime odoo
アバター
アバター
3
3月 24
5351
コミュニティ
  • チュートリアル
  • ドキュメンテーション
  • フォーラム
オープンソース
  • ダウンロード
  • Github
  • Runbot
  • 翻訳
サービス
  • Odoo.shホスティング
  • サポート
  • アップグレード
  • カスタム開発
  • 教育プログラム
  • 会計事務所一覧
  • パートナー一覧
  • パートナーになる
企業情報
  • 会社概要
  • ブランドアセット
  • お問い合わせ
  • 採用情報
  • イベント
  • ポッドキャスト
  • ブログ
  • お客様一覧
  • リーガル情報 • プライバシーポリシー
  • セキュリティ
الْعَرَبيّة 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(オドゥー)は、CRM、eコマース、会計、在庫管理、POS、プロジェクト管理など、企業のさまざまな業務を一つのシステムで管理できる、ベルギー発のオープンソースのERPソフトウェアです。

高機能で使いやすく、完全に統合されたERPとして、ユニークな価値を提供しています。

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