Commit 3b3e9609 authored by Romain Courteaud's avatar Romain Courteaud

Unused stop_date variable.

parent 07f138ec
...@@ -64,8 +64,6 @@ if add_kw_list is None:\n ...@@ -64,8 +64,6 @@ if add_kw_list is None:\n
add_kw_list = []\n add_kw_list = []\n
if start_date_tuple_list is None:\n if start_date_tuple_list is None:\n
start_date_tuple_list = []\n start_date_tuple_list = []\n
if stop_date is not None:\n
stop_date = DateTime(stop_date)\n
\n \n
previous_open_sale_order = portal.portal_catalog.getResultValue(\n previous_open_sale_order = portal.portal_catalog.getResultValue(\n
default_destination_uid=person.getUid(),\n default_destination_uid=person.getUid(),\n
...@@ -109,12 +107,12 @@ if previous_open_sale_order is not None:\n ...@@ -109,12 +107,12 @@ if previous_open_sale_order is not None:\n
for line in previous_open_sale_order.contentValues(portal_type=\'Open Sale Order Line\'):\n for line in previous_open_sale_order.contentValues(portal_type=\'Open Sale Order Line\'):\n
old_stop_date = line.getStopDate()\n old_stop_date = line.getStopDate()\n
if old_stop_date is not None:\n if old_stop_date is not None:\n
if stop_date is not None and old_stop_date < stop_date:\n # if stop_date is not None and old_stop_date < stop_date:\n
modify_kw_kw.setdefault(line.getAggregate(portal_type=\'Hosting Subscription\'), {})\n # modify_kw_kw.setdefault(line.getAggregate(portal_type=\'Hosting Subscription\'), {})\n
modify_kw_kw[line.getAggregate(portal_type=\'Hosting Subscription\')].setdefault(\'explanation\', [])\n # modify_kw_kw[line.getAggregate(portal_type=\'Hosting Subscription\')].setdefault(\'explanation\', [])\n
modify_kw_kw[line.getAggregate(portal_type=\'Hosting Subscription\')][\'stop_date\'] = stop_date\n # modify_kw_kw[line.getAggregate(portal_type=\'Hosting Subscription\')][\'stop_date\'] = stop_date\n
modify_kw_kw[line.getAggregate(portal_type=\'Hosting Subscription\')][\'explanation\'].append(\'Set stop date because of stop_date %s\' % stop_date)\n # modify_kw_kw[line.getAggregate(portal_type=\'Hosting Subscription\')][\'explanation\'].append(\'Set stop date because of stop_date %s\' % stop_date)\n
elif old_stop_date < now:\n if old_stop_date < now:\n
new_stop_date = addToDate(old_stop_date, to_add={\'month\': 1})\n new_stop_date = addToDate(old_stop_date, to_add={\'month\': 1})\n
while new_stop_date < now:\n while new_stop_date < now:\n
new_stop_date = addToDate(new_stop_date, to_add={\'month\': 1})\n new_stop_date = addToDate(new_stop_date, to_add={\'month\': 1})\n
...@@ -125,30 +123,30 @@ if previous_open_sale_order is not None:\n ...@@ -125,30 +123,30 @@ if previous_open_sale_order is not None:\n
modify_kw_kw[line.getAggregate(portal_type=\'Hosting Subscription\')][\'explanation\'].append(\'Set stop date becase of new_stop_date %s\' % new_stop_date)\n modify_kw_kw[line.getAggregate(portal_type=\'Hosting Subscription\')][\'explanation\'].append(\'Set stop date becase of new_stop_date %s\' % new_stop_date)\n
\n \n
for (key, value) in add_kw_kw.copy().iteritems():\n for (key, value) in add_kw_kw.copy().iteritems():\n
if stop_date is not None:\n # if stop_date is not None:\n
add_kw_kw[key][\'stop_date\'] = stop_date\n # add_kw_kw[key][\'stop_date\'] = stop_date\n
add_kw_kw[key][\'explanation\'].append(\'Set stop date beacuse of stop_date %s \' % stop_date)\n # add_kw_kw[key][\'explanation\'].append(\'Set stop date beacuse of stop_date %s \' % stop_date)\n
else:\n # else:\n
start_date = add_kw_kw[key].get(\'start_date\')\n start_date = add_kw_kw[key].get(\'start_date\')\n
if start_date is not None:\n if start_date is not None:\n
new_stop_date = addToDate(start_date, to_add={\'month\': 1})\n new_stop_date = addToDate(start_date, to_add={\'month\': 1})\n
while new_stop_date < now:\n while new_stop_date < now:\n
new_stop_date = addToDate(new_stop_date, to_add={\'month\': 1})\n new_stop_date = addToDate(new_stop_date, to_add={\'month\': 1})\n
add_kw_kw[key][\'stop_date\'] = new_stop_date\n add_kw_kw[key][\'stop_date\'] = new_stop_date\n
add_kw_kw[key][\'explanation\'].append(\'Set stop date because of new_stop_date %s\' % new_stop_date)\n add_kw_kw[key][\'explanation\'].append(\'Set stop date because of new_stop_date %s\' % new_stop_date)\n
\n \n
for (key, value) in modify_kw_kw.copy().iteritems():\n for (key, value) in modify_kw_kw.copy().iteritems():\n
if stop_date is not None:\n # if stop_date is not None:\n
modify_kw_kw[key][\'stop_date\'] = stop_date\n # modify_kw_kw[key][\'stop_date\'] = stop_date\n
modify_kw_kw[key][\'explanation\'].append(\'Set stop date because of stop_date %s\' % stop_date)\n # modify_kw_kw[key][\'explanation\'].append(\'Set stop date because of stop_date %s\' % stop_date)\n
else:\n # else:\n
start_date = modify_kw_kw[key].get(\'start_date\')\n start_date = modify_kw_kw[key].get(\'start_date\')\n
if start_date is not None:\n if start_date is not None:\n
new_stop_date = addToDate(start_date, to_add={\'month\': 1})\n new_stop_date = addToDate(start_date, to_add={\'month\': 1})\n
while new_stop_date < now:\n while new_stop_date < now:\n
new_stop_date = addToDate(new_stop_date, to_add={\'month\': 1})\n new_stop_date = addToDate(new_stop_date, to_add={\'month\': 1})\n
modify_kw_kw[key][\'stop_date\'] = new_stop_date\n modify_kw_kw[key][\'stop_date\'] = new_stop_date\n
modify_kw_kw[key][\'explanation\'].append(\'Set stop date because of new_stop_date %s\' % new_stop_date)\n modify_kw_kw[key][\'explanation\'].append(\'Set stop date because of new_stop_date %s\' % new_stop_date)\n
\n \n
remove_id_list = set()\n remove_id_list = set()\n
if previous_open_sale_order is not None:\n if previous_open_sale_order is not None:\n
...@@ -170,7 +168,7 @@ return add_kw_kw, modify_kw_kw, list(remove_id_list)\n ...@@ -170,7 +168,7 @@ return add_kw_kw, modify_kw_kw, list(remove_id_list)\n
</item> </item>
<item> <item>
<key> <string>_params</string> </key> <key> <string>_params</string> </key>
<value> <string>remove_hosting_list=None, add_kw_list=None, stop_date=None, start_date_tuple_list=None</string> </value> <value> <string>remove_hosting_list=None, add_kw_list=None, start_date_tuple_list=None</string> </value>
</item> </item>
<item> <item>
<key> <string>id</string> </key> <key> <string>id</string> </key>
......
...@@ -90,15 +90,14 @@ result = context.Person_updateOpenSaleOrder(\n ...@@ -90,15 +90,14 @@ result = context.Person_updateOpenSaleOrder(\n
src__=src__,\n src__=src__,\n
remove_hosting_list=remove_hosting_list,\n remove_hosting_list=remove_hosting_list,\n
add_kw_list=add_kw_list,\n add_kw_list=add_kw_list,\n
start_date_tuple_list=start_date_tuple_list,\n start_date_tuple_list=start_date_tuple_list)\n
stop_date=stop_date)\n
from pprint import pformat\n from pprint import pformat\n
return pformat(result)\n return pformat(result)\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
<key> <string>_params</string> </key> <key> <string>_params</string> </key>
<value> <string>src__=0, stop_date=None</string> </value> <value> <string>src__=0</string> </value>
</item> </item>
<item> <item>
<key> <string>id</string> </key> <key> <string>id</string> </key>
......
...@@ -68,7 +68,6 @@ def storeWorkflowComment(document, comment):\n ...@@ -68,7 +68,6 @@ def storeWorkflowComment(document, comment):\n
add_kw_kw, modify_kw_kw, remove_id_list = context.Person_getOpenSaleOrderDifference(\n add_kw_kw, modify_kw_kw, remove_id_list = context.Person_getOpenSaleOrderDifference(\n
remove_hosting_list=remove_hosting_list,\n remove_hosting_list=remove_hosting_list,\n
add_kw_list=add_kw_list,\n add_kw_list=add_kw_list,\n
stop_date=stop_date,\n
start_date_tuple_list=start_date_tuple_list)\n start_date_tuple_list=start_date_tuple_list)\n
\n \n
if src__== 1:\n if src__== 1:\n
...@@ -133,7 +132,7 @@ return add_kw_kw, modify_kw_kw, remove_id_list\n ...@@ -133,7 +132,7 @@ return add_kw_kw, modify_kw_kw, remove_id_list\n
</item> </item>
<item> <item>
<key> <string>_params</string> </key> <key> <string>_params</string> </key>
<value> <string>src__=0, remove_hosting_list=None, add_kw_list=None, stop_date=None, start_date_tuple_list=None</string> </value> <value> <string>src__=0, remove_hosting_list=None, add_kw_list=None, start_date_tuple_list=None</string> </value>
</item> </item>
<item> <item>
<key> <string>id</string> </key> <key> <string>id</string> </key>
......
222 223
\ No newline at end of file \ No newline at end of file
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