M2.py 35.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
#############################################################################
#
# Copyright (c) 2002-2005 Nexedi SARL and Contributors. All Rights Reserved.
#                         Jean-Paul Smets-Solanes <jp@nexedi.com>
#                         Kevin Deldycke <kevin_AT_nexedi_DOT_com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#
##############################################################################


class M2:
  """
    M2 properties and categories
  """

  _properties = (
    # M2 properties
    { 'id'         : 'new_corporate_registration_code'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
39
    , 'description': 'Head Office RCCM'
40 41 42 43
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'activity_free_text'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
44
    , 'description': 'Activities'
45 46 47 48
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'auditor_first_no_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
49
    , 'description': 'No'
50 51 52 53
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'auditor_first_yes_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
54
    , 'description': 'Yes'
55 56 57 58
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'activities_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
59
    , 'description': 'Activities'
60 61 62 63 64 65 66 67 68
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'activity_check'
    , 'description': 'Check if there is more activities in a m2 bis sub form'
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'added_activities'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
69
    , 'description': 'Activities added'
70 71 72 73 74 75 76 77 78
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'added_activities_date'
    , 'description': 'Date'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'auditor_second_no_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
79
    , 'description': 'No'
80 81 82 83
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'auditor_second_yes_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
84
    , 'description': 'Yes'
85 86 87 88
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'buyers_address'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
89
    , 'description': 'Old Address'
90 91 92 93 94 95 96 97 98
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'buyers_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'buyers_name'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
99
    , 'description': 'Buyers'
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'default_address_city'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'applicant'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'capital_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'characteristics_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
117
    , 'description': 'Characteristics'
118 119 120 121
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'closing_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
122
    , 'description': 'Closing'
123 124 125 126 127 128 129 130 131 132 133 134 135 136
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'closed_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'commercial_name_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'company_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
137
    , 'description': 'Company'
138 139 140 141 142 143 144 145 146 147 148 149 150 151
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'old_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'deleted_activities'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
152
    , 'description': 'Activities deleted'
153 154 155 156 157 158 159 160 161
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'deleted_activities_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'dissolved_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
162
    , 'description': 'dissolve'
163 164 165 166
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'beginning_date'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
167
    , 'description': 'Beginning Date'
168 169 170 171 172 173 174 175
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'rccm_check'
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'other_check_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
176
    , 'description': 'Other'
177 178 179 180
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'other_companies'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
181
    , 'description': 'Second company'
182 183 184 185 186 187 188 189
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'other_companies_rccm'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'oui_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
190
    , 'description': 'Yes'
191 192 193 194
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'purchase_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
195
    , 'description': 'Purchase'
196 197 198 199
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'rent_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
200
    , 'description': 'Rent'
201 202 203 204
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'report_number'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
205
    , 'description': 'Report Number'
206 207 208 209
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'place'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
210
    , 'description': 'Place'
211 212 213 214
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'registration_number'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
215
    , 'description': 'Registration Number'
216 217 218 219
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_registration_number'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
220
    , 'description': 'Second Registration Number'
221 222 223 224
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'eight_administrator_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
225
    , 'description': 'Other Info (date and place wedding, marital status ...)'
226 227 228 229
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'eight_administrator_fullname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
230
    , 'description': 'Fullname'
231 232 233 234
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_associate_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
235
    , 'description': 'Other Info (date and place wedding, marital status ...)'
236 237 238 239
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_associate_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
240
    , 'description': 'Firstname'
241 242 243 244
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_associate_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
245
    , 'description': 'Lastname'
246 247 248 249
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_associate_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
250
    , 'description': 'Birthday'
251 252 253 254
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_associate_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
255
    , 'description': 'Birthplace'
256 257 258 259
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_administrator_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
260
    , 'description': 'Other Info (date and place wedding, marital status ...)'
261 262 263 264
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_administrator_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
265
    , 'description': 'Firstname'
266 267 268 269
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_administrator_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
270
    , 'description': 'Lastname'
271 272 273 274
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_administrator_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
275
    , 'description': 'Birthday'
276 277 278 279
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_administrator_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
280
    , 'description': 'Birthplace'
281 282 283 284
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_auditor_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
285
    , 'description': 'Other Info (date and place wedding, marital status ...)'
286 287 288 289
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_auditor_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
290
    , 'description': 'Firstname'
291 292 293 294
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_auditor_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
295
    , 'description': 'Lastname'
296 297 298 299
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_auditor_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
300
    , 'description': 'Birthday'
301 302 303 304
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fifth_auditor_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
305
    , 'description': 'Birthplace'
306 307 308 309 310 311 312 313 314
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_associate_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_associate_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
315
    , 'description': 'Other Info (date and place wedding, marital status ...)'
316 317 318 319
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_associate_fullname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
320
    , 'description': 'Fullname'
321 322 323
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
324 325 326
    { 'id'         : 'first_associate_lastname'
    , 'description': 'Last Name'
    , 'type'       : 'string'
327 328
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
329 330
    { 'id'         : 'first_associate_firstname'
    , 'description': 'first Name'
331 332 333
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
334 335 336 337 338 339
    { 'id'         : 'first_associate_birthday'
    , 'description': 'Birthday'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_associate_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
340
    , 'description': 'Going'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
341 342 343 344
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_associate_going_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
345
    , 'description': 'Going'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
346 347 348
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
349
    { 'id'         : 'first_associate_maintained_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
350
    , 'description': 'Maintained'
351 352 353 354
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_associate_new_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
355
    , 'description': 'New'
356 357 358 359
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_associate_new_quality'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
360
    , 'description': 'New quality'
361 362 363 364
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_associate_old_quality'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
365
    , 'description': 'Old quality'
366 367 368 369
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_associate_modified_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
370
    , 'description': 'Modified'
371 372 373 374 375 376 377 378 379
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_administrator_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_administrator_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
380
    , 'description': 'Other Info (date and place wedding, marital status ...)'
381 382 383 384
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_administrator_fullname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
385
    , 'description': 'Fullname'
386 387 388
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
389 390 391
    { 'id'         : 'first_administrator_lastname'
    , 'description': 'Last Name'
    , 'type'       : 'string'
392 393
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
394 395
    { 'id'         : 'first_administrator_firstname'
    , 'description': 'First Name'
396 397 398
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
399 400 401 402 403 404 405 406 407 408 409
    { 'id'         : 'first_administrator_birthday'
    , 'description': 'Birthday'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_administrator_birthplace'
    , 'description': 'Birthplace'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_administrator_going_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
410
    , 'description': 'Going'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
411 412 413
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
414
    { 'id'         : 'first_administrator_maintained_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
415
    , 'description': 'Maintained'
416 417 418 419
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_administrator_new_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
420
    , 'description': 'New'
421 422 423 424
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_administrator_new_quality'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
425
    , 'description': 'New quality'
426 427 428 429
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_administrator_old_quality'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
430
    , 'description': 'Old quality'
431 432 433 434
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_administrator_modified_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
435
    , 'description': 'Modified'
436 437 438 439 440 441 442 443
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_rccm_check'
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_associate_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
444
    , 'description': 'Other Info (date and place wedding, marital status ...)'
445 446 447 448
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_associate_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
449
    , 'description': 'Firstname'
450 451 452 453
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_associate_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
454
    , 'description': 'Lastname'
455 456 457 458
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_associate_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
459
    , 'description': 'Birthday'
460 461 462 463
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_associate_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
464
    , 'description': 'Birthplace'
465 466 467 468
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_administrator_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
469
    , 'description': 'Firstname'
470 471 472 473
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_administrator_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
474
    , 'description': 'Lastname'
475 476 477 478
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_administrator_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
479
    , 'description': 'Birthday'
480 481 482 483
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_administrator_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
484
    , 'description': 'Birthplace'
485 486 487 488
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_administrator_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
489
    , 'description': 'Other Info (date and place wedding, marital status ...)'
490 491 492 493
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_auditor_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
494
    , 'description': 'Other Info (date and place wedding, marital status ...)'
495 496 497 498
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_auditor_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
499
    , 'description': 'Firstname'
500 501 502 503
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_auditor_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
504
    , 'description': 'Lastname'
505 506 507 508
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_auditor_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
509
    , 'description': 'Birthday'
510 511 512 513
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'fourth_auditor_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
514
    , 'description': 'Birthplace'
515 516 517 518
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'initials'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
519
    , 'description': 'Acronym'
520 521 522 523 524 525 526 527 528 529 530 531 532 533
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'legal_form_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'administrators_check'
    , 'description': 'Dirigeants'
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'modified_added_activities'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
534
    , 'description': 'Activities added'
535 536 537 538
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'modified_deleted_activities'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
539
    , 'description': 'Activities deleted'
540 541 542 543 544 545 546 547 548
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'moral_person_check'
    , 'description': 'Personne Morale'
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'new_address'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
549
    , 'description': 'Address'
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
    , 'type'       : 'string'
    , 'mode'       : 'w'
    }, 
    { 'id'         : 'new_capital'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'new_commercial'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'new_headquarters'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'new_legal_form'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
566
    , 'description': 'Legal Form'
567 568 569 570 571 572 573 574 575 576 577 578 579 580
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'old_capital'
    , 'description': 'Capital'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    }, 
    { 'id'         : 'new_title'
    , 'description': 'New commercial name'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'old_title'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
581
    , 'description': 'New commercial name'
582 583 584 585 586 587 588 589 590
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'old_headquarters'
    , 'description': 'Ancien Siege'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'old_legal_form'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
591
    , 'description': 'Legal Form'
592 593 594 595
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'old_corporate_registration_code'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
596
    , 'description': 'New RCCM'
597 598 599 600
    , 'type'       : 'string'
    , 'mode'       : 'w'
    }, 
    { 'id'         : 'other'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
601
    , 'description': 'Other'
602 603 604 605
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'other_reason'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
606
    , 'description': 'Other'
607 608 609 610 611 612 613 614 615 616 617 618 619
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'registration_date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_associate_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_associate_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
620
    , 'description': 'Other Info (date and place wedding, marital status ...)'
621 622 623 624
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_associate_fullname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
625
    , 'description': 'Fullname'
626 627 628
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
629 630 631 632 633 634 635 636 637 638 639 640 641
    { 'id'         : 'second_associate_lastname'
    , 'description': 'Last Name'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_associate_firstname'
    , 'description': 'First Name'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_associate_birthday'
    , 'description': 'Birthday'
    , 'type'       : 'date'
642 643
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
644 645
    { 'id'         : 'second_associate_birthplace'
    , 'description': 'Birthplace'
646 647 648
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
649
    { 'id'         : 'second_associate_going_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
650
    , 'description': 'Going'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
651 652 653
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
654
    { 'id'         : 'second_associate_maintained_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
655
    , 'description': 'Maintained'
656 657 658 659
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_associate_new_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
660
    , 'description': 'New'
661 662 663 664
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_associate_new_quality'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
665
    , 'description': 'New quality'
666 667 668 669
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_associate_old_quality'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
670
    , 'description': 'Old quality'
671 672 673 674
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_associate_modified_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
675
    , 'description': 'Modified'
676 677 678 679 680 681 682 683 684
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_administrator_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_administrator_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
685
    , 'description': 'Other Info (date and place wedding, marital status ...)'
686 687 688 689
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_administrator_fullname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
690
    , 'description': 'Fullname'
691 692 693
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
694 695 696
    { 'id'         : 'second_administrator_lastname'
    , 'description': 'Last Name'
    , 'type'       : 'string'
697 698
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
699 700
    { 'id'         : 'second_administrator_firstname'
    , 'description': 'First Name'
701 702 703
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
704 705 706 707 708 709 710 711 712 713 714
    { 'id'         : 'second_administrator_birthday'
    , 'description': 'Birthday'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_administrator_birthplace'
    , 'description': 'Birthplace'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_administrator_going_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
715
    , 'description': 'Going'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
716 717 718
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
719
    { 'id'         : 'second_administrator_maintained_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
720
    , 'description': 'Maintained'
721 722 723 724
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_administrator_new_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
725
    , 'description': 'New'
726 727 728 729
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_administrator_new_quality'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
730
    , 'description': 'New quality'
731 732 733 734
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_administrator_old_quality'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
735
    , 'description': 'Old quality'
736 737 738 739
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_administrator_modified_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
740
    , 'description': 'Modified'
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_rccm_check'
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_place'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_registration_date'
    , 'description': 'le'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_signature'
    , 'description': 'Signature'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'seventh_associate_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
768
    , 'description': 'Other Info (date and place wedding, marital status ...)'
769 770 771 772 773
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    {
     'id'         : 'seventh_associate_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
774
    , 'description': 'Firstname'
775 776 777 778
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'seventh_associate_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
779
    , 'description': 'Lastname'
780 781 782 783
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
     { 'id'         : 'seventh_associate_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
784
    , 'description': 'Birthday'
785 786 787 788
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'seventh_associate_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
789
    , 'description': 'Birthplace'
790 791 792 793
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'seventh_administrator_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
794
    , 'description': 'Other Info (date and place wedding, marital status ...)'
795 796 797 798 799
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    {
     'id'         : 'seventh_administrator_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
800
    , 'description': 'Firstname'
801 802 803 804
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'seventh_administrator_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
805
    , 'description': 'Lastname'
806 807 808 809
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'seventh_administrator_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
810
    , 'description': 'Birthday'
811 812 813 814
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'seventh_administrator_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
815
    , 'description': 'Birthplace'
816 817 818 819
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'seventh_auditor_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
820
    , 'description': 'Other Info (date and place wedding, marital status ...)'
821 822 823 824 825
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    {
     'id'         : 'seventh_auditor_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
826
    , 'description': 'Firstname'
827 828 829 830
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'seventh_auditor_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
831
    , 'description': 'Lastname'
832 833 834 835
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'seventh_auditor_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
836
    , 'description': 'Birthday'
837 838 839 840
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'seventh_auditor_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
841
    , 'description': 'Birthplace'
842 843 844 845
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'eighth_associate_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
846
    , 'description': 'Other Info (date and place wedding, marital status ...)'
847 848 849 850 851
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    {
     'id'         : 'eighth_associate_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
852
    , 'description': 'Firstname'
853 854 855 856
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'eighth_associate_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
857
    , 'description': 'Lastname'
858 859 860 861
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
     { 'id'         : 'eighth_associate_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
862
    , 'description': 'Birthday'
863 864 865 866
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'eighth_associate_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
867
    , 'description': 'Birthplace'
868 869 870 871
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'eighth_administrator_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
872
    , 'description': 'Other Info (date and place wedding, marital status ...)'
873 874 875 876 877
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    {
     'id'         : 'eighth_administrator_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
878
    , 'description': 'Firstname'
879 880 881 882
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'eighth_administrator_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
883
    , 'description': 'Lastname'
884 885 886 887
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'eighth_administrator_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
888
    , 'description': 'Birthday'
889 890 891 892
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'eighth_administrator_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
893
    , 'description': 'Birthplace'
894 895 896 897
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'ninth_associate_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
898
    , 'description': 'Other Info (date and place wedding, marital status ...)'
899 900 901 902 903
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    {
     'id'         : 'ninth_associate_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
904
    , 'description': 'Firstname'
905 906 907 908
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'ninth_associate_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
909
    , 'description': 'Lastname'
910 911 912 913
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'ninth_associate_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
914
    , 'description': 'Birthday'
915 916 917 918
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'ninth_associate_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
919
    , 'description': 'Birthplace'
920 921 922 923
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'ninth_administrator_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
924
    , 'description': 'Other Info (date and place wedding, marital status ...)'
925 926 927 928 929
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    {
     'id'         : 'ninth_administrator_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
930
    , 'description': 'Firstname'
931 932 933 934
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'ninth_administrator_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
935
    , 'description': 'Lastname'
936 937 938 939
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'ninth_administrator_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
940
    , 'description': 'Birthday'
941 942 943 944
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'ninth_administrator_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
945
    , 'description': 'Birthplace'
946 947 948 949
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'tenth_associate_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
950
    , 'description': 'Other Info (date and place wedding, marital status ...)'
951 952 953 954 955
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    {
     'id'         : 'tenth_associate_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
956
    , 'description': 'Firstname'
957 958 959 960
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'tenth_associate_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
961
    , 'description': 'Lastname'
962 963 964 965
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'tenth_associate_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
966
    , 'description': 'Birthday'
967 968 969 970
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'tenth_associate_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
971
    , 'description': 'Birthplace'
972 973 974 975
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'tenth_administrator_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
976
    , 'description': 'Other Info (date and place wedding, marital status ...)'
977 978 979 980 981
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    {
     'id'         : 'tenth_administrator_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
982
    , 'description': 'Firstname'
983 984 985 986
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'tenth_administrator_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
987
    , 'description': 'Lastname'
988 989 990 991
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'tenth_administrator_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
992
    , 'description': 'Birthday'
993 994 995 996
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'tenth_administrator_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
997
    , 'description': 'Birthplace'
998 999 1000 1001
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sign'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1002
    , 'description': 'Sign'
1003 1004 1005 1006 1007 1008 1009 1010 1011
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'signature'
    , 'description': 'Signature'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_associate_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1012
    , 'description': 'Other Info (date and place wedding, marital status ...)'
1013 1014 1015 1016
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_associate_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1017
    , 'description': 'Firstname'
1018 1019 1020 1021
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_associate_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1022
    , 'description': 'Lastname'
1023 1024 1025 1026
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_associate_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1027
    , 'description': 'Birthday'
1028 1029 1030 1031
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_associate_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1032
    , 'description': 'Birthplace'
1033 1034 1035 1036
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_administrator_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1037
    , 'description': 'Other Info (date and place wedding, marital status ...)'
1038 1039 1040 1041
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_administrator_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1042
    , 'description': 'Firstname'
1043 1044 1045 1046
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_administrator_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1047
    , 'description': 'Lastname'
1048 1049 1050 1051
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_administrator_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1052
    , 'description': 'Birthday'
1053 1054 1055 1056
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_administrator_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1057
    , 'description': 'Birthplace'
1058 1059 1060 1061
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_auditor_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1062
    , 'description': 'Other Info (date and place wedding, marital status ...)'
1063 1064 1065 1066
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_auditor_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1067
    , 'description': 'Firstname'
1068 1069 1070 1071
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_auditor_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1072
    , 'description': 'Lastname'
1073 1074 1075 1076
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_auditor_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1077
    , 'description': 'Birthday'
1078 1079 1080 1081
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'sixth_auditor_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1082
    , 'description': 'Birthplace'
1083 1084 1085
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1086 1087
    { 'id'         : 'third_associate_firstname'
    , 'description': 'Firstname'
1088 1089 1090
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1091 1092
    { 'id'         : 'third_associate_lastname'
    , 'description': 'Lastname'
1093 1094 1095
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
    { 'id'         : 'third_associate_birthday'
    , 'description': 'Birthday'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'third_associate_birthplace'
    , 'description': 'Birthplace'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'third_associate_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1107
    , 'description': 'Other Info (date and place wedding, marital status ...)'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1108 1109 1110 1111 1112
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    
    
1113
    { 'id'         : 'third_administrator_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1114
    , 'description': 'Other Info (date and place wedding, marital status ...)'
1115 1116 1117 1118
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'third_administrator_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1119
    , 'description': 'Firstname'
1120 1121 1122 1123
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'third_administrator_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1124
    , 'description': 'Lastname'
1125 1126 1127 1128
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'third_administrator_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1129
    , 'description': 'Birthday'
1130 1131 1132 1133
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'third_administrator_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1134
    , 'description': 'Birthplace'
1135 1136 1137 1138
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'third_auditor_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1139
    , 'description': 'Other Info (date and place wedding, marital status ...)'
1140 1141 1142 1143
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'third_auditor_firstname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1144
    , 'description': 'Firstname'
1145 1146 1147 1148
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'third_auditor_lastname'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1149
    , 'description': 'Lastname'
1150 1151 1152 1153
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'third_auditor_birthday'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1154
    , 'description': 'Birthday'
1155 1156 1157 1158
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'third_auditor_birthplace'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1159 1160 1161 1162 1163
    , 'description': 'Birthplace'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_auditor_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1164
    , 'description': 'Other Info (date and place wedding, marital status ...)'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_auditor_firstname'
    , 'description': 'Firstname'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_auditor_lastname'
    , 'description': 'Lastname'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_auditor_birthday'
    , 'description': 'Birthday'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'first_auditor_birthplace'
    , 'description': 'Birthplace'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_auditor_another_info'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1189
    , 'description': 'Other Info (date and place wedding, marital status ...)'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_auditor_firstname'
    , 'description': 'Firstname'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_auditor_lastname'
    , 'description': 'Lastname'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_auditor_birthday'
    , 'description': 'Birthday'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'second_auditor_birthplace'
    , 'description': 'Birthplace'
1210 1211 1212 1213
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'transfer_check'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1214
    , 'description': 'Transfer'
1215 1216 1217 1218
    , 'type'       : 'boolean'
    , 'mode'       : 'w'
    },
    { 'id'         : 'transferred_address'
Thibaut Deheunynck's avatar
Thibaut Deheunynck committed
1219
    , 'description': 'Address'
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
    { 'id'         : 'transferred_date'
    , 'description': 'Date'
    , 'type'       : 'date'
    , 'mode'       : 'w'
    },
    { 'id'         : 'source_reference'
    , 'type'       : 'string'
    , 'mode'       : 'w'
    },
  )