Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3 Trả lời
7658 Lượt xem

How to create next week filter not from today's date +/- 7 days but from Monday to Sunday of next week.

Ảnh đại diện
Huỷ bỏ

This is a python question in general and does not have much to do with Odoo. Nonetheless, lookup the python docs for datetime and the gregorian calendar. You can get week information and even an entire calendar out with simple imports.

Tác giả

@Ludo-Neobis: You may be right but unfortunately you are not. I can do this in python to get next monday but datetime.weekday() is not supported by openerp xml, gives error and is not able to filter. next_mondy = datetime.today() + timedelta(days=(7 - datetime.today().weekday()))

Câu trả lời hay nhất

In the Advance Search, you can enter phrases like: Last Monday, Next Sunday to date fields.

Ảnh đại diện
Huỷ bỏ
Tác giả

@Ivan : Interesting but this won't work because I need filter between Next Monday and Next to Next Sunday. Also In Advance filter user has calendar to choose dates but I need this behaving dynamically.

Tác giả Câu trả lời hay nhất

I am using following code for compute next week filter, It does correct computation on python terminal but in filter it gives no result

<filter string = "Next Week" domain="[( 'date_deadline', '&gt;=', (context_today() + relativedelta(weeks=0, weekday=0)).strftime('%Y-%m-%d')) ,  ( 'date_deadline', '&lt;', (context_today() + relativedelta(weeks=1, weekday= 0, days = 6)).strftime('%Y-%m-%d')  )]" />

Ảnh đại diện
Huỷ bỏ

It is because context_today and relativedelta are not available during the domain evaluation time.

Tác giả

@Ivan: but that's not right, filter for last week works

Câu trả lời hay nhất

You define computed field next_mondy_start and next_mondy_end and use them as domain filter.

UPDATE:

In my test system, this example, with stored fields, filter works without any problem:

<field name="domain">[('test_dt','=',True)]</field>

   

@api.one
    @api.depends(
      'test',
    )
    def _get_dates(self):
        self.start = fields.Datetime.from_string(fields.Datetime.now()) + relativedelta(weeks=0, weekday=0)
        self.stop = fields.Datetime.from_string(fields.Datetime.now()) + relativedelta(weeks=0, weekday= 0, days = 6)
        self.test_dt = self.stop > self.test > self.start

    test = fields.Datetime('Date Test')  
    test_dt = fields.Boolean('Test dt',compute='_get_dates',store=True)
    start = fields.Datetime('Start',compute='_get_dates',store=True)
    stop = fields.Datetime('Stop',compute='_get_dates',store=True)

PS. start and stop fields are unnecessary

          

 

Ảnh đại diện
Huỷ bỏ
Tác giả

those will be stored field? how those fields will be computed every day when date changes?

Not stored. Function based on fields.Datetime.now() or today().

Tác giả

so I defined next_week_monday = fields.Date(string='Next Week Monday', compute='_get_nextweek_monday'), added field in tree view, date is computed correctly. then added in filter and it gave me error on web client "Error: Failed to evaluate search criterions: {"code":400,"message":"Evaluation Error","data":{"type":"local_exception","debug":"Local evaluation failure\nNameError: name 'next_week_monday' is not defined\n\n{\"domains\":[[],\"[('date_deadline', '

I think I was wrong. Probably filter determine SQL and those must be stored.

stored works?

Stored works without problems, answer updated.

Bài viết liên quan Trả lời Lượt xem Hoạt động
6
thg 8 15
8680
3
thg 8 15
3483
Certification ODOO Đã xử lý
2
thg 7 15
5216
0
thg 3 15
4183
1
thg 3 15
3308