add a space beetween first name and last name (#49870)

This commit is contained in:
Emmanuel Cazenave 2021-01-05 14:59:34 +01:00
parent 790f99751d
commit 3bb27bf21f
1 changed files with 1 additions and 1 deletions

View File

@ -686,7 +686,7 @@ query getDossiers($demarcheNumber: Int!, $createdSince: ISO8601DateTime, $first:
sequence = "%s-%s" % (code_region, form['display_id'])
period = 'MARS-VOLET2'
siren = form_fields['siren']
nom1 = get_data(form_fields, 'nom_responsable') + get_data(form_fields, 'prenom_responsable')
nom1 = get_data(form_fields, 'nom_responsable') + ' ' + get_data(form_fields, 'prenom_responsable')
nom2 = ''
nb_salaries = form_fields.get('nb_salaries', 0)
rue = form_fields['numero_voie']