Commit 8e5ddda5 authored by Jérome Perrin's avatar Jérome Perrin

add new source_annotation_line_reference property


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@21399 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d21ce6cb
...@@ -30,18 +30,24 @@ from Products.CMFCore.Expression import Expression ...@@ -30,18 +30,24 @@ from Products.CMFCore.Expression import Expression
class PaySheetModelLine: class PaySheetModelLine:
""" """
Properties which allow to define a generic Price. Properties for Pay Sheet Model Lines.
""" """
_properties = ( _properties = (
{ 'id' : 'editable', { 'id' : 'editable',
'description' : 'If set to 1, the Pay Sheet Line values could be edited \ 'description' : 'If set to 1, the Pay Sheet Line values could be edited'
at the Pay Sheet calculation step', ' at the Pay Sheet calculation step',
'type' : 'boolean', 'type' : 'boolean',
'mode' : 'w' 'mode' : 'w'
}, },
{ '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'
script is used to do localised calculs', ' script is used to do localised calculs',
'type' : 'string',
'mode' : 'w',
},
{ 'id' : 'source_annotation_line_reference',
'description' : 'The Payroll Service Provider will be the one defined in'
' the Annotation Line with this reference.',
'type' : 'string', 'type' : 'string',
'mode' : 'w', 'mode' : 'w',
}, },
......
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