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

when i was install project module at that time it will give me an error like 

ParseError: "date/time field value out of range: "2015-13-01"

LINE 1: ... 'normal', 1, 'You can set a deadline on a task', '2015-13-0...

^

HINT: Perhaps you need a different "datestyle" setting.

" while parsing odoo/odoo-9.0/addons/project/project_data.xml:293, near

<record id="project_task_data_11" model="project.task">

<field name="user_id" ref="base.user_root"/>

<field name="priority">0</field>

<field name="project_id" ref="project.project_project_data"/>

<field name="name">You can set a deadline on a task</field>

<field name="stage_id" ref="project_stage_data_1"/>

<field name="date_deadline" eval="'2015-%s-01' %(datetime.now().month+1)"/>

</record>



Bcoz the current month is December (12) when it will get one month increment at that time it will give me 13 but it is actually wrong as per the calendar.

here instead of  2015-13-01 of 2016-01-01

 

頭像
捨棄
作者 最佳答案

solution 

 <field name="date_deadline" eval="datetime.now()+timedelta(days=30)"/>

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
3
6月 25
816
1
7月 23
3504
4
12月 22
9476
2
4月 21
3559
1
10月 18
4913