Commit 5d5bc5e9 authored by Fabien Morin's avatar Fabien Morin

rename a field. Thanks to yo for notice this


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@25169 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c93d0b99
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
<string>my_variation_category_list</string> <string>my_variation_category_list</string>
<string>my_base_contribution_list</string> <string>my_base_contribution_list</string>
<string>my_base_application_list</string> <string>my_base_application_list</string>
<string>my_do_not_create_paysheet_line</string> <string>my_create_paysheet_line</string>
<string>my_editable</string> <string>my_editable</string>
</list> </list>
</value> </value>
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>id</string> </key> <key> <string>id</string> </key>
<value> <string>my_do_not_create_paysheet_line</string> </value> <value> <string>my_create_paysheet_line</string> </value>
</item> </item>
<item> <item>
<key> <string>message_values</string> </key> <key> <string>message_values</string> </key>
...@@ -136,7 +136,7 @@ ...@@ -136,7 +136,7 @@
</item> </item>
<item> <item>
<key> <string>description</string> </key> <key> <string>description</string> </key>
<value> <string></string> </value> <value> <string>Usefull for intermediated lines. By default, Pay Sheet Lines are created (checked).</string> </value>
</item> </item>
<item> <item>
<key> <string>editable</string> </key> <key> <string>editable</string> </key>
...@@ -160,7 +160,7 @@ ...@@ -160,7 +160,7 @@
</item> </item>
<item> <item>
<key> <string>title</string> </key> <key> <string>title</string> </key>
<value> <string>Don\'t create Pay Sheet Line</string> </value> <value> <string>Create Pay Sheet Line</string> </value>
</item> </item>
</dictionary> </dictionary>
</value> </value>
......
334 336
\ No newline at end of file \ No newline at end of file
...@@ -39,11 +39,12 @@ class PaySheetModelLine: ...@@ -39,11 +39,12 @@ class PaySheetModelLine:
'type' : 'boolean', 'type' : 'boolean',
'mode' : 'w' 'mode' : 'w'
}, },
{ 'id' : 'do_not_create_paysheet_line', { 'id' : 'create_paysheet_line',
'description' : 'If set to 1, the corresponding paysheet line will not' 'description' : 'A flag indicating if the corresponding paysheet line will'
' be created', ' be created',
'type' : 'boolean', 'type' : 'boolean',
'mode' : 'w' 'mode' : 'w',
'default' : True,
}, },
{ 'id' : 'calculation_script_id', { 'id' : 'calculation_script_id',
'description' : 'If no script found on Pay Sheet Model Lines, this' 'description' : 'If no script found on Pay Sheet Model Lines, this'
......
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