[Erp5-report] r8463 - /erp5/trunk/products/ERP5/Document/Movement.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Jul 18 10:58:00 CEST 2006


Author: jerome
Date: Tue Jul 18 10:57:56 2006
New Revision: 8463

URL: http://svn.erp5.org?rev=8463&view=rev
Log:
target_quantity approach is not longer used


Modified:
    erp5/trunk/products/ERP5/Document/Movement.py

Modified: erp5/trunk/products/ERP5/Document/Movement.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Movement.py?rev=8463&r1=8462&r2=8463&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Movement.py (original)
+++ erp5/trunk/products/ERP5/Document/Movement.py Tue Jul 18 10:57:56 2006
@@ -75,27 +75,8 @@
 
     - a T/T report (a delivery of money between reals accounts)
 
-    For simple planning, we use a simple approach. Deliveries contain
-    a reference to an order (causality) 2 quantities:
-
-    - a quantity value
-
-    - a target_quantity value
-
-    When quantity and target_quantity, the delivery can be closed.
-    When quantity and target_quantity is different, a new delivery is created
-    with 0 quantity and target_quantity = target_quantity - quantity.
-    This simple system allows to delivery goods of a single order in
-    multiple times, and to keep track of deliveries without any complex
-    planning system. It is the basis of ERP5 trade module.
-
-    If we need to implement more complex planning, such as in a production
-    workshop, we can not use such a simple model. We have to implement a
-    planning system. The approach in ERP5 is based on "simulation".
-
-    In this case, target_quantity becomes meaningless.
-
-    For complex planning, the following approach is used instead.
+
+    For planning, the following approach is used:
 
     1- Movements from an order are never modified once the order
        is confirmed. This is a rule. An Order is like a contract.
@@ -114,7 +95,7 @@
     and allows to keep track of the causal relation between
     a delivery and an order.
 
-    A delivery document (actuall a delivery line) then points to one or more of
+    A delivery document (actually a delivery line) then points to one or more of
     the "delivery" movements in the simulation. It is possible to know
     which items have been delivered by making sure each movement in the simulation
     is associated to a "delivery document".
@@ -133,7 +114,7 @@
 
     One should note that
 
-    - movements are never joined (because it would breack causality and
+    - movements are never joined (because it would break causality and
       tracability)
 
     - movements acquire some context information from their causality




More information about the Erp5-report mailing list