Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
3934 Vistas

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

 

Avatar
Descartar
Autor Mejor respuesta

solution 

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

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
3
jun 25
733
1
jul 23
3457
4
dic 22
9421
2
abr 21
3505
1
oct 18
4856