[FIX] project: defined the write_date field in project.task so that it can be reused in date filters in base_action_rule module

bzr revid: qdp-launchpad@openerp.com-20130617133825-2rfo9z27858qalcb
This commit is contained in:
Quentin (OpenERP) 2013-06-17 15:38:25 +02:00
parent 90350b5618
commit 962dedda51
1 changed files with 2 additions and 1 deletions

View File

@ -768,7 +768,8 @@ class task(base_stage, osv.osv):
" * Blocked indicates something is preventing the progress of this task\n"
" * Ready for next stage indicates the task is ready to be pulled to the next stage",
readonly=True, required=False),
'create_date': fields.datetime('Create Date', readonly=True,select=True),
'create_date': fields.datetime('Create Date', readonly=True, select=True),
'write_date': fields.datetime('Last Modification Date', readonly=True, select=True), #not displayed in the view but it might be useful with base_action_rule module (and it needs to be defined first for that)
'date_start': fields.datetime('Starting Date',select=True),
'date_end': fields.datetime('Ending Date',select=True),
'date_deadline': fields.date('Deadline',select=True),