Commit 18cc5011 authored by Łukasz Nowak's avatar Łukasz Nowak

Disable interactions while migrating.

parent a5983685
from Products.ERP5Type.Base import WorkflowMethod
@WorkflowMethod.disable
def DeliveryLineSetZeroPriceAndOrUpdateAppliedRule(self):
portal_type = self.getPortalType()
assert( portal_type in self.getPortalDeliveryMovementTypeList())
common_specialise = 'sale_trade_condition_module/vifib_trade_condition'
specialise = self.getParentValue().getSpecialise()
if common_specialise != specialise:
self.getParentValue().setSpecialise(common_specialise)
self.setPrice(0.0)
if self.getSimulationState() == 'cancelled':
# force no simulation
self.setQuantity(0.0)
else:
self.setQuantity(1.0)
......@@ -2,76 +2,26 @@
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<global name="PythonScript" module="Products.PythonScripts.PythonScript"/>
<global name="ExternalMethod" module="Products.ExternalMethod.ExternalMethod"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>Script_magic</string> </key>
<value> <int>3</int> </value>
<key> <string>_function</string> </key>
<value> <string>DeliveryLineSetZeroPriceAndOrUpdateAppliedRule</string> </value>
</item>
<item>
<key> <string>_bind_names</string> </key>
<value>
<object>
<klass>
<global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/>
</klass>
<tuple/>
<state>
<dictionary>
<item>
<key> <string>_asgns</string> </key>
<value>
<dictionary>
<item>
<key> <string>name_container</string> </key>
<value> <string>container</string> </value>
</item>
<item>
<key> <string>name_context</string> </key>
<value> <string>context</string> </value>
</item>
<item>
<key> <string>name_m_self</string> </key>
<value> <string>script</string> </value>
</item>
<item>
<key> <string>name_subpath</string> </key>
<value> <string>traverse_subpath</string> </value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
<key> <string>_module</string> </key>
<value> <string>VifibUpgrader</string> </value>
</item>
<item>
<key> <string>_body</string> </key>
<value> <string>portal_type = context.getPortalType()\n
assert( portal_type in context.getPortalDeliveryMovementTypeList())\n
common_specialise = \'sale_trade_condition_module/vifib_trade_condition\'\n
specialise = context.getParentValue().getSpecialise()\n
if common_specialise != specialise:\n
context.getParentValue().setSpecialise(common_specialise)\n
context.setPrice(0.0)\n
if context.getSimulationState() == \'cancelled\':\n
# force no simulation\n
context.setQuantity(0.0)\n
else:\n
context.setQuantity(1.0)\n
</string> </value>
<key> <string>id</string> </key>
<value> <string>DeliveryLineSetZeroPriceAndOrUpdateAppliedRule</string> </value>
</item>
<item>
<key> <string>_params</string> </key>
<key> <string>title</string> </key>
<value> <string></string> </value>
</item>
<item>
<key> <string>id</string> </key>
<value> <string>DeliveryLineSetZeroPriceAndOrUpdateAppliedRule</string> </value>
</item>
</dictionary>
</pickle>
</record>
......
42
\ No newline at end of file
43
\ No newline at end of file
VifibUpgrader
\ 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