Commit f1bd00de authored by Jean-Paul Smets's avatar Jean-Paul Smets

Added comment and compatibility section

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@19019 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 4ade440e
......@@ -2,8 +2,9 @@
#
# Copyright (c) 2002 Coramy SAS and Contributors. All Rights Reserved.
# Thierry Faucher <Thierry_Faucher@coramy.com>
# Copyright (c) 2004 Nexedi SARL and Contributors. All Rights Reserved.
# Copyright (c) 2004-2008 Nexedi SA and Contributors. All Rights Reserved.
# Romain Courteaud <romain@nexedi.com>
# Jean-Paul Smets <jp@nexedi.com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
......@@ -44,6 +45,18 @@ class Order:
'acquisition_accessor_id' : 'getTitle',
'acquisition_depends' : None,
'mode' : 'w' },
# For compatibility only - please refrain using these properties
# because they are not supported anylonger. Clean approach should
# use CRM events for the same purpose, ie. to track the date
# of reception or of issuing of an order.
{ 'id' : 'received_date',
'description' : 'Received date (No longer supported)',
'type' : 'date',
'mode' : 'w' },
{ 'id' : 'emit_date',
'description' : 'Emit date (No longer supported)',
'type' : 'date',
'mode' : 'w' },
)
_categories = (
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment