Commit 67da9def authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

remove Resource Accept Solver that is just a dead copy of Resource Replacement Solver.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31416 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 4c7fe85d
...@@ -13,7 +13,6 @@ ...@@ -13,7 +13,6 @@
<item>Production Reduction Solver</item> <item>Production Reduction Solver</item>
<item>Quantity Accept Solver</item> <item>Quantity Accept Solver</item>
<item>Quantity Split Solver</item> <item>Quantity Split Solver</item>
<item>Resource Accept Solver</item>
<item>Resource Adoption Solver</item> <item>Resource Adoption Solver</item>
<item>Resource Replacement Solver</item> <item>Resource Replacement Solver</item>
<item>Solver Decision</item> <item>Solver Decision</item>
......
<?xml version="1.0"?>
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<tuple>
<global name="SolverTypeInformation" module="Products.ERP5Type.Document.SolverTypeInformation"/>
<tuple/>
</tuple>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>acquire_local_roles</string> </key>
<value> <int>1</int> </value>
</item>
<item>
<key> <string>categories</string> </key>
<value>
<tuple/>
</value>
</item>
<item>
<key> <string>configuration_form_id</string> </key>
<value> <string>Solver_viewConfiguration</string> </value>
</item>
<item>
<key> <string>configuration_property_list</string> </key>
<value>
<tuple/>
</value>
</item>
<item>
<key> <string>delivery_solver</string> </key>
<value>
<tuple>
<string>FIFO</string>
<string>LIFO</string>
<string>MinPrice</string>
</tuple>
</value>
</item>
<item>
<key> <string>description</string> </key>
<value> <string>The Accept Solver solves the divergence by accepting the decision and updating a simulation movement.</string> </value>
</item>
<item>
<key> <string>factory</string> </key>
<value> <string>addAcceptSolver</string> </value>
</item>
<item>
<key> <string>group_list</string> </key>
<value>
<tuple>
<string>target_solver</string>
</tuple>
</value>
</item>
<item>
<key> <string>id</string> </key>
<value> <string>Resource Accept Solver</string> </value>
</item>
<item>
<key> <string>init_script</string> </key>
<value>
<none/>
</value>
</item>
<item>
<key> <string>line_exclusive</string> </key>
<value> <int>0</int> </value>
</item>
<item>
<key> <string>line_grouping</string> </key>
<value> <int>0</int> </value>
</item>
<item>
<key> <string>permission</string> </key>
<value>
<none/>
</value>
</item>
<item>
<key> <string>portal_type</string> </key>
<value> <string>Solver Type</string> </value>
</item>
<item>
<key> <string>solver_action_title</string> </key>
<value> <string>Accept new resource</string> </value>
</item>
<item>
<key> <string>tested_property</string> </key>
<value> <string>resource</string> </value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
...@@ -21,7 +21,23 @@ ...@@ -21,7 +21,23 @@
</item> </item>
<item> <item>
<key> <string>configuration_form_id</string> </key> <key> <string>configuration_form_id</string> </key>
<value> <string>ResourceReplacementSolver_viewConfiguration</string> </value> <value> <string>Solver_viewConfiguration</string> </value>
</item>
<item>
<key> <string>configuration_property_list</string> </key>
<value>
<tuple/>
</value>
</item>
<item>
<key> <string>delivery_solver</string> </key>
<value>
<tuple>
<string>FIFO</string>
<string>LIFO</string>
<string>MinPrice</string>
</tuple>
</value>
</item> </item>
<item> <item>
<key> <string>description</string> </key> <key> <string>description</string> </key>
...@@ -63,6 +79,10 @@ ...@@ -63,6 +79,10 @@
<key> <string>solver_action_title</string> </key> <key> <string>solver_action_title</string> </key>
<value> <string>Replace Resource</string> </value> <value> <string>Replace Resource</string> </value>
</item> </item>
<item>
<key> <string>tested_property</string> </key>
<value> <string>resource</string> </value>
</item>
</dictionary> </dictionary>
</pickle> </pickle>
</record> </record>
......
...@@ -31,10 +31,6 @@ ...@@ -31,10 +31,6 @@
<type>Quantity Split Solver</type> <type>Quantity Split Solver</type>
<workflow>solver_workflow</workflow> <workflow>solver_workflow</workflow>
</chain> </chain>
<chain>
<type>Resource Accept Solver</type>
<workflow>solver_workflow</workflow>
</chain>
<chain> <chain>
<type>Resource Adoption Solver</type> <type>Resource Adoption Solver</type>
<workflow>solver_workflow</workflow> <workflow>solver_workflow</workflow>
......
36 37
\ No newline at end of file \ No newline at end of file
...@@ -14,8 +14,10 @@ Quantity Cancel Solver | configuration ...@@ -14,8 +14,10 @@ Quantity Cancel Solver | configuration
Quantity Cancel Solver | view Quantity Cancel Solver | view
Quantity Split Solver | configuration Quantity Split Solver | configuration
Quantity Split Solver | view Quantity Split Solver | view
Resource Accept Solver | configuration Resource Adoption Solver | configuration
Resource Accept Solver | view Resource Adoption Solver | view
Resource Replacement Solver | configuration
Resource Replacement Solver | view
Solver Decision | configuration Solver Decision | configuration
Solver Decision | view Solver Decision | view
Solver Process | target_solver Solver Process | target_solver
......
...@@ -7,7 +7,6 @@ Rule Tool | New Order Rule ...@@ -7,7 +7,6 @@ Rule Tool | New Order Rule
Solver Process | Production Reduction Solver Solver Process | Production Reduction Solver
Solver Process | Quantity Accept Solver Solver Process | Quantity Accept Solver
Solver Process | Quantity Split Solver Solver Process | Quantity Split Solver
Solver Process | Resource Accept Solver
Solver Process | Resource Adoption Solver Solver Process | Resource Adoption Solver
Solver Process | Resource Replacement Solver Solver Process | Resource Replacement Solver
Solver Process | Solver Decision Solver Process | Solver Decision
......
...@@ -6,7 +6,6 @@ Production Reduction Solver ...@@ -6,7 +6,6 @@ Production Reduction Solver
Quantity Accept Solver Quantity Accept Solver
Quantity Cancel Solver Quantity Cancel Solver
Quantity Split Solver Quantity Split Solver
Resource Accept Solver
Resource Adoption Solver Resource Adoption Solver
Resource Replacement Solver Resource Replacement Solver
Solver Decision Solver Decision
......
...@@ -7,7 +7,6 @@ Production Reduction Solver | solver_workflow ...@@ -7,7 +7,6 @@ Production Reduction Solver | solver_workflow
Quantity Accept Solver | solver_workflow Quantity Accept Solver | solver_workflow
Quantity Cancel Solver | solver_workflow Quantity Cancel Solver | solver_workflow
Quantity Split Solver | solver_workflow Quantity Split Solver | solver_workflow
Resource Accept Solver | solver_workflow
Resource Adoption Solver | solver_workflow Resource Adoption Solver | solver_workflow
Resource Replacement Solver | solver_workflow Resource Replacement Solver | solver_workflow
String Divergence Tester | edit_workflow String Divergence Tester | edit_workflow
......
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