[Erp5-report] r30276 - /erp5/trunk/products/ERP5/DeliverySolver/

nobody at svn.erp5.org nobody at svn.erp5.org
Wed Nov 4 11:21:40 CET 2009


Author: jp
Date: Wed Nov  4 11:21:40 2009
New Revision: 30276

URL: http://svn.erp5.org?rev=30276&view=rev
Log:
Initial upload of placeholders.

Added:
    erp5/trunk/products/ERP5/DeliverySolver/FIFO.py
    erp5/trunk/products/ERP5/DeliverySolver/FILO.py
    erp5/trunk/products/ERP5/DeliverySolver/MinPrice.py

Added: erp5/trunk/products/ERP5/DeliverySolver/FIFO.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/DeliverySolver/FIFO.py?rev=30276&view=auto
==============================================================================
--- erp5/trunk/products/ERP5/DeliverySolver/FIFO.py (added)
+++ erp5/trunk/products/ERP5/DeliverySolver/FIFO.py [utf8] Wed Nov  4 11:21:40 2009
@@ -1,0 +1,35 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# Copyright (c) 2008-2009 Nexedi SA and Contributors. All Rights Reserved.
+#                    Jean-Paul Smets-Solanes <jp at nexedi.com>
+#
+# 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 DeliverySolver import DeliverySolver
+
+class FIFO(DeliverySolver):
+  """
+    The FIFO solver reduces deliveted quantity by reducing the quantity of simulation movements from the last order.
+  """

Added: erp5/trunk/products/ERP5/DeliverySolver/FILO.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/DeliverySolver/FILO.py?rev=30276&view=auto
==============================================================================
--- erp5/trunk/products/ERP5/DeliverySolver/FILO.py (added)
+++ erp5/trunk/products/ERP5/DeliverySolver/FILO.py [utf8] Wed Nov  4 11:21:40 2009
@@ -1,0 +1,37 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# Copyright (c) 2008-2009 Nexedi SA and Contributors. All Rights Reserved.
+#                    Jean-Paul Smets-Solanes <jp at nexedi.com>
+#
+# 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 DeliverySolver import DeliverySolver
+
+class FILO(DeliverySolver):
+  """
+    The FILO solver reduces deliveted quantity by reducing the quantity of simulation movements from the first order.
+  """
+

Added: erp5/trunk/products/ERP5/DeliverySolver/MinPrice.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/DeliverySolver/MinPrice.py?rev=30276&view=auto
==============================================================================
--- erp5/trunk/products/ERP5/DeliverySolver/MinPrice.py (added)
+++ erp5/trunk/products/ERP5/DeliverySolver/MinPrice.py [utf8] Wed Nov  4 11:21:40 2009
@@ -1,0 +1,37 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# Copyright (c) 2008-2009 Nexedi SA and Contributors. All Rights Reserved.
+#                    Jean-Paul Smets-Solanes <jp at nexedi.com>
+#
+# 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 DeliverySolver import DeliverySolver
+
+class MinPrice(DeliverySolver):
+  """
+    The MinPrice deliver solver distributes quantity in order to minimise price.
+  """
+




More information about the Erp5-report mailing list