Hi. I create a field date in my module class file, and I want to put automatically the day of today (for example) as default date. Help me please. thx
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 会計
- 在庫
- PoS
- Project
- MRP
この質問にフラグが付けられました
4
返信
32250
ビュー
ok thx, it works, I do this :
_defaults= {
'record_date': fields.date.context_today,
}
import time
admission_date = fields.Date('Admission Date', default=date.today())
In this code is used to generate default current date
You have to add this:
import time
and you can add this to _defaults
_defaults= {
'date_field': lambda *a: time.strftime('%Y-%m-%d'),
}
関連投稿 | 返信 | ビュー | 活動 | |
---|---|---|---|---|
|
0
1月 20
|
604 | ||
|
1
11月 22
|
3194 | ||
|
3
11月 21
|
25812 | ||
|
1
8月 15
|
5346 | ||
|
2
3月 15
|
5277 |
from_date = fields.Date(string="From Date" ,default=datetime.now())