Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Nicolas Wavrant
erp5
Commits
6cab51fe
Commit
6cab51fe
authored
Apr 05, 2013
by
Tatuya Kamada
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docstring: Update Movement Group docstring as what the movement group is about.
parent
cb083056
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
10 deletions
+26
-10
product/ERP5/Document/BaseVariantMovementGroup.py
product/ERP5/Document/BaseVariantMovementGroup.py
+2
-2
product/ERP5/Document/RequirementMovementGroup.py
product/ERP5/Document/RequirementMovementGroup.py
+2
-2
product/ERP5/Document/SplitMovementGroup.py
product/ERP5/Document/SplitMovementGroup.py
+18
-2
product/ERP5/Document/TitleMovementGroup.py
product/ERP5/Document/TitleMovementGroup.py
+2
-2
product/ERP5/Document/VariantMovementGroup.py
product/ERP5/Document/VariantMovementGroup.py
+2
-2
No files found.
product/ERP5/Document/BaseVariantMovementGroup.py
View file @
6cab51fe
...
...
@@ -29,8 +29,8 @@ from Products.ERP5.Document.MovementGroup import MovementGroup
class
BaseVariantMovementGroup
(
MovementGroup
):
"""
Th
e purpose of MovementGroup is to define how movements are grouped,
and how values are updated from simulation movements
.
Th
is movement group is used to group movements that have the same
base category list, without assining it
.
"""
meta_type
=
'ERP5 Base Variant Movement Group'
portal_type
=
'Base Variant Movement Group'
...
...
product/ERP5/Document/RequirementMovementGroup.py
View file @
6cab51fe
...
...
@@ -29,8 +29,8 @@ from Products.ERP5.Document.MovementGroup import MovementGroup
class
RequirementMovementGroup
(
MovementGroup
):
"""
Th
e purpose of MovementGroup is to define how movements are grouped,
and how values are updated from simulation movements
.
Th
is movement group is used to group movements that have the same
requirement
.
"""
meta_type
=
'ERP5 Requirement Movement Group'
portal_type
=
'Requirement Movement Group'
...
...
product/ERP5/Document/SplitMovementGroup.py
View file @
6cab51fe
...
...
@@ -29,8 +29,24 @@ from Products.ERP5.Document.MovementGroup import MovementGroup
class
SplitMovementGroup
(
MovementGroup
):
"""
The purpose of MovementGroup is to define how movements are grouped,
and how values are updated from simulation movements.
This movement group is used to split all the movements that are aggregated
by the Simulation Select Method.
XXX-Tatuya: However this test() method returns True, so the aggregated
movements can be inserted into existing Delivery/Line/Cell that are aggregated
by the Delivery Select Method. What use case this is applied for?
* Reference:
http://www.erp5.org/HowToConfigureMovementGroup
test(self, object, property_dict, **kw):
(mandatory)
This method returns if object can be used for updating according to
property_dict. Its return value is [updatable? (True or False),
property_dict that is used to update values]. If you want to create a
new Delivery/Line/Cell instead of updating existing one,
return [False, property_dict].
"""
meta_type
=
'ERP5 Split Movement Group'
portal_type
=
'Split Movement Group'
...
...
product/ERP5/Document/TitleMovementGroup.py
View file @
6cab51fe
...
...
@@ -29,8 +29,8 @@ from Products.ERP5.Document.MovementGroup import MovementGroup
class
TitleMovementGroup
(
MovementGroup
):
"""
Th
e purpose of MovementGroup is to define how movements are grouped,
and how values are updated from simulation movements
.
Th
is movement group is used to group movements that have the same
title
.
"""
meta_type
=
'ERP5 Title Movement Group'
portal_type
=
'Title Movement Group'
...
...
product/ERP5/Document/VariantMovementGroup.py
View file @
6cab51fe
...
...
@@ -29,8 +29,8 @@ from Products.ERP5.Document.MovementGroup import MovementGroup
class
VariantMovementGroup
(
MovementGroup
):
"""
Th
e purpose of MovementGroup is to define how movements are grouped,
and how values are updated from simulation movements
.
Th
is movement group is used to group movements that have the same
variation category list
.
"""
meta_type
=
'ERP5 Variant Movement Group'
portal_type
=
'Variant Movement Group'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment