rework ui

This commit is contained in:
verboomp
2026-01-29 15:06:56 +01:00
parent 2587a9c3c8
commit 0918185a6b
4 changed files with 14 additions and 6 deletions

View File

@@ -15,6 +15,6 @@ import marketing.heyday.hartmann.fotodocumentation.rest.jackson.SchemaValidated;
* created: 19 Jan 2026 * created: 19 Jan 2026
*/ */
@Schema(name = "CustomerPictureUpload") @Schema(name = "CustomerPictureUpload")
public record CustomerPictureValue(String username, String pharmacyName, String customerNumber, Date date, String comment, String category, String base64String) implements SchemaValidated { public record CustomerPictureValue(String username, String pharmacyName, String customerNumber, Date date, String zip, String city, String comment, String category, String base64String) implements SchemaValidated {
} }

View File

@@ -24,6 +24,14 @@
"description": "A free text comment field ", "description": "A free text comment field ",
"type": "string" "type": "string"
}, },
"zip": {
"description": "The zip from the customer",
"type": "string"
},
"city": {
"description": "The city from the customer",
"type": "string"
},
"base64String": { "base64String": {
"description": "The Picture content as base64 ", "description": "The Picture content as base64 ",
"type": "string" "type": "string"

File diff suppressed because one or more lines are too long