Commit 0a16e42d authored by Jérome Perrin's avatar Jérome Perrin

put docstrings


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@45597 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ac205cb7
...@@ -35,7 +35,7 @@ from Products.ERP5.mixin.solver import SolverMixin ...@@ -35,7 +35,7 @@ from Products.ERP5.mixin.solver import SolverMixin
from Products.ERP5.mixin.configurable import ConfigurableMixin from Products.ERP5.mixin.configurable import ConfigurableMixin
class AcceptSolver(SolverMixin, ConfigurableMixin, XMLObject): class AcceptSolver(SolverMixin, ConfigurableMixin, XMLObject):
""" """Target solver that accepts the values from the decision on the prevision.
""" """
meta_type = 'ERP5 Accept Solver' meta_type = 'ERP5 Accept Solver'
portal_type = 'Accept Solver' portal_type = 'Accept Solver'
......
...@@ -35,7 +35,7 @@ from Products.ERP5.mixin.solver import SolverMixin ...@@ -35,7 +35,7 @@ from Products.ERP5.mixin.solver import SolverMixin
from Products.ERP5.mixin.configurable import ConfigurableMixin from Products.ERP5.mixin.configurable import ConfigurableMixin
class AdoptSolver(SolverMixin, ConfigurableMixin, XMLObject): class AdoptSolver(SolverMixin, ConfigurableMixin, XMLObject):
""" """Target solver that adopts the values from the prevision on the decision.
""" """
meta_type = 'ERP5 Adopt Solver' meta_type = 'ERP5 Adopt Solver'
portal_type = 'Adopt Solver' portal_type = 'Adopt Solver'
......
...@@ -37,8 +37,10 @@ from Products.ERP5.mixin.configurable import ConfigurableMixin ...@@ -37,8 +37,10 @@ from Products.ERP5.mixin.configurable import ConfigurableMixin
from Products.ERP5.MovementCollectionDiff import _getPropertyAndCategoryList from Products.ERP5.MovementCollectionDiff import _getPropertyAndCategoryList
class ItemListSplitSolver(SolverMixin, ConfigurableMixin, XMLObject): class ItemListSplitSolver(SolverMixin, ConfigurableMixin, XMLObject):
""" """Target solver that split the prevision based on aggregated items.
QUESTION: is a solver a process ? (ie. subprocess of Solver Process)
It creates another prevision movement with the items that were in prevision
and have been removed in decision.
""" """
meta_type = 'ERP5 Item List Split Solver' meta_type = 'ERP5 Item List Split Solver'
portal_type = 'Item List Split Solver' portal_type = 'Item List Split Solver'
......
...@@ -37,8 +37,10 @@ from Products.ERP5.mixin.configurable import ConfigurableMixin ...@@ -37,8 +37,10 @@ from Products.ERP5.mixin.configurable import ConfigurableMixin
from Products.ERP5.MovementCollectionDiff import _getPropertyAndCategoryList from Products.ERP5.MovementCollectionDiff import _getPropertyAndCategoryList
class QuantitySplitSolver(SolverMixin, ConfigurableMixin, XMLObject): class QuantitySplitSolver(SolverMixin, ConfigurableMixin, XMLObject):
""" """Target solver that split the prevision based on quantity.
QUESTION: is a solver a process ? (ie. subprocess of Solver Process)
It creates another prevision movement with the delta quantity between decision
and prevision.
""" """
meta_type = 'ERP5 Quantity Split Solver' meta_type = 'ERP5 Quantity Split Solver'
portal_type = 'Quantity Split Solver' portal_type = 'Quantity Split Solver'
......
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