@colijnit/relation 12.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (188) hide show
  1. package/README.md +24 -0
  2. package/bundles/colijnit-relation.umd.js +4832 -0
  3. package/bundles/colijnit-relation.umd.js.map +1 -0
  4. package/colijnit-relation.d.ts +21 -0
  5. package/colijnit-relation.metadata.json +1 -0
  6. package/esm2015/colijnit-relation.js +22 -0
  7. package/esm2015/lib/component/base/relation-base.component.js +52 -0
  8. package/esm2015/lib/component/base/relation-loader.component.js +50 -0
  9. package/esm2015/lib/component/base/relation-screen-config-base.component.js +16 -0
  10. package/esm2015/lib/component/relation/relation.component.js +100 -0
  11. package/esm2015/lib/component/relation/relation.module.js +58 -0
  12. package/esm2015/lib/component/relation-address/relation-address.component.js +166 -0
  13. package/esm2015/lib/component/relation-address/relation-address.module.js +24 -0
  14. package/esm2015/lib/component/relation-address-tile/relation-address-tile.component.js +72 -0
  15. package/esm2015/lib/component/relation-address-tile/relation-address-tile.module.js +25 -0
  16. package/esm2015/lib/component/relation-addresses/relation-addresses.component.js +158 -0
  17. package/esm2015/lib/component/relation-addresses/relation-addresses.module.js +31 -0
  18. package/esm2015/lib/component/relation-avatar/relation-avatar.component.js +222 -0
  19. package/esm2015/lib/component/relation-avatar/relation-avatar.module.js +22 -0
  20. package/esm2015/lib/component/relation-contact-options/relation-contact-option-list.component.js +101 -0
  21. package/esm2015/lib/component/relation-contact-options/relation-contact-option.component.js +100 -0
  22. package/esm2015/lib/component/relation-contact-options/relation-contact-options-other-types-popup.component.js +44 -0
  23. package/esm2015/lib/component/relation-contact-options/relation-contact-options.component.js +154 -0
  24. package/esm2015/lib/component/relation-contact-options/relation-contact-options.module.js +34 -0
  25. package/esm2015/lib/component/relation-first-name/relation-first-name.component.js +25 -0
  26. package/esm2015/lib/component/relation-first-name/relation-first-name.module.js +24 -0
  27. package/esm2015/lib/component/relation-gender/relation-gender.component.js +45 -0
  28. package/esm2015/lib/component/relation-gender/relation-gender.module.js +23 -0
  29. package/esm2015/lib/component/relation-initials/relation-initials.component.js +24 -0
  30. package/esm2015/lib/component/relation-initials/relation-initials.module.js +24 -0
  31. package/esm2015/lib/component/relation-language/relation-language.component.js +56 -0
  32. package/esm2015/lib/component/relation-language/relation-language.module.js +24 -0
  33. package/esm2015/lib/component/relation-last-name/relation-last-name.component.js +23 -0
  34. package/esm2015/lib/component/relation-last-name/relation-last-name.module.js +24 -0
  35. package/esm2015/lib/component/relation-preferences/relation-preferences.component.js +69 -0
  36. package/esm2015/lib/component/relation-preferences/relation-preferences.module.js +23 -0
  37. package/esm2015/lib/component/relation-prefix-name/relation-prefix-name.component.js +24 -0
  38. package/esm2015/lib/component/relation-prefix-name/relation-prefix-name.module.js +24 -0
  39. package/esm2015/lib/component/relation-title/relation-title.component.js +56 -0
  40. package/esm2015/lib/component/relation-title/relation-title.module.js +24 -0
  41. package/esm2015/lib/enum/icon.enum.js +16 -0
  42. package/esm2015/lib/enum/language-code.enum.js +8 -0
  43. package/esm2015/lib/enum/relman-cfg-name.enum.js +862 -0
  44. package/esm2015/lib/enum/relman-contact-options-cfg-names.js +2 -0
  45. package/esm2015/lib/enum/relman-sub-category.enum.js +13 -0
  46. package/esm2015/lib/interface/relation-address-cfg-names.interface.js +2 -0
  47. package/esm2015/lib/model/icon-svg.js +15 -0
  48. package/esm2015/lib/model/relation-settings-options.js +7 -0
  49. package/esm2015/lib/model/relation-settings.js +9 -0
  50. package/esm2015/lib/relation-version.js +10 -0
  51. package/esm2015/lib/res/dictionary/dictionaries.js +9 -0
  52. package/esm2015/lib/service/dictionary.service.js +68 -0
  53. package/esm2015/lib/service/error.service.js +75 -0
  54. package/esm2015/lib/service/icon-cache.service.js +51 -0
  55. package/esm2015/lib/service/relation-base.service.js +268 -0
  56. package/esm2015/lib/service/relation-connector-adapter.service.js +401 -0
  57. package/esm2015/lib/service/relation-connector.service.js +155 -0
  58. package/esm2015/lib/service/relation-event.service.js +16 -0
  59. package/esm2015/lib/service/relation-screen-configuration.service.js +51 -0
  60. package/esm2015/lib/service/relation-settings.service.js +65 -0
  61. package/esm2015/lib/service/relation.service.js +42 -0
  62. package/esm2015/lib/translation/relation-dictionary.service.js +77 -0
  63. package/esm2015/lib/translation/relation-localize.pipe.js +26 -0
  64. package/esm2015/lib/translation/relation-translation.module.js +29 -0
  65. package/esm2015/lib/translation/relation-translation.service.js +17 -0
  66. package/esm2015/public_api.js +33 -0
  67. package/fesm2015/colijnit-relation.js +3980 -0
  68. package/fesm2015/colijnit-relation.js.map +1 -0
  69. package/lib/component/base/relation-base.component.d.ts +24 -0
  70. package/lib/component/base/relation-loader.component.d.ts +12 -0
  71. package/lib/component/base/relation-screen-config-base.component.d.ts +14 -0
  72. package/lib/component/relation/relation.component.d.ts +21 -0
  73. package/lib/component/relation/relation.module.d.ts +2 -0
  74. package/lib/component/relation/style/_layout.scss +46 -0
  75. package/lib/component/relation/style/_material-definition.scss +15 -0
  76. package/lib/component/relation/style/_theme.scss +12 -0
  77. package/lib/component/relation/style/material.scss +4 -0
  78. package/lib/component/relation-address/relation-address.component.d.ts +35 -0
  79. package/lib/component/relation-address/relation-address.module.d.ts +2 -0
  80. package/lib/component/relation-address/style/_layout.scss +16 -0
  81. package/lib/component/relation-address/style/_material-definition.scss +5 -0
  82. package/lib/component/relation-address/style/_theme.scss +5 -0
  83. package/lib/component/relation-address/style/material.scss +4 -0
  84. package/lib/component/relation-address-tile/relation-address-tile.component.d.ts +19 -0
  85. package/lib/component/relation-address-tile/relation-address-tile.module.d.ts +2 -0
  86. package/lib/component/relation-address-tile/style/_layout.scss +46 -0
  87. package/lib/component/relation-address-tile/style/_material-definition.scss +18 -0
  88. package/lib/component/relation-address-tile/style/_theme.scss +19 -0
  89. package/lib/component/relation-address-tile/style/material.scss +4 -0
  90. package/lib/component/relation-addresses/relation-addresses.component.d.ts +31 -0
  91. package/lib/component/relation-addresses/relation-addresses.module.d.ts +2 -0
  92. package/lib/component/relation-addresses/style/_layout.scss +26 -0
  93. package/lib/component/relation-addresses/style/_material-definition.scss +12 -0
  94. package/lib/component/relation-addresses/style/_theme.scss +20 -0
  95. package/lib/component/relation-addresses/style/material.scss +4 -0
  96. package/lib/component/relation-avatar/relation-avatar.component.d.ts +47 -0
  97. package/lib/component/relation-avatar/relation-avatar.module.d.ts +2 -0
  98. package/lib/component/relation-avatar/style/_layout.scss +44 -0
  99. package/lib/component/relation-avatar/style/_material-definition.scss +4 -0
  100. package/lib/component/relation-avatar/style/_theme.scss +9 -0
  101. package/lib/component/relation-avatar/style/material.scss +4 -0
  102. package/lib/component/relation-contact-options/relation-contact-option-list.component.d.ts +22 -0
  103. package/lib/component/relation-contact-options/relation-contact-option.component.d.ts +30 -0
  104. package/lib/component/relation-contact-options/relation-contact-options-other-types-popup.component.d.ts +22 -0
  105. package/lib/component/relation-contact-options/relation-contact-options.component.d.ts +40 -0
  106. package/lib/component/relation-contact-options/relation-contact-options.module.d.ts +2 -0
  107. package/lib/component/relation-contact-options/style/_layout.scss +113 -0
  108. package/lib/component/relation-contact-options/style/_material-definition.scss +35 -0
  109. package/lib/component/relation-contact-options/style/_theme.scss +48 -0
  110. package/lib/component/relation-contact-options/style/material.scss +4 -0
  111. package/lib/component/relation-first-name/relation-first-name.component.d.ts +4 -0
  112. package/lib/component/relation-first-name/relation-first-name.module.d.ts +2 -0
  113. package/lib/component/relation-first-name/style/_layout.scss +9 -0
  114. package/lib/component/relation-first-name/style/_material-definition.scss +3 -0
  115. package/lib/component/relation-first-name/style/_theme.scss +5 -0
  116. package/lib/component/relation-first-name/style/material.scss +4 -0
  117. package/lib/component/relation-gender/relation-gender.component.d.ts +7 -0
  118. package/lib/component/relation-gender/relation-gender.module.d.ts +2 -0
  119. package/lib/component/relation-gender/style/_layout.scss +8 -0
  120. package/lib/component/relation-gender/style/_material-definition.scss +4 -0
  121. package/lib/component/relation-gender/style/_theme.scss +5 -0
  122. package/lib/component/relation-gender/style/material.scss +4 -0
  123. package/lib/component/relation-initials/relation-initials.component.d.ts +4 -0
  124. package/lib/component/relation-initials/relation-initials.module.d.ts +2 -0
  125. package/lib/component/relation-initials/style/_layout.scss +9 -0
  126. package/lib/component/relation-initials/style/_material-definition.scss +3 -0
  127. package/lib/component/relation-initials/style/_theme.scss +5 -0
  128. package/lib/component/relation-initials/style/material.scss +4 -0
  129. package/lib/component/relation-language/relation-language.component.d.ts +12 -0
  130. package/lib/component/relation-language/relation-language.module.d.ts +2 -0
  131. package/lib/component/relation-language/style/_layout.scss +9 -0
  132. package/lib/component/relation-language/style/_material-definition.scss +3 -0
  133. package/lib/component/relation-language/style/_theme.scss +5 -0
  134. package/lib/component/relation-language/style/material.scss +4 -0
  135. package/lib/component/relation-last-name/relation-last-name.component.d.ts +4 -0
  136. package/lib/component/relation-last-name/relation-last-name.module.d.ts +2 -0
  137. package/lib/component/relation-last-name/style/_layout.scss +9 -0
  138. package/lib/component/relation-last-name/style/_material-definition.scss +3 -0
  139. package/lib/component/relation-last-name/style/_theme.scss +5 -0
  140. package/lib/component/relation-last-name/style/material.scss +4 -0
  141. package/lib/component/relation-preferences/relation-preferences.component.d.ts +13 -0
  142. package/lib/component/relation-preferences/relation-preferences.module.d.ts +2 -0
  143. package/lib/component/relation-preferences/style/_layout.scss +16 -0
  144. package/lib/component/relation-preferences/style/_material-definition.scss +8 -0
  145. package/lib/component/relation-preferences/style/_theme.scss +5 -0
  146. package/lib/component/relation-preferences/style/material.scss +4 -0
  147. package/lib/component/relation-prefix-name/relation-prefix-name.component.d.ts +4 -0
  148. package/lib/component/relation-prefix-name/relation-prefix-name.module.d.ts +2 -0
  149. package/lib/component/relation-prefix-name/style/_layout.scss +9 -0
  150. package/lib/component/relation-prefix-name/style/_material-definition.scss +3 -0
  151. package/lib/component/relation-prefix-name/style/_theme.scss +5 -0
  152. package/lib/component/relation-prefix-name/style/material.scss +4 -0
  153. package/lib/component/relation-title/relation-title.component.d.ts +13 -0
  154. package/lib/component/relation-title/relation-title.module.d.ts +2 -0
  155. package/lib/component/relation-title/style/_layout.scss +9 -0
  156. package/lib/component/relation-title/style/_material-definition.scss +3 -0
  157. package/lib/component/relation-title/style/_theme.scss +5 -0
  158. package/lib/component/relation-title/style/material.scss +4 -0
  159. package/lib/enum/icon.enum.d.ts +14 -0
  160. package/lib/enum/language-code.enum.d.ts +6 -0
  161. package/lib/enum/relman-cfg-name.enum.d.ts +857 -0
  162. package/lib/enum/relman-contact-options-cfg-names.d.ts +6 -0
  163. package/lib/enum/relman-sub-category.enum.d.ts +10 -0
  164. package/lib/interface/relation-address-cfg-names.interface.d.ts +8 -0
  165. package/lib/model/icon-svg.d.ts +4 -0
  166. package/lib/model/relation-settings-options.d.ts +4 -0
  167. package/lib/model/relation-settings.d.ts +5 -0
  168. package/lib/relation-version.d.ts +6 -0
  169. package/lib/res/dictionary/dictionaries.d.ts +17184 -0
  170. package/lib/service/dictionary.service.d.ts +18 -0
  171. package/lib/service/error.service.d.ts +11 -0
  172. package/lib/service/icon-cache.service.d.ts +18 -0
  173. package/lib/service/relation-base.service.d.ts +64 -0
  174. package/lib/service/relation-connector-adapter.service.d.ts +66 -0
  175. package/lib/service/relation-connector.service.d.ts +51 -0
  176. package/lib/service/relation-event.service.d.ts +6 -0
  177. package/lib/service/relation-screen-configuration.service.d.ts +13 -0
  178. package/lib/service/relation-settings.service.d.ts +16 -0
  179. package/lib/service/relation.service.d.ts +10 -0
  180. package/lib/style/_mixin.scss +15 -0
  181. package/lib/style/_variables.scss +15 -0
  182. package/lib/style/relation-globals.scss +7 -0
  183. package/lib/translation/relation-dictionary.service.d.ts +19 -0
  184. package/lib/translation/relation-localize.pipe.d.ts +7 -0
  185. package/lib/translation/relation-translation.module.d.ts +4 -0
  186. package/lib/translation/relation-translation.service.d.ts +6 -0
  187. package/package.json +30 -0
  188. package/public_api.d.ts +32 -0
@@ -0,0 +1,857 @@
1
+ export declare enum RelmanCfgName {
2
+ AbilityToWork = "abilityToWork",
3
+ AbsenceFilesHeader = "absenceFilesHeader",
4
+ AbsenceFrequency = "absenceFrequency",
5
+ AbsencePercentageExtraLong = "absencePercentageExtraLong",
6
+ AbsencePercentageGeneral = "absencePercentageGeneral",
7
+ AbsencePercentageLong = "absencePercentageLong",
8
+ AbsencePercentageMedium = "absencePercentageMedium",
9
+ AbsencePercentageShort = "absencePercentageShort",
10
+ AbsenceTab = "absenceTab",
11
+ AbsencesHeader = "absencesHeader",
12
+ AccountHeader = "accountHeader",
13
+ AccountManager = "salesPerson",
14
+ AccountManagerHeader = "accountManagerHeader",
15
+ AccountEditRightsButton = "accountEditRightsButton",
16
+ ActivitiesTab = "activityTab",
17
+ AddAddressButton = "addAddressButton",
18
+ DeleteAddressButton = "deleteAddressButton",
19
+ ChangeAddressButton = "changeAddressButton",
20
+ AddBankAccountButton = "addBankAccountButton",
21
+ AddBranchAdministrationButton = "addBranchAdministrationButton",
22
+ AddBranchLedgerWarehButton = "addBranchLedgerWarehButton",
23
+ AddBranchWarehouseButton = "addBranchWarehouseButton",
24
+ AddCaseManagerButton = "addCaseManagerButton",
25
+ AddCaseManagerTaskDelegationButton = "addCaseManagerTDButton",
26
+ AddConnectionButton = "addConnectionButton",
27
+ AddConsultantButton = "addConsultantButton",
28
+ AddConsultDoctorButton = "addConsultDoctorButton",
29
+ AddContactCustomerButton = "addContactCustomerButton",
30
+ AddContactEmployeeButton = "addContactEmployeeButton",
31
+ AddContactMomentButton = "addContactMomentButton",
32
+ AddContactOptionButton = "addContactOptionButton",
33
+ AddAddressContactOptionButton = "addAddressContactOptionButton",
34
+ AddDepartmentButton = "addDepartmentButton",
35
+ AddDocumentButton = "addDocumentButton",
36
+ AddByUrlDocumentButton = "addByUrlDocumentButton",
37
+ AddEducationButton = "addEducationButton",
38
+ AddEmolumentButton = "addEmolumentButton",
39
+ AddEmployeeContractButton = "addEmployeeContractButton",
40
+ addEmployeeFteBttn = "addEmployeeFteBttn",
41
+ AddHardwareButton = "addHardwareButton",
42
+ AddIdentificationButton = "addIdentificationButton",
43
+ AddInsuredInterestButton = "addInsuredInterestButton",
44
+ AdditionalDataHeader = "additionalDataHeader",
45
+ AdditionalHeader = "additionalHeader",
46
+ AddLaborExpertButton = "addLaborExpertButton",
47
+ AddManagedDepartmentBttn = "addManagedDepartmentBttn",
48
+ AddMedicalOfficerButton = "addMedicalOfficerButton",
49
+ AddNewRelationButton = "addNewRelationButton",
50
+ AddNotitionButton = "addNotitionButton",
51
+ AddOffsetAccountButton = "addOffsetAccountButton",
52
+ AddOrganisationButton = "addOrganisationButton",
53
+ AddOrganisationEmplButton = "addOrganisationEmplButton",
54
+ AddOwnRiskButton = "addOwnRiskButton",
55
+ AddPersonButton = "addPersonButton",
56
+ AddRelObserverButton = "addRelObserverButton",
57
+ AddStaffDoctorButton = "addStaffDoctorButton",
58
+ AddressCity = "addresses_city",
59
+ AddressCompanyName = "addresses_addressName",
60
+ AddressCountry = "addresses_countryId",
61
+ AddressEndDate = "addresses_endDate",
62
+ AddressGln = "addresses_gln",
63
+ AddressesHeader = "addressesHeader",
64
+ AddressHouseNo = "addresses_houseNo",
65
+ AddressHouseNoAddition = "addresses_houseNoAddition",
66
+ AddressPostalCode = "addresses_postalCode",
67
+ AddressSequence = "addresses_sequence",
68
+ AddressStartDate = "addresses_startDate",
69
+ AddressStreetName = "addresses_streetName",
70
+ AddressType = "addresses_addressType",
71
+ AddressContactOptionsHeader = "addressContactOptionsHeader",
72
+ AddressContactOptionType = "addresses_contactOptions_type",
73
+ AddressContactOptionValue = "addresses_contactOptions_value",
74
+ AddressContactOptionDescription = "addresses_contactOptions_description",
75
+ AddSalaryDataButton = "addSalaryDataButton",
76
+ AddSalaryDataDocBttn = "addSalaryContractDocumentButton",
77
+ AddServiceButton = "addServiceButton",
78
+ AddServiceProviderButton = "addServiceProviderButton",
79
+ AddSkillButton = "addSkillButton",
80
+ AddSoftwareButton = "addSoftwareButton",
81
+ AddWageTaxNumberButton = "addWageTaxNumberButton",
82
+ Admonish = "admonish",
83
+ AppointmentConfirmationLayoutLov = "appointmentConfirmLayoutLov",
84
+ ArboRegistrationNumber = "arboRegistrationNumber",
85
+ AtvDays = "contracts_salaries_workingTimeReductionDays",
86
+ AverageDaysOfAbsence = "averageDaysOfAbsence",
87
+ BankAccountAccountName = "bankAccounts_accountName",
88
+ BankAccountBankName = "bankAccounts_bankName",
89
+ BankAccountBankRelation = "bankAccounts_bankRelation",
90
+ BankAccountBeneficiary = "bankAccounts_beneficiary",
91
+ BankAccountCity = "bankAccounts_city",
92
+ BankAccountIban = "bankAccounts_iban",
93
+ BankAccountNet = "bankAccounts_net",
94
+ BankAccountPriority = "bankAccounts_priority",
95
+ BankAccountsHeader = "bankAccountsHeader",
96
+ BankRelation = "bankRelation",
97
+ BasicDataHeader = "basicDataHeader",
98
+ Block = "block",
99
+ BranchAdministrationAdminId = "branchAdministrations_adminId",
100
+ BranchAdministrationCostCentre = "branchAdministrations_costCentreId",
101
+ BranchAdministrationsHeader = "branchAdministrationsHeader",
102
+ BranchCompanyNumber = "branchCompanyNumber",
103
+ BranchHeader = "branchHeader",
104
+ BranchId = "branchId",
105
+ BranchLedgerWarehouseAdmin = "branchLedgerWarehouses_adminFinancialYearId",
106
+ BranchLedgerWarehouseLedger = "branchLedgerWarehouses_ledgerAccountId",
107
+ BranchLedgerWarehousesHeader = "branchLedgerWarehousesHeader",
108
+ BranchLedgerWarehouseWarehouse = "branchLedgerWarehouses_warehouseNumber",
109
+ BranchWarehouseCheckStock = "branchWarehouses_checkStock",
110
+ BranchWarehouseInterBranch = "branchWarehouses_interbranch",
111
+ BranchWarehousesHeader = "branchWarehousesHeader",
112
+ BranchWarehouseStandard = "branchWarehouses_standard",
113
+ BranchWarehouseTransitWarehs = "branchWarehouses_transitWarehouse",
114
+ BranchWarehouseWarehouseNo = "branchWarehouses_warehouseNo",
115
+ BrutWageEmployerCosts = "contracts_salaries_grossSalaryAmount",
116
+ BusinessEntityTypeCode = "businessEntityTypeCode",
117
+ CAO = "collectiveAgreement",
118
+ CapacityPercentage = "capacityPercentage",
119
+ CarriagePaidOrderAmount = "carriagePaidOrderAmount",
120
+ CaseManagers = "caseManagers",
121
+ CaseManagersHeader = "caseManagersHeader",
122
+ CaseManagersTaskDelegation = "caseManagersTaskDelegation",
123
+ CaseManagersTaskDelegationHeader = "caseManagersTaskDelHeader",
124
+ CitizenServiceNumber = "citizenServiceNumber",
125
+ CocNr = "cocNr",
126
+ CollectiveDelivery = "collectiveDelivery",
127
+ CollectiveInvoice = "collectiveInvoice",
128
+ CompanyType = "companyType",
129
+ ConnectionAccountAddButton = "connectionAccountAddButton",
130
+ ConnectionAccountDescription = "connectionAccountDescription",
131
+ ConnectionAccountKind = "connectionAccountKind",
132
+ ConnectionAccountPassword = "connectionAccountPassword",
133
+ ConnectionAccountsHeader = "connectionAccountsHeader",
134
+ ConnectionAccountUser = "connectionAccountUser",
135
+ ConnectionDescription = "connectionDescription",
136
+ ConnectionIpAddress = "connectionIpAddress",
137
+ ConnectionKind = "connectionKind",
138
+ ConnectionProduct = "connectionProduct",
139
+ ConnectionProductType = "connectionProductType",
140
+ ConnectionRemoveAccountButton = "connectionRemoveAccountButton",
141
+ Consultants = "consultants",
142
+ ConsultantsHeader = "consultantsHeader",
143
+ ConsultDoctors = "consultDoctors",
144
+ ConsultDoctorsHeader = "consultDoctorsHeader",
145
+ ContactCustAddrHouseNoAddition = "contactCustAddrHouseNoAddition",
146
+ ContactCustomerReferenceTypes = "contactCustomerReferenceTypes",
147
+ ContactCustomerAddrCity = "contactCustomerAddrCity",
148
+ ContactCustomerAddrCountry = "contactCustomerAddrCountry",
149
+ ContactCustomerAddrGoogleAutoComplete = "contactCustomerAddrGoogleAutoComplete",
150
+ ContactCustomerAddrHouseNo = "contactCustomerAddrHouseNo",
151
+ ContactCustomerAddrPostalCode = "contactCustomerAddrPostalCode",
152
+ ContactCustomerAddrStreetName = "contactCustomerAddrStreetName",
153
+ ContactCustomerAddrUseGoogle = "contactCustomerAddrUseGoogle",
154
+ ContactCustomerFirstName = "contactCustomerFirstName",
155
+ ContactCustomerInitials = "contactCustomerInitials",
156
+ ContactCustomerLastName = "contactCustomerLastName",
157
+ ContactCustomerMailAddress = "contactCustomerMailAddress",
158
+ ContactCustomerPhoneNumber = "contactCustomerPhoneNumber",
159
+ ContactCustomersHeader = "contactCustomersHeader",
160
+ ContactEmplAddrHouseNoAddition = "contactEmployees_addressDTO_houseNoAddition",
161
+ ContactEmployeeAddrCity = "contactEmployees_addressDTO_city",
162
+ ContactEmployeeAddrCountry = "contactEmployees_addressDTO_countryId",
163
+ ContactEmployeeAddrGoogleAutoComplete = "viewOnly_cntEmployeesAddrGoogleAutoComplete",
164
+ ContactEmployeeAddrHouseNo = "contactEmployees_addressDTO_houseNo",
165
+ ContactEmployeeAddrPostalCode = "contactEmployees_addressDTO_postalCode",
166
+ ContactEmployeeAddrStreetName = "contactEmployees_addressDTO_streetName",
167
+ ContactEmployeeAddrUseGoogle = "viewOnly_cntEmployeesAddrUseGoogle",
168
+ ContactEmployeeMailAddress = "contactEmployees_mailAddress",
169
+ ContactEmployeeFirstName = "contactEmployees_firstName",
170
+ ContactEmployeeInitials = "contactEmployees_initials",
171
+ ContactEmployeeLastName = "contactEmployees_familyName",
172
+ ContactEmployeePhoneNumber = "contactEmployees_phoneNumber",
173
+ ContactEmployeeReferenceTypes = "contactEmployees_referenceTypeIds",
174
+ ContactEmployeesHeader = "contactEmployeesHeader",
175
+ ContactMomentAssign = "contactMomentAssign",
176
+ ContactMomentDate = "contactMomentDate",
177
+ ContactMomentDescription = "contactMomentDescription",
178
+ ContactMomentEmployee = "contactMomentEmployee",
179
+ ContactMomentFollowUpDate = "contactMomentFollowUpDate",
180
+ ContactMomentMedium = "contactMomentMedium",
181
+ ContactMomentsGrid = "contactMomentsGrid",
182
+ ContactOptionDescription = "contactOptions_description",
183
+ ContactOptionLinkedToAddress = "contactOptions_linkedAddressId",
184
+ ContactOptionsHeader = "contactOptionsHeader",
185
+ ContactOptionType = "contactOptions_type",
186
+ ContactOptionValue = "contactOptions_value",
187
+ ContactOptionEmailType = "contactOptions_emailType",
188
+ ContactsTab = "contactsTab",
189
+ ContractCompany = "contracts_companyId",
190
+ ContractDepartment = "contracts_departmentId",
191
+ ContractEmploymentReasonEnd = "contracts_endDateReasonId",
192
+ ContractEndDate = "contracts_endDate",
193
+ ContractFunctionalLimitation = "contracts_functionalLimitation",
194
+ ContractJobType = "contracts_jobTypeId",
195
+ ContractsConnectionsTab = "contractsConnectionsHeader",
196
+ ContractsConnectionsHeader = "contractsConnectionsHeader",
197
+ ContractsHardwareTab = "contractsHardwareHeader",
198
+ ContractsHardwareHeader = "contractsHardwareHeader",
199
+ ContractSpecification = "contracts_specification",
200
+ ContractsServiceTab = "contractsServiceHeader",
201
+ ContractsServiceHeader = "contractsServiceHeader",
202
+ ContractsSoftwareTab = "contractsSoftwareHeader",
203
+ ContractsSoftwareHeader = "contractsSoftwareHeader",
204
+ ContractsTab = "contractsTab",
205
+ ContractStartDate = "contracts_startDate",
206
+ ContractType = "contracts_contractTypeId",
207
+ ContractDurationType = "contracts_contractDurationType",
208
+ ContractUnion = "contracts_flexLawId",
209
+ CostingFactor = "costingFactor",
210
+ CreditLimit = "creditLimit",
211
+ CurrencyCode = "currencyCode",
212
+ CustomerAdmin = "customerAdmin",
213
+ CustomerGroup = "customerGroup",
214
+ CustomerId = "customerId",
215
+ CustomerType = "customerType",
216
+ CustomersTab = "customersTab",
217
+ CustomerValue = "customerValue",
218
+ CutOffTime = "cutOffTime",
219
+ DashboardHeader = "dashboardHeader",
220
+ DashboardTab = "dashboardTab",
221
+ DateOfBirth = "dateOfBirth",
222
+ DaysPerWeek = "contracts_salaries_standWorkingDaysPerWeek",
223
+ DefaultDiscount = "defaultDiscount",
224
+ DeleteAbsenceHistory = "deleteAbsenceHistory",
225
+ DeliveryDays = "deliveryDays",
226
+ DeliveryDelay = "deliveryDelay",
227
+ DeliveryDelayUnit = "deliveryDelayUnit",
228
+ DeliveryIndicationLayoutLov = "deliveryIndicationLayoutLov",
229
+ DeliveryMethod = "deliveryMethod",
230
+ DeliveryNoteLayoutLov = "deliveryNoteLayoutLov",
231
+ DeliveryTimeSpecification = "deliveryTimeSpecification",
232
+ DeliveryTimeSpecificationUnit = "deliveryTimeSpecificationUnit",
233
+ DeliveryTimeUnit = "deliveryTimeUnit",
234
+ DepartmentCode = "departments_departmentCode",
235
+ DepartmentName = "departments_name",
236
+ DepartmentNo = "departments_departmentNo",
237
+ DepartmentRemarks = "departments_remarks",
238
+ DepartmentsHeader = "departmentsHeader",
239
+ Description = "description",
240
+ DirectSell = "directSell",
241
+ DistributionDiscount = "distributionDiscount",
242
+ District = "district",
243
+ DocConnectionHeader = "docConnectionHeader",
244
+ DocumentsHeader = "documentsHeader",
245
+ DocumentsTab = "documentsTab",
246
+ DriversLicense = "driversLicense",
247
+ Dropshipment = "dropshipment",
248
+ EanCode = "eanCode",
249
+ EditAbsenceHistory = "editAbsenceHistory",
250
+ EducationCompleted = "educations_succeeded",
251
+ EducationCosts = "educations_costAmount",
252
+ EducationCostsTimeFrame = "educations_costPeriodType",
253
+ EducationCurrency = "educations_costCurrencyCode",
254
+ EducationDescription = "educations_description",
255
+ EducationDuration = "educations_duration",
256
+ EducationDurationTimeFrame = "educations_durationPeriodType",
257
+ EducationEndDate = "educations_endDate",
258
+ EducationLevel = "educations_educationLevelId",
259
+ EducationOrganisation = "educations_organisationName",
260
+ EducationsHeader = "educationsHeader",
261
+ EducationStartDate = "educations_startDate",
262
+ EducationType = "educations_eductionType",
263
+ EduContributionEmployer = "educations_employerContributionAmount",
264
+ EduContributionEmployerTimeFr = "educations_employerContributionPeriodType",
265
+ EmolumentBrand = "contracts_emoluments_brand",
266
+ EmolumentBrandType = "contracts_emoluments_brandType",
267
+ EmolumentCurrency = "contracts_emoluments_currencyId",
268
+ EmolumentDescription = "contracts_emoluments_extraInfo",
269
+ EmolumentEndDate = "contracts_emoluments_endDate",
270
+ EmolumentNr = "contracts_emoluments_emolumentNr",
271
+ EmolumentsHeader = "emolumentsHeader",
272
+ EmolumentStartDate = "contracts_emoluments_startDate",
273
+ EmolumentType = "contracts_emoluments_emolumentTypeId",
274
+ EmolumentValue = "contracts_emoluments_value",
275
+ EmployeeContractCostCenter = "contracts_costCenter",
276
+ EmployeeContractJobSite = "contracts_jobSite",
277
+ EmployeeContractReference = "contracts_reference",
278
+ EmployeeContractsHeader = "employeeContractsHeader",
279
+ EmployeeFtesRegistrationDate = "relationEmployeeFtes_registrationDate",
280
+ EmployeeFtesEmployeesFte = "relationEmployeeFtes_employeesFte",
281
+ EmployeeFtesHeader = "employeeFtesHeader",
282
+ EmployeeGroupIds = "employeeGroups_employeeGroupNr",
283
+ EmploymentContract = "employmentContract",
284
+ EmploymentContractDetailsHeader = "emplContractDetailsHdr",
285
+ EmploymentContractEndDate = "employmentContractEndDate",
286
+ EmploymentContractSpecHdr = "employmentContractSpecHdr",
287
+ EmploymentGeneralHeader = "employmentGeneralHeader",
288
+ EmploymentBranch = "employmentBranch",
289
+ EmployerAbsenceFilesTab = "employerAbsenceFilesTab",
290
+ EmployerAbsenceFilesHeader = "employerAbsenceFilesHeader",
291
+ EmployerAbsenceFilesAllowSidebar = "employerAbsFileAllowSidebar",
292
+ EmployerAbsenceFilesAllowOpen = "employerAbsFileAllowOpen",
293
+ EmployeesTab = "employeesTab",
294
+ EmploymentTab = "employmentTab",
295
+ EndDate = "endDate",
296
+ EstablishmentNumber = "establishmentNumber",
297
+ EventsHeader = "eventsHeader",
298
+ EventsTab = "eventsTab",
299
+ ExceedanceCode = "exceedanceCode",
300
+ ExceedanceCodeSupplier = "exceedanceCodeSupplier",
301
+ ExternalHourlywage = "contracts_salaries_externalRatePerHour",
302
+ ExtraAllowances = "contracts_salaries_extraAllowances",
303
+ ExternalSourcesHeader = "externalSourcesHeader",
304
+ FamilyName = "familyName",
305
+ FinancialCustomerGroup = "financialCustomerGroup",
306
+ FinancialHeader = "financialHeader",
307
+ FinancialOutstanding = "financialOutstanding",
308
+ FinancialSupplierGroup = "financialSupplierGroup",
309
+ FinancialTab = "financialTab",
310
+ FinishedTransactionsHeader = "finishedTransactionsHeader",
311
+ FirstName = "firstName",
312
+ ForgetMeButton = "forgetMeButton",
313
+ FunctionHeader = "functionHeader",
314
+ FunctionLoadPercentage = "contracts_funcLoadPercentage",
315
+ Gender = "gender",
316
+ GeneralHeader = "generalHeader",
317
+ GeneralTab = "generalTab",
318
+ GoodsInLayoutLov = "goodsInLayoutLov",
319
+ GoogleAddressAutoComplete = "googleAddressAutoComplete",
320
+ GroupOrders = "groupOrders",
321
+ CollateOrderForms = "collateOrderForms",
322
+ H3dDistId = "h3dDistId",
323
+ HardwareBackupKind = "hardwareBackupKind",
324
+ HardwareContractAimedResponseTime = "hardwareContractAimedResponseTime",
325
+ HardwareContractArticle = "hardwareContractArticle",
326
+ HardwareContractDescription = "hardwareContractDescription",
327
+ HardwareContractEndDate = "hardwareContractEndDate",
328
+ HardwareContractMaintenanceFee = "hardwareContractMaintenanceFee",
329
+ HardwareContractMaxResponseTime = "hardwareContractMaxResponseTime",
330
+ HardwareContractMaxSupportTime = "hardwareContractMaxSupportTime",
331
+ HardwareContractRate = "hardwareContractRate",
332
+ HardwareContractRemarks = "hardwareContractRemarks",
333
+ HardwareContractStartDate = "hardwareContractStartDate",
334
+ HardwareContractType = "hardwareContractType",
335
+ HardwareDeliveredBy = "hardwareDeliveredBy",
336
+ HardwareDeliveryDate = "hardwareDeliveryDate",
337
+ HardwareIpIntern = "hardwareIpIntern",
338
+ HardwareOperatingSystem = "hardwareOperatingSystem",
339
+ HardwareProduct = "hardwareProduct",
340
+ HardwareProductBlocked = "hardwareProductBlocked",
341
+ HardwareProductValue = "hardwareProductValue",
342
+ HardwareSerialNo = "hardwareSerialNo",
343
+ HardwareSerialNoAdd = "hardwareSerialNoAdd",
344
+ HardwareSerialNoAmount = "hardwareSerialNoAmount",
345
+ HardwareSerialNoCondition = "hardwareSerialNoCondition",
346
+ HardwareSerialNoDescription = "hardwareSerialNoDescription",
347
+ HardwareSerialNoHeader = "hardwareSerialNoHeader",
348
+ HardwareSerialNoPurchaseDate = "hardwareSerialNoPurchaseDate",
349
+ HardwareSerialRemoveButton = "hardwareSerialRemoveButton",
350
+ HolidayDays = "contracts_salaries_holidays",
351
+ HolidayMoney = "contracts_salaries_holidayAllowancePercentage",
352
+ IdentificationDocument = "identifications_document",
353
+ IdentificationExpiryDate = "identifications_expiryDate",
354
+ IdentificationHeader = "identificationHeader",
355
+ IdentificationIssuedBy = "identifications_issuedBy",
356
+ IdentificationIssuedDate = "identifications_issuedDate",
357
+ IdentificationNumber = "identifications_identNumber",
358
+ IdentificationType = "identifications_identType",
359
+ Initials = "initials",
360
+ InsuredInterestContractNumber = "insuredInterests_contractNumber",
361
+ InsuredInterestsHeader = "insuredInterestsHeader",
362
+ InsuredInterestSupplierId = "insuredInterests_supplierId",
363
+ InsuredInterestType = "insuredInterests_type",
364
+ InternalConnection = "internalConnectionId",
365
+ InternalHourlyWage = "contracts_salaries_internalRatePerHour",
366
+ IntrastatDeclaration = "intrastatDeclaration",
367
+ InvoiceFrequency = "invoiceFrequency",
368
+ InvoiceLayoutLov = "invoiceLayoutLov",
369
+ InvoiceReceiptSpecification = "invoiceReceiptSpecification",
370
+ IsBoardMember = "isBoardMember",
371
+ IsAbsenceSupervisor = "isAbsenceSupervisor",
372
+ IsFixedSchedule = "contracts_salaries_isFixedSchedule",
373
+ IsWeekendShifts = "contracts_salaries_isWeekendShifts",
374
+ Job = "job",
375
+ JobCategory = "contracts_jobCategoryId",
376
+ JobCode = "contracts_job",
377
+ JobTitle = "contracts_jobTitle",
378
+ KpiHeader = "kpiHeader",
379
+ KpiOutstanding = "kpiOutstanding",
380
+ KPITab = "kpiTab",
381
+ KpiTotalTurnover = "kpiTotalTurnover",
382
+ LaborExperts = "laborExperts",
383
+ LaborExpertsHeader = "laborExpertsHeader",
384
+ Language = "language",
385
+ LengthenedDeliveryLayoutLov = "lengthenedDeliveryLayoutLov",
386
+ MailingCodeIds = "mailingCodes_mailingCode",
387
+ ManageDashboard = "manageDashboard",
388
+ ManagedDepartment = "managedDepartments_departmentRelationId",
389
+ ManagedDepartmentsHeader = "managedDepartmentsHeader",
390
+ MarginMinimum = "marginMinimum",
391
+ MaritalStatus = "maritalStatus",
392
+ MarketingBasicDataHeader = "marketingBasicDataHeader",
393
+ MarketingRegistrationHeader = "marketingRegistrationHeader",
394
+ MarketingPriceListsHeader = "marketingPriceListsHeader",
395
+ MarketingPriceListAddButton = "marketingPriceListAddButton",
396
+ MarketingPriceListRemoveButton = "marketingPriceListRemoveButton",
397
+ MarketingPriceList = "marketingPriceList",
398
+ MarketingPriceListPriority = "marketingPriceListPriority",
399
+ MarketingPriceListDescription = "marketingPriceListDescription",
400
+ MarketingPriceListStartDate = "marketingPriceListStartDate",
401
+ MarketingPriceListEndDate = "marketingPriceListEndDate",
402
+ MarketingTab = "marketingTab",
403
+ MedicalOfficerHeader = "medicalOfficerHeader",
404
+ MedicalOfficers = "medicalOfficers",
405
+ MemberNr = "memberNr",
406
+ Nationality = "nationality",
407
+ NewRelAddressCity = "newRelAddressCity",
408
+ NewRelAddressCountry = "newRelAddressCountry",
409
+ NewRelAddressHouseNo = "newRelAddressHouseNo",
410
+ NewRelAddressHouseNoAddition = "newRelAddressHouseNoAddition",
411
+ NewRelAddressPostalCode = "newRelAddressPostalCode",
412
+ NewRelAddressStreetName = "newRelAddressStreetName",
413
+ NewRelBranchCompanyNumber = "newRelBranchCompanyNumber",
414
+ NewRelCompanyType = "newRelCompanyType",
415
+ NewRelCurrencyCode = "newRelCurrencyCode",
416
+ NewRelEmail = "newRelEmail",
417
+ NewRelEmployer = "newRelEmployer",
418
+ NewRelEmploymentStartDate = "newRelEmploymentStartDate",
419
+ NewRelFamilyName = "newRelFamilyName",
420
+ NewRelFirstName = "newRelFirstName",
421
+ NewRelGender = "newRelGender",
422
+ NewRelDateOfBirth = "newRelDateOfBirth",
423
+ NewRelGoogleAddressAutoCompl = "newRelGoogleAddressAutoComplete",
424
+ NewRelGroupOrders = "newRelGroupOrders",
425
+ NewRelHeader = "newRelHeader",
426
+ NewRelInitials = "newRelInitials",
427
+ NewRelIntrastatDeclaration = "newRelIntrastatDeclaration",
428
+ NewRelJob = "newRelJob",
429
+ NewRelRelationStatus = "newRelRelationStatus",
430
+ NewRelPackageStickers = "newRelPackageStickers",
431
+ NewRelPhoneNumber = "newRelPhoneNumber",
432
+ NewRelPriceType = "newRelPriceType",
433
+ NewRelSupplierType = "newRelSupplierType",
434
+ NewRelTab = "newRelTab",
435
+ NewRelType = "newRelType",
436
+ NewRelUseGoogle = "newRelUseGoogle",
437
+ NewRelVatCode = "newRelVatCode",
438
+ NewRelVatPayment = "newRelVatPayment",
439
+ NotitionDescription = "notitions_description",
440
+ NotitionDisplayType = "notitions_display",
441
+ NotitionMemo = "notitions_memo",
442
+ NotitionsHeader = "notitionsHeader",
443
+ NumberInvoices = "numberInvoices",
444
+ NumberOfChildren = "numberOfChildren",
445
+ OffsetAccountAdminId = "offsetAccounts_adminId",
446
+ OffsetAccountOffset = "offsetAccounts_offset",
447
+ OffsetAccountsHeader = "offsetAccountsHeader",
448
+ OrderCode = "orderCode",
449
+ OrderConfirmationLayoutLov = "orderConfirmationLayoutLov",
450
+ OrderReceiptLayoutLov = "orderReceiptLayoutLov",
451
+ OrganisAddrEmplGoogleAutoCompl = "viewOnly_organisationEmplAddrGoogleAutoComplete",
452
+ OrganisAddrGoogleAutoCompl = "viewOnly_organisationsAddrGoogleAutoComplete",
453
+ OrganisAddrHouseNoAddition = "contactOrganizations_addressDTO_houseNoAddition",
454
+ OrganisationMailAddress = "contactOrganizations_mailAddress",
455
+ OrganisationEmplAddrCity = "employeeOfOrganisations_addressDTO_city",
456
+ OrganisationEmplAddrCountry = "employeeOfOrganisations_addressDTO_countryId",
457
+ OrganisationEmplAddrHouseNo = "employeeOfOrganisations_addressDTO_houseNo",
458
+ OrganisationEmplAddrPostalCode = "employeeOfOrganisations_addressDTO_postalCode",
459
+ OrganisationEmplAddrStreetName = "employeeOfOrganisations_addressDTO_streetName",
460
+ OrganisationEmplAddrUseGoogle = "viewOnly_organisationEmplAddrUseGoogle",
461
+ OrganisationEmplMailAddress = "employeeOfOrganisations_mailAddress",
462
+ OrganisationEmplHeader = "organisationEmplHeader",
463
+ OrganisationEmplName = "employeeOfOrganisations_familyName",
464
+ OrganisationEmplPhoneNumber = "employeeOfOrganisations_phoneNumber",
465
+ OrganisationEmplReferenceTypes = "employeeOfOrganisations_referenceTypeIds",
466
+ OrganisationName = "contactOrganizations_familyName",
467
+ OrganisationPhoneNumber = "contactOrganizations_phoneNumber",
468
+ OrganisationReferenceTypes = "contactOrganizations_referenceTypeIds",
469
+ OrganisationsAddrCity = "contactOrganizations_addressDTO_city",
470
+ OrganisationsAddrCountry = "contactOrganizations_addressDTO_countryId",
471
+ OrganisationsAddrHouseNo = "contactOrganizations_addressDTO_houseNo",
472
+ OrganisationsAddrPostalCode = "contactOrganizations_addressDTO_postalCode",
473
+ OrganisationsAddrStreetName = "contactOrganizations_addressDTO_streetName",
474
+ OrganisationsAddrUseGoogle = "viewOnly_organisationsAddrUseGoogle",
475
+ OrganisationsHeader = "organisationsHeader",
476
+ OrganisationUnitCode = "organisationUnitCode",
477
+ OrganisEmplAddrHouseNoAddition = "employeeOfOrganisations_addressDTO_houseNoAddition",
478
+ OwnRiskEndDate = "ownRisks_endDate",
479
+ OwnRiskHeader = "ownRiskHeader",
480
+ OwnRiskIsRiskTaker = "ownRisks_isRiskTaker",
481
+ OwnRiskStartDate = "ownRisks_startDate",
482
+ OwnRiskType = "ownRisks_type",
483
+ PackageStickers = "packageStickers",
484
+ ParentRelationHeader = "parentRelationHeader",
485
+ ParentRelationId = "parentRelationId",
486
+ PartTimeFactor = "contracts_salaries_partTimeFactorPercentage",
487
+ Password = "password",
488
+ PaymentCondition = "paymentCondition",
489
+ PaymentMethod = "paymentMethod",
490
+ PaymentSpecificationLayoutLov = "paymentSpecificationLayoutLov",
491
+ PersonMailAddress = "contacts_mailAddress",
492
+ PersonFirstName = "contacts_firstName",
493
+ PersonInitials = "contacts_initials",
494
+ PersonLastName = "contacts_familyName",
495
+ PersonPhoneNumber = "contacts_phoneNumber",
496
+ PersonReferenceTypes = "contacts_referenceTypeIds",
497
+ PersonsAddrCity = "contacts_addressDTO_city",
498
+ PersonsAddrCountry = "contacts_addressDTO_countryId",
499
+ PersonsAddrGoogleAutoComplete = "viewOnly_personsAddrGoogleAutoComplete",
500
+ PersonsAddrHouseNo = "contacts_addressDTO_houseNo",
501
+ PersonsAddrHouseNoAddition = "contacts_addressDTO_houseNoAddition",
502
+ PersonsAddrPostalCode = "contacts_addressDTO_postalCode",
503
+ PersonsAddrStreetName = "contacts_addressDTO_streetName",
504
+ PersonsAddrUseGoogle = "viewOnly_personsAddrUseGoogle",
505
+ PersonsHeader = "personsHeader",
506
+ PickUpReceiptLayoutLov = "pickUpReceiptLayoutLov",
507
+ Prefix = "prefix",
508
+ PriceType = "priceType",
509
+ RelationStatus = "relationStatus",
510
+ Priority = "priority",
511
+ PrivacyHeader = "privacyHeader",
512
+ Provision = "provision",
513
+ PurchasingOrganization = "purchasingOrganization",
514
+ QuotationLayoutLov = "quotationLayoutLov",
515
+ Ranges = "ranges",
516
+ ReasonEndEmployment = "reasonEndEmployment",
517
+ ReceiptLayoutLov = "receiptLayoutLov",
518
+ RelationNumber = "relationNumber",
519
+ RelationObserverId = "observers_observerRelationId",
520
+ RelationObserverDateIn = "observers_dateIn",
521
+ RelationObserverDateOut = "observers_dateOut",
522
+ RelationObserverHeader = "relationObserverHeader",
523
+ RelmanSidebar = "relmanSidebar",
524
+ RelmanSidebarButton = "relmanSidebarButton",
525
+ RememberedDevicesHeader = "rememberedDevicesHeader",
526
+ ReminderDeliveryTimeLayoutLov = "reminderDeliveryTimeLayoutLov",
527
+ ReminderLayoutLov = "reminderLayoutLov",
528
+ ReminderOrderReceiptLayoutLov = "reminderOrderReceiptLayoutLov",
529
+ RemoveAccountManagerButton = "removeAccountManagerButton",
530
+ RemoveBankAccountButton = "removeBankAccountButton",
531
+ RemoveBranchAdministrationBttn = "removeBranchAdministrationBttn",
532
+ RemoveBranchLedgerWarehButton = "removeBranchLedgerWarehButton",
533
+ RemoveBranchWarehouseButton = "removeBranchWarehouseButton",
534
+ RemoveCaseManagerButton = "removeCaseManagerButton",
535
+ RemoveCaseManagerTDButton = "removeCaseManagerTDButton",
536
+ RemoveConnectionButton = "removeConnectionButton",
537
+ RemoveConsultantButton = "removeConsultantButton",
538
+ RemoveConsultDoctorButton = "removeConsultDoctorButton",
539
+ RemoveContactCustomerButton = "removeContactCustomerButton",
540
+ RemoveContactEmployeeButton = "removeContactEmployeeButton",
541
+ RemoveContactMomentButton = "removeContactMomentButton",
542
+ RemoveContactOptionButton = "removeContactOptionButton",
543
+ RemoveAddressContactOptionButton = "removeAddressContactOptButton",
544
+ RemoveDepartmentButton = "removeDepartmentButton",
545
+ RemoveDocumentButton = "removeDocumentButton",
546
+ RemoveEducationButton = "removeEducationButton",
547
+ RemoveEmolumentButton = "removeEmolumentButton",
548
+ RemoveEmployeeContractButton = "removeEmployeeContractButton",
549
+ removeEmployeeFteBttn = "removeEmployeeFteBttn",
550
+ RemoveHardwareButton = "removeHardwareButton",
551
+ RemoveIdentificationButton = "removeIdentificationButton",
552
+ RemoveInsuredInterestButton = "removeInsuredInterestButton",
553
+ RemoveLaborExpertButton = "removeLaborExpertButton",
554
+ RemoveManagedDepartmentBttn = "removeManagedDepartmentBttn",
555
+ RemoveMedicalOfficerButton = "removeMedicalOfficerButton",
556
+ RemoveNotitionButton = "removeNotitionButton",
557
+ RemoveOffsetAccountButton = "removeOffsetAccountButton",
558
+ RemoveOrganisationButton = "removeOrganisationButton",
559
+ RemoveOrganisationEmplButton = "removeOrganisationEmplButton",
560
+ RemoveOwnRiskButton = "removeOwnRiskButton",
561
+ RemovePersonButton = "removePersonButton",
562
+ RemoveRelationButton = "removeRelationButton",
563
+ RemoveRelObserverButton = "removeRelObserverButton",
564
+ RemoveRememberedDeviceBttn = "removeRememberedDeviceBttn",
565
+ RemoveSalaryDataButton = "removeSalaryDataButton",
566
+ RemoveSalaryDataDocBttn = "removeSalaryDataDocBttn",
567
+ RemoveServiceButton = "removeServiceButton",
568
+ RemoveServiceProviderButton = "removeServiceProviderButton",
569
+ RemoveSkillButton = "removeSkillButton",
570
+ RemoveSoftwareButton = "removeSoftwareButton",
571
+ RemoveStaffDoctorButton = "removeStaffDoctorButton",
572
+ RemoveWageTaxNumberButton = "removeWageTaxNumberButton",
573
+ RepeatPassword = "repeatPassword",
574
+ ResetPassword = "resetPassword",
575
+ RiskProfile = "riskProfileId",
576
+ RiskProfileHeader = "riskProfileHeader",
577
+ SalaryAmount = "contracts_salaries_salaryAmount",
578
+ SalaryCurrency = "contracts_salaries_salaryCurrencyId",
579
+ SalaryDataDocumentsHeader = "salaryDataDocumentsHeader",
580
+ SalaryDataHeader = "salaryDataHeader",
581
+ SalaryHoursPerWeek = "contracts_salaries_standWorkingHoursPerWeek",
582
+ SalaryPeriod = "contracts_salaries_payFrequency",
583
+ SalaryReasonEndDate = "contracts_salaries_reasonEndDate",
584
+ SalarySpecificationHeader = "salarySpecificationHeader",
585
+ SalaryStartDate = "contracts_salaries_startDate",
586
+ SbiCode = "standardDutchCompanyDivision",
587
+ Schedule = "contracts_salaries_schedule",
588
+ ScheduleExplanation = "contracts_salaries_scheduleExplanation",
589
+ SearchAddress = "addresses_searchAddress",
590
+ SegmentationHeader = "segmentationHeader",
591
+ SendsConfirmations = "sendsConfirmations",
592
+ ServDelAddServProvButton = "servDel_AddServProvButton",
593
+ ServDelRemoveServProvButton = "servDel_RemoveServProvButton",
594
+ ServDelServiceProviderEndDate = "servDel_ServiceProviderEndDate",
595
+ ServDelServiceProvidersHeader = "servDel_ServiceProvidersHeader",
596
+ ServDelServProvContractNr = "servDel_ServProvContractNr",
597
+ ServDelServProvExternal = "servDel_ServProvExternal",
598
+ ServDelServProvRefNr = "servDel_ServProvRefNr",
599
+ ServDelServProvRegistrNr = "servDel_ServProvRegistrNr",
600
+ ServDelServProvStartDate = "servDel_ServProvStartDate",
601
+ ServDelServProvSupplierId = "serviceProviders_supplierId",
602
+ ServiceContractAimedResponseTime = "serviceContractAimedResponseTime",
603
+ ServiceContractArticle = "serviceContractArticle",
604
+ ServiceContractDescription = "serviceContractDescription",
605
+ ServiceContractEndDate = "serviceContractEndDate",
606
+ ServiceContractMaintenanceFee = "serviceContractMaintenanceFee",
607
+ ServiceContractMaxResponseTime = "serviceContractMaxResponseTime",
608
+ ServiceContractMaxSupportTime = "serviceContractMaxSupportTime",
609
+ ServiceContractRate = "serviceContractRate",
610
+ ServiceContractRemarks = "serviceContractRemarks",
611
+ ServiceContractStartDate = "serviceContractStartDate",
612
+ ServiceContractType = "serviceContractType",
613
+ ServiceDeliveryRegistrHdr = "serviceDeliveryRegistrHdr",
614
+ ServiceDeliveryTab = "serviceDeliveryTab",
615
+ ServicePeriodSelect = "datePeriodSelect",
616
+ ServiceProduct = "serviceProduct",
617
+ ServiceProductBlocked = "serviceProductBlocked",
618
+ ServiceProductValue = "serviceProductValue",
619
+ ServiceProviderContractNumber = "serviceProviders_contractNumber",
620
+ ServiceProviderEndDate = "serviceProviders_endDate",
621
+ ServiceProviderExternal = "serviceProviders_external",
622
+ ServiceProviderReferenceNumber = "serviceProviders_referenceNumber",
623
+ ServiceProviderRegistrationNr = "serviceProviders_registrationNumber",
624
+ ServiceProvidersHeader = "serviceProvidersHeader",
625
+ ServiceProviderStartDate = "serviceProviders_startDate",
626
+ ServiceProviderSupplierId = "serviceProviders_supplierId",
627
+ ServiceReceiptLayoutLov = "serviceReceiptLayoutLov",
628
+ ServicesHeader = "servicesHeader",
629
+ ServicesTab = "servicesTab",
630
+ ServiceUnion = "union",
631
+ ServiceUnionNr = "unionNr",
632
+ LayoutSettingsHeader = "settingsHeader",
633
+ SettingsTab = "settingsTab",
634
+ ShareDashboard = "shareDashboard",
635
+ SkillCapacityPercentage = "personalSkills_capacity",
636
+ Skills = "personalSkills_skillId",
637
+ SkillsHeader = "skillsHeader",
638
+ SkillsTab = "skillsTab",
639
+ SocialInsuredWage = "contracts_salaries_socialAssuranceSalaryAmount",
640
+ SoftwareAccountAddButton = "softwareAccountAddButton",
641
+ SoftwareAccountDescription = "softwareAccountDescription",
642
+ SoftwareAccountKind = "softwareAccountKind",
643
+ SoftwareAccountPassword = "softwareAccountPassword",
644
+ SoftwareAccountsHeader = "softwareAccountsHeader",
645
+ SoftwareAccountUser = "softwareAccountUser",
646
+ SoftwareApplicationKindId = "softwareApplicationKindId",
647
+ SoftwareApplicationPatchset = "softwareApplicationPatchset",
648
+ SoftwareApplicationVersion = "softwareApplicationVersion",
649
+ SoftwareContractAimedResponseTime = "softwareContractAimedResponseTime",
650
+ SoftwareContractArticle = "softwareContractArticle",
651
+ SoftwareContractDescription = "softwareContractDescription",
652
+ SoftwareContractEndDate = "softwareContractEndDate",
653
+ SoftwareContractMaintenanceFee = "softwareContractMaintenanceFee",
654
+ SoftwareContractMaxResponseTime = "softwareContractMaxResponseTime",
655
+ SoftwareContractMaxSupportTime = "softwareContractMaxSupportTime",
656
+ SoftwareContractRate = "softwareContractRate",
657
+ SoftwareContractRemarks = "softwareContractRemarks",
658
+ SoftwareContractStartDate = "softwareContractStartDate",
659
+ SoftwareContractType = "softwareContractType",
660
+ SoftwareDatabaseVersion = "softwareDatabaseVersion",
661
+ SoftwareMaxAmountUsers = "softwareMaxAmountUsers",
662
+ SoftwareProduct = "softwareProduct",
663
+ SoftwareProductBlocked = "softwareProductBlocked",
664
+ SoftwareProductLicenceDate = "softwareProductLicenceDate",
665
+ SoftwareProductUseSerialNo = "softwareProductUseSerialNo",
666
+ SoftwareProductValue = "softwareProductValue",
667
+ SoftwareRemoveAccountButton = "softwareRemoveAccountButton",
668
+ SoftwareSchema = "softwareSchema",
669
+ SoftwareSchemaName = "softwareSchemaName",
670
+ StaffDoctors = "staffDoctors",
671
+ StaffDoctorsHeader = "staffDoctorsHeader",
672
+ StandardDelivery = "standardDelivery",
673
+ StandardHours = "standardWeeklyWorkingHours",
674
+ StartAndEndHeader = "startAndEndHeader",
675
+ StartDate = "startDate",
676
+ StatisticsGroup = "statisticsGroup",
677
+ StatisticsNr = "statisticsNr",
678
+ StatusBlock = "statusBlock",
679
+ StickerIL = "stickerIL",
680
+ SupplierGroup = "supplierGroup",
681
+ SupplierType = "supplierType",
682
+ TagsAddButton = "tagsAddButton",
683
+ TagsAvailable = "tagsAvailable",
684
+ TagsJoined = "tagsJoined",
685
+ TagsTabHeader = "tagsTabHeader",
686
+ TaxCode = "businessDutchTaxGroupId",
687
+ TaxWage = "contracts_salaries_taxSalaryAmount",
688
+ TimesAndDaysHeader = "timesAndDaysHeader",
689
+ TitleId = "titleId",
690
+ TotalPayroll = "totalPayroll",
691
+ TotalTurnover = "totalTurnover",
692
+ TransactionsHeader = "transactionsHeader",
693
+ TransactionsTab = "transactionsTab",
694
+ TrialInvoiceLayoutLov = "trialInvoiceLayoutLov",
695
+ TurnoverCurrencyCode = "turnoverCurrencyCode",
696
+ TypeField = "type",
697
+ UseGoogle = "useGoogle",
698
+ UserGroup = "userGroupId",
699
+ UserGroupSelect = "userGroupSelect",
700
+ Username = "username",
701
+ UwvRegistrationNumber = "uwvRegistrationNumber",
702
+ ValueHeader = "valueHeader",
703
+ VatCode = "vatCode",
704
+ VatHeader = "vatHeader",
705
+ VatNumber = "vatNumber",
706
+ VatId = "vatId",
707
+ VatPayment = "vatPayment",
708
+ WagePaymentIllness = "contracts_salaries_continuedPaymentPercentage",
709
+ WagePaymentPercentage = "continuedPaymentPercentage",
710
+ WagePerEmployee = "payrollPerEmployee",
711
+ WageTaxNumber = "payrollNumbers_payrollNumber",
712
+ WageTaxNumbersHeader = "wageTaxNumbersHeader",
713
+ WorkOrderLayoutLov = "workOrderLayoutLov",
714
+ WorkPermitEndDate = "workPermitEndDate",
715
+ WorkPermitHeader = "workPermitHeader",
716
+ WorkPermitNumber = "workPermitNumber",
717
+ WorkPermitStartDate = "workPermitStartDate",
718
+ WorkshopReceiptLayoutLov = "workshopReceiptLayoutLov",
719
+ YearsExperience = "personalSkills_yearsOfExperience",
720
+ ImagesHeader = "imagesHeader",
721
+ AddImageButton = "addImageButton",
722
+ RemoveImageButton = "removeImageButton",
723
+ AddByUrlImageButton = "addByUrlImageButton",
724
+ AddNewEmployeeLink = "addNewEmployeeLink",
725
+ GoToAbsenceStatisticsLink = "goToAbsenceStatisticsLink",
726
+ CreatePreventiveAbsenceFileLink = "createPreventiveAbsenceFileLink",
727
+ OpenPreventiveAbsenceFileLink = "openPreventiveAbsenceFileLink",
728
+ PoliciesHeader = "policiesHeader",
729
+ PolicyAddButton = "policyAddButton",
730
+ PolicyInsuranceType = "policyInsuranceType",
731
+ PolicyPolicyNumber = "policyPolicyNumber",
732
+ PolicyOwnRiskType = "policyOwnRiskType",
733
+ PolicyStopLossPercentage = "policyStopLossPercentage",
734
+ PolicyOwnRiskPeriod = "policyOwnRiskPeriod",
735
+ PolicyPeriodDayConvention = "policyPeriodDayConvention",
736
+ PolicyWageType = "policyWageType",
737
+ PolicyNrOfDaysToRegister = "policyNrOfDaysToRegister",
738
+ PolicyOverCoveragePerc = "policyOverCoveragePerc",
739
+ PolicyInFlowRisk = "policyInFlowRisk",
740
+ PolicyOutFlowRisk = "policyOutFlowRisk",
741
+ PolicyInsuranceCompany = "policyInsuranceCompany",
742
+ PolicyEmployeeMaxInsureAmt = "policyEmployeeMaxInsureAmt",
743
+ PolicyDgaInsured = "policyDgaInsured",
744
+ PolicyStartDate = "policyStartDate",
745
+ PolicyEndDate = "policyEndDate",
746
+ ChildOrganizationsHeader = "childOrganizationsHeader",
747
+ ChildOrganizationFamilyName = "childOrganizations_familyName",
748
+ CreateServiceByOrder = "createServiceByOrder",
749
+ CreateNewServiceButton = "createNewServiceButton",
750
+ ServicesGridTransNr = "servicesGridTransNr",
751
+ ServicesGridServicePriority = "servicesGridServicePriority",
752
+ ServicesGridSourceDocId = "servicesGridSourceDocId",
753
+ ServicesGridServiceReport = "servicesGridServiceReport",
754
+ ServicesGridProduct = "servicesGridProduct",
755
+ ServicesGridCreatedBy = "servicesGridExecName",
756
+ ServicesGridTransDate = "servicesGridTransDate",
757
+ ServicesGridServiceStatus = "servicesGridServiceStatus",
758
+ ServicesGridOpenCompleted = "servicesGridOpenCompleted",
759
+ ServicesGridTransitionDate = "servicesGridTransitionDate",
760
+ TransactionsTransactionNr = "transactionsTransactionNr",
761
+ TransactionsMatchingInvoice = "transactionsMatchingInvoice",
762
+ TransactionsTransactionDate = "transactionsTransactionDate",
763
+ TransactionsCurrencyId = "transactionsCurrencyId",
764
+ TransactionsOrderTotalIncl = "transactionsOrderTotalIncl",
765
+ TransactionsPaidDown = "transactionsPaidDown",
766
+ TransactionsToPayDown = "transactionsToPayDown",
767
+ TransactionsStatus = "transactionsStatus",
768
+ TransactionsRelReference = "transactionsRelReference",
769
+ TransactionsOwnReference = "transactionsOwnReference",
770
+ CollectiveSalaryHeader = "collectiveSalaryHeader",
771
+ AddCollectiveSalaryButton = "addCollectiveSalaryButton",
772
+ RemoveCollectiveSalaryButton = "removeCollectiveSalaryButton",
773
+ AddByUrlCollectiveSalaryButton = "addByUrlCollectiveSalaryButton",
774
+ GoToCollectiveSalaryLink = "goToCollectiveSalaryLink",
775
+ TextTagsHeader = "textTagsHeader",
776
+ ImageTagsHeader = "imageTagsHeader",
777
+ TextDocumentAddTagsButton = "txtDocumentAddTagsButton",
778
+ TextDocumentDescription = "txtDocumentDescription",
779
+ TextDocumentDownloadable = "txtDocumentDownloadable",
780
+ TextDocumentPublishTo = "txtDocumentPublishTo",
781
+ ImageDocumentAddTagsButton = "imgDocumentAddTagsButton",
782
+ ImageDocumentDescription = "imgDocumentDescription",
783
+ ImageDocumentAttachNotification = "imgDocumentAttachNotification",
784
+ ImageDocumentDisplayType = "imgDocumentDisplayType",
785
+ ImageDocumentStoreGroups = "imgDocumentStoreGroups",
786
+ ImageDocumentPublishTo = "imgDocumentPublishTo",
787
+ SlaHardwareProductHeader = "slaHardwareProductHeader",
788
+ SlaHardwareHardwareHeader = "slaHardwareHardwareHeader",
789
+ SlaHardwareDetailsHeader = "slaHardwareDetailsHeader",
790
+ SlaSoftwareProductHeader = "slaSoftwareProductHeader",
791
+ SlaSoftwareSoftwareHeader = "slaSoftwareSoftwareHeader",
792
+ SlaSoftwareDetailsHeader = "slaSoftwareDetailsHeader",
793
+ SlaServicesProductHeader = "slaServicesProductHeader",
794
+ SlaServicesDetailsHeader = "slaServicesDetailsHeader",
795
+ ContractsHardwareGrid = "contractsHardwareGrid",
796
+ ContractsHwGridProdDescr = "contractsHwGridProdDescr",
797
+ ContractsHwGridCharge = "contractsHwGridCharge",
798
+ ContractsHwGridSerialNrs = "contractsHwGridSerialNrs",
799
+ ContractsHwGridMaxSuppTime = "contractsHwGridMaxSuppTime",
800
+ ContractsHwGridBlocked = "contractsHwGridBlocked",
801
+ ContractsHwGridContractNr = "contractsHwGridContractNr",
802
+ ContractsHwGridContractType = "contractsHwGridContractType",
803
+ ContractsHwGridDescr = "contractsHwGridDescr",
804
+ ContractsHwGridProduct = "contractsHwGridProduct",
805
+ ContractsHwGridProdValue = "contractsHwGridProdValue",
806
+ ContractsHwGridIpAddr = "contractsHwGridIpAddr",
807
+ ContractsHwGridDelivDate = "contractsHwGridDelivDate",
808
+ ContractsHwGridDelivByNr = "contractsHwGridDelivByNr",
809
+ ContractsHwGridDelivByCol = "contractsHwGridDelivByCol",
810
+ ContractsHwGridOS = "contractsHwGridOS",
811
+ ContractsHwGridBackupKind = "contractsHwGridBackupKind",
812
+ ContractsHwGridIsActive = "contractsHwGridIsActive",
813
+ ContractsHwGridStartDate = "contractsHwGridStartDate",
814
+ ContractsHwGridEndDate = "contractsHwGridEndDate",
815
+ ContractsSoftwareGrid = "contractsSoftwareGrid",
816
+ ContractsSwGridProduct = "contractsSwGridProduct",
817
+ ContractsSwGridProdDescr = "contractsSwGridProdDescr",
818
+ ContractsSwGridCharge = "contractsSwGridCharge",
819
+ ContractsSwGridSerialNrs = "contractsSwGridSerialNrs",
820
+ ContractsSwGridMaxSuppTime = "contractsSwGridMaxSuppTime",
821
+ ContractsSwGridBlocked = "contractsSwGridBlocked",
822
+ ContractsSwGridApplication = "contractsSwGridApplication",
823
+ ContractsSwGridContractNr = "contractsSwGridContractNr",
824
+ ContractsSwGridContractType = "contractsSwGridContractType",
825
+ ContractsSwGridDescr = "contractsSwGridDescr",
826
+ ContractsSwGridProdValue = "contractsSwGridProdValue",
827
+ ContractsSwGridSerialNr = "contractsSwGridSerialNr",
828
+ ContractsSwGridVersion = "contractsSwGridVersion",
829
+ ContractsSwGridPatchSet = "contractsSwGridPatchSet",
830
+ ContractsSwGridMaxUsers = "contractsSwGridMaxUsers",
831
+ ContractsSwGridDBVersion = "contractsSwGridDBVersion",
832
+ ContractsSwGridSchema = "contractsSwGridSchema",
833
+ ContractsSwGridSchemaName = "contractsSwGridSchemaName",
834
+ ContractsSwGridLicenseDate = "contractsSwGridLicenseDate",
835
+ ContractsSwGridIsActive = "contractsSwGridIsActive",
836
+ ContractsSwGridStartDate = "contractsSwGridStartDate",
837
+ ContractsSwGridEndDate = "contractsSwGridEndDate",
838
+ ContractsConnectionsGrid = "contractsConnectionsGrid",
839
+ ContractsConnsGridProdDescr = "contractsConnsGridProdDescr",
840
+ ContractsConnsGridDescr = "contractsConnsGridDescr",
841
+ ContractsConnsGridProduct = "contractsConnsGridProduct",
842
+ ContractsConnsGridIpAddr = "contractsConnsGridIpAddr",
843
+ ContractsConnsGridConnKind = "contractsConnsGridConnKind",
844
+ ContractsServiceGrid = "contractsServiceGrid",
845
+ ContractsSvcGridProdDescr = "contractsSvcGridProdDescr",
846
+ ContractsSvcGridCharge = "contractsSvcGridCharge",
847
+ ContractsSvcGridBlocked = "contractsSvcGridBlocked",
848
+ ContractsSvcGridDescr = "contractsSvcGridDescr",
849
+ ContractsSvcGridProduct = "contractsSvcGridProduct",
850
+ ContractsSvcGridMaxSuppTime = "contractsSvcGridMaxSuppTime",
851
+ ContractsSvcGridProdValue = "contractsSvcGridProdValue",
852
+ ContractsSvcGridContrNr = "contractsSvcGridContrNr",
853
+ ContractsSvcGridContrType = "contractsSvcGridContrType",
854
+ ContractsSvcGridIsActive = "contractsSvcGridIsActive",
855
+ ContractsSvcGridStartDate = "contractsSvcGridStartDate",
856
+ ContractsSvcGridEndDate = "contractsSvcGridEndDate"
857
+ }