@@ -132,6 +132,13 @@ const columns = ref<QTableProps['columns']>([
132132 align: ' left' ,
133133 sortable: true ,
134134 },
135+ {
136+ name: ' inetOrgPerson.employeeNumber' ,
137+ label: ' EmployeeNumber' ,
138+ field : (row : Identity ) => row .inetOrgPerson .employeeNumber ,
139+ align: ' left' ,
140+ sortable: true ,
141+ },
135142 {
136143 name: ' additionalFields.attributes.supann.supannTypeEntiteAffectation' ,
137144 label: ' Affectation' ,
@@ -178,6 +185,7 @@ const columns = ref<QTableProps['columns']>([
178185])
179186const visibleColumns = ref <QTableProps [' visibleColumns' ]>([
180187 ' inetOrgPerson.uid' ,
188+ ' inetOrgPerson.employeeNumber' ,
181189 ' additionalFields.attributes.supann.supannTypeEntiteAffectation' ,
182190 ' envelope.observers.name' ,
183191 ' envelope.assigned.name' ,
@@ -190,6 +198,7 @@ const visibleColumns = ref<QTableProps['visibleColumns']>([
190198])
191199const columnsType = ref ([
192200 { name: ' inetOrgPerson.uid' , type: ' text' },
201+ { name: ' inetOrgPerson.employeeNumber' , type: ' text' },
193202 { name: ' additionalFields.attributes.supann.supannTypeEntiteAffectation' , type: ' text' },
194203 { name: ' envelope.observers.name' , type: ' text' },
195204 { name: ' envelope.assigned.name' , type: ' text' },
0 commit comments