跳至內容
選單
此問題已被標幟
2 回覆
12103 瀏覽次數

Greetings, 


I created a date field in Odoo Studio, I want it to have todays date by default when I create the registry.

頭像
捨棄
最佳答案

Hello Alejandro Velasquez, 

Dynamic Default value is Not Support by odoo Studio

If you Want to current Date then we have one more Idea.

You will Create the Fields As Compute

Readonly = False

Stored = True

Dependencies = partner_id


# Please Make Sure in Dependencies it was use every time when you Filling the Data so most probebly use required Fields


Compute

=======

for record in self:

record ['x_studio_date_field_name'] = datetime.datetime.now ()


So in above method when the Customer will change the it will compute and set the Today Date or Datetime.


Thanks ..

For more information Contact us:- https: //kanakinfosystems.com/odoo-development-services

頭像
捨棄
最佳答案

You can define a default of today for any date field via context of the Window Action:

{'default_x_studio_date': context_today()}

This is normally used in Odoo to support filters in Search Views, where it needs to be converted by adding .strftime('%Y-%m-%d') but works just fine in Window Actions as I have shown.


頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
2月 24
3421
1
1月 16
3993
1
9月 21
3453
0
9月 20
3284
5
7月 23
17282