Skip to content

Split first and lastname in the processed solutions #252

@Julian466

Description

@Julian466

Problem

Currently, the employees field in processed solutions stores employee names as a single string in the name field. This makes it difficult to properly display and format names in the web interface.

Current Structure

{
  "employees": [
    {
      "name": "Max Mustermann"
    }
  ]
}

Proposed Solution

Split the name field into separate firstName and lastName fields to enable better formatting and display options in the web frontend.

Expected Structure

{
  "employees": [
    {
      "firstName": "Max",
      "lastName": "Mustermann"
    }
  ]
}

Benefits

  • Improved name display flexibility (e.g., "Mustermann, M." or "Max M.")
  • Better sorting capabilities by last name
  • Consistent name formatting across the web interface

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions