[Erp5-report] r31309 kazuhiko - in /erp5/trunk/products/ERP5: Document/ PropertySheet/
nobody at svn.erp5.org
nobody at svn.erp5.org
Tue Dec 15 14:15:33 CET 2009
Author: kazuhiko
Date: Tue Dec 15 14:15:32 2009
New Revision: 31309
URL: http://svn.erp5.org?rev=31309&view=rev
Log:
use TargetSolver property sheet instead of reusing SolverSelection property sheet.
Added:
erp5/trunk/products/ERP5/PropertySheet/TargetSolver.py
Modified:
erp5/trunk/products/ERP5/Document/AcceptSolver.py
erp5/trunk/products/ERP5/Document/AdoptSolver.py
erp5/trunk/products/ERP5/Document/QuantitySplitSolver.py
Modified: erp5/trunk/products/ERP5/Document/AcceptSolver.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/AcceptSolver.py?rev=31309&r1=31308&r2=31309&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/AcceptSolver.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/AcceptSolver.py [utf8] Tue Dec 15 14:15:32 2009
@@ -51,7 +51,7 @@
, PropertySheet.XMLObject
, PropertySheet.CategoryCore
, PropertySheet.DublinCore
- , PropertySheet.SolverSelection
+ , PropertySheet.TargetSolver
)
# Declarative interfaces
Modified: erp5/trunk/products/ERP5/Document/AdoptSolver.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/AdoptSolver.py?rev=31309&r1=31308&r2=31309&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/AdoptSolver.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/AdoptSolver.py [utf8] Tue Dec 15 14:15:32 2009
@@ -50,7 +50,7 @@
, PropertySheet.XMLObject
, PropertySheet.CategoryCore
, PropertySheet.DublinCore
- , PropertySheet.SolverSelection
+ , PropertySheet.TargetSolver
)
# Declarative interfaces
Modified: erp5/trunk/products/ERP5/Document/QuantitySplitSolver.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/QuantitySplitSolver.py?rev=31309&r1=31308&r2=31309&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/QuantitySplitSolver.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/QuantitySplitSolver.py [utf8] Tue Dec 15 14:15:32 2009
@@ -52,7 +52,7 @@
, PropertySheet.CategoryCore
, PropertySheet.DublinCore
, PropertySheet.Arrow
- , PropertySheet.SolverSelection
+ , PropertySheet.TargetSolver
)
# Declarative interfaces
zope.interface.implements(interfaces.ISolver,
Added: erp5/trunk/products/ERP5/PropertySheet/TargetSolver.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/PropertySheet/TargetSolver.py?rev=31309&view=auto
==============================================================================
--- erp5/trunk/products/ERP5/PropertySheet/TargetSolver.py (added)
+++ erp5/trunk/products/ERP5/PropertySheet/TargetSolver.py [utf8] Tue Dec 15 14:15:32 2009
@@ -1,0 +1,53 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# Copyright (c) 2009 Nexedi SA and Contributors. All Rights Reserved.
+# Jean-a
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsibility of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# guarantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+##############################################################################
+
+from Products.CMFCore.Expression import Expression
+
+class TargetSolver:
+ _properties = (
+ { 'id': 'delivery_solver',
+ 'type': 'string',
+ 'mode': 'w',
+ 'label': 'Delivery Solver'
+ },
+ { 'id': 'start_date',
+ 'description':'The date when a new movement starts',
+ 'type': 'date',
+ 'mode': 'w',
+ 'label': 'Start Date'
+ },
+ { 'id': 'stop_date',
+ 'description':'The date when a new movement stops',
+ 'type': 'date',
+ 'mode': 'w',
+ 'label': 'Stop Date'
+ },
+ )
+
+ _categories = ('delivery',)
More information about the Erp5-report
mailing list