コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
7689 ビュー

Let's use date_from field from hr.holidays.

How can you make a filter, to make it show only those records, which date_from field is in the same month as it is right now?

Basicly date_from.strftime('%Y-%m)==time.strftime('%Y-%m') is what I'm trying to accomplish. Tried domains:

domain="[(date_from.strftime('%Y-%m'),'=',time.strftime('%Y-%m'))]
domain="[('date_from'.strftime('%Y-%m'),'=',time.strftime('%Y-%m'))]

Neither worked. Also thought about making check in a range of dates e.g. time.strftime('%Y-%m-01')<=date_from<... and then I dont know how to find out whats the last date of a month nor get to add a month.

アバター
破棄
最善の回答

Hi Anti Nuga,

You can add current months record by adding domain like this,

domain="[('date_from','&gt;=',time.strftime('%%Y-%%m-01'))]"

Thanks

アバター
破棄
著作者

The dates can be bigger than this months... e.g. I don't want it show 2017-09-XX dates at the moment (Its 2017-08- right now)

関連投稿 返信 ビュー 活動
5
9月 20
12831
1
3月 15
5304
0
3月 15
3979
2
3月 15
7526
6
5月 24
71001