Commit f7339ab2 authored by Yoshinori Okuji's avatar Yoshinori Okuji

put the content of PaySheetTransaction


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1094 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent e4dffb90
......@@ -28,46 +28,19 @@
class PaySheet:
"""
Properties for BankAccount Objects
Properties for PaySheet Transaction objects
"""
_properties = (
{ 'id' : 'month',
'description' : '',
'type' : 'date',
'mode' : 'w' },
{ 'id' : 'brut_salary',
'description' : '',
'type' : 'float',
'mode' : 'w' },
{ 'id' : 'net_salary',
'description' : '',
'type' : 'float',
'mode' : 'w' },
{ 'id' : 'csg',
{ 'id' : 'gross_salary',
'description' : '',
'type' : 'float',
'mode' : 'w' },
{ 'id' : 'workingdays',
'description' : '',
'type' : 'int',
'mode' : 'w' },
{ 'id' : 'workinghours',
{ 'id' : 'work_duration',
'description' : '',
'type' : 'float',
'type' : 'date',
'mode' : 'w' },
{ 'id' : 'person_title',
'description' : 'The person the pay sheet is destinated for',
'type' : 'string',
'acquisition_base_category' : ('destination',),
'acquisition_portal_type' : ('Person',),
'acquisition_copy_value' : 0,
'acquisition_mask_value' : 0,
'acquisition_sync_value' : 0,
'acquisition_accessor_id' : 'getTitle',
'acquisition_depends' : None,
'mode' : 'w' },
)
_categories = ( 'destination', )
_categories = ( 'source', 'destination',
'source_section', 'destination_section')
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