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
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
|
1
Jun 18
|
4336 | ||
|
1
Okt 25
|
11519 | ||
|
0
Mei 25
|
1390 | ||
|
1
Apr 25
|
1499 | ||
|
2
Jul 24
|
3237 |
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.