Skip to content
Snippets Groups Projects

Replace cost unit endpoints for staff member

Merged Martin Mechtel requested to merge beta-4 into develop
7 files
+ 300
46
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -172,6 +172,110 @@ class Staff {
nullable: false
})
changes: StaffChangesDto;
@Column({
name: 'qualification_occupational'
})
qualificationOccupational: string | null;
@Column({
name: 'qualification_school'
})
qualificationSchool: string | null;
@Column({
name: 'job_key'
})
jobKey: string | null;
@Column()
transferring: boolean;
@Column({
name: 'no_children_charge'
})
noChildrenCharge: boolean;
@Column({
name: 'insurance_group_key'
})
insuranceGroupKey: string | null;
@Column({
name: 'insurance_health_company'
})
insuranceHealthCompany: string | null;
@Column({
name: 'insurance_social_district'
})
insuranceSocialDistrict: string | null;
@Column({
name: 'insurance_pension_number'
})
insurancePensionNumber: string | null;
@Column({
name: 'insurance_contract_type'
})
insuranceContractType: string | null;
@Column({
name: 'insurance_social_multiple'
})
insuranceSocialMultiple: string | null;
@Column({
name: 'birth_name'
})
birthName: string | null;
@Column({
name: 'birth_place'
})
birthPlace: string | null;
@Column({
name: 'contract_type_legal'
})
contractTypeLegal: string | null;
@Column({
name: 'cost_title'
})
costTitle: string | null;
@Column({
name: 'insurance_health_key'
})
insuranceHealthKey: string | null;
@Column({
name: 'insurance_pension_key'
})
insurancePensionKey: string | null;
@Column({
name: 'insurance_unemployment_key'
})
insuranceUnemploymentKey: string | null;
@Column({
name: 'insurance_care_key'
})
insuranceCareKey: string | null;
@Column({
name: 'insurance_pension_capital'
})
insurancePensionCapital: boolean;
@Column({
type: 'date',
name: 'payroll_scheme_level_next'
})
payrollSchemeLevelNext: Date;
}
export default Staff;
Loading