Hi,
What I need is,I need no of weeks in a month,on the basis of that I need to find the no of submitted timesheets.
I need to display the number of submitted timesheets of the month
Thanks in advance
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
What I need is,I need no of weeks in a month,on the basis of that I need to find the no of submitted timesheets.
I need to display the number of submitted timesheets of the month
Thanks in advance
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
|
1
cze 18
|
4341 | ||
|
1
paź 25
|
11527 | ||
|
0
maj 25
|
1391 | ||
|
1
kwi 25
|
1501 | ||
|
2
lip 24
|
3240 |
Try this one
import calendar
calendar.month(year, month).count('\n') - 2
I try this and its work correctly.
Can you give some idea for how to split month and year from current date field.