so i have this line of code here
ir_sequence_date = str (fields.Date.today())[:10]
I don't understand what's the use of [:10] , does anyone have a clue what it's for?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
so i have this line of code here
ir_sequence_date = str (fields.Date.today())[:10]
I don't understand what's the use of [:10] , does anyone have a clue what it's for?
To display only Date and not show time in that case will use. Example, 29/05/2020 date contain only 10 digits.
Hi,
This will give you first 10 letters of the corresponding string. Suppose if str (fields.Date.today()) is abcdefghijkl and if you do str (fields.Date.today())[:10] , the result will be abcdefghij (first 10) .
Thanks
| 関連投稿 | 返信 | ビュー | 活動 | |
|---|---|---|---|---|
|
1
5月 20
|
5674 | |||
|
2
10月 25
|
2029 | |||
|
3
10月 23
|
10826 | |||
|
1
9月 23
|
4045 | |||
|
1
5月 23
|
3032 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
Please use a meaningful title.