implemented creation of companies

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-08-07 21:07:42 +02:00
parent 5de24db209
commit b127c9fa82
7 changed files with 147 additions and 33 deletions

View File

@@ -137,7 +137,7 @@ public class Company implements Mappable {
switch (key){
case NAME: name = json.getString(NAME); break;
case ADDRESS: address = json.getString(ADDRESS); break;
case FIELD_COURT: court = json.getString(FIELD_COURT);
case FIELD_COURT: court = json.getString(FIELD_COURT); break;
case FIELD_TAX_NUMBER: taxId = json.getString(FIELD_TAX_NUMBER); break;
case FIELD_PHONE: phone = json.getString(FIELD_PHONE); break;
case DECIMAL_SEPARATOR: decimalSeparator = json.getString(DECIMAL_SEPARATOR); break;