Commit 2f16d5d1 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

modify the accessor too, that should be the part of r35698.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@35700 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 23e9bd51
...@@ -113,7 +113,7 @@ ...@@ -113,7 +113,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>_text</string> </key> <key> <string>_text</string> </key>
<value> <string>python:bool(cell.getForceUpdate())</string> </value> <value> <string>python:bool(cell.getUpdateAlways())</string> </value>
</item> </item>
</dictionary> </dictionary>
</pickle> </pickle>
......
763 764
\ No newline at end of file \ No newline at end of file
...@@ -47,7 +47,7 @@ class CategoryMovementGroup(PropertyMovementGroup): ...@@ -47,7 +47,7 @@ class CategoryMovementGroup(PropertyMovementGroup):
return property_dict return property_dict
def test(self, document, property_dict, property_list=None, **kw): def test(self, document, property_dict, property_list=None, **kw):
if self.isForceUpdate(): if self.isUpdateAlways():
return True, property_dict return True, property_dict
if property_list not in (None, []): if property_list not in (None, []):
target_property_list = [x for x in self.getTestedPropertyList() \ target_property_list = [x for x in self.getTestedPropertyList() \
......
...@@ -46,7 +46,7 @@ class PropertyMovementGroup(MovementGroup): ...@@ -46,7 +46,7 @@ class PropertyMovementGroup(MovementGroup):
return property_dict return property_dict
def test(self, document, property_dict, property_list=None, **kw): def test(self, document, property_dict, property_list=None, **kw):
if self.isForceUpdate(): if self.isUpdateAlways():
return True, property_dict return True, property_dict
if property_list not in (None, []): if property_list not in (None, []):
target_property_list = [x for x in self.getTestedPropertyList() \ target_property_list = [x for x in self.getTestedPropertyList() \
......
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