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 @@
<string>my_variation_category_list</string>
<string>my_base_contribution_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>
</list>
</value>
......
......@@ -11,7 +11,7 @@
<dictionary>
<item>
<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>
<key> <string>message_values</string> </key>
......@@ -136,7 +136,7 @@
</item>
<item>
<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>
<key> <string>editable</string> </key>
......@@ -160,7 +160,7 @@
</item>
<item>
<key> <string>title</string> </key>
<value> <string>Don\'t create Pay Sheet Line</string> </value>
<value> <string>Create Pay Sheet Line</string> </value>
</item>
</dictionary>
</value>
......
334
\ No newline at end of file
336
\ No newline at end of file
......@@ -39,11 +39,12 @@ class PaySheetModelLine:
'type' : 'boolean',
'mode' : 'w'
},
{ 'id' : 'do_not_create_paysheet_line',
'description' : 'If set to 1, the corresponding paysheet line will not'
{ 'id' : 'create_paysheet_line',
'description' : 'A flag indicating if the corresponding paysheet line will'
' be created',
'type' : 'boolean',
'mode' : 'w'
'mode' : 'w',
'default' : True,
},
{ 'id' : 'calculation_script_id',
'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