customer creation now pointing to velocity

This commit is contained in:
2026-05-29 15:13:09 +02:00
parent 77b53a8bf0
commit 0bb63055a9
80 changed files with 1354 additions and 1984 deletions

View File

@@ -26,4 +26,17 @@ public class SettingService {
return false;
}
}
public String getStringSetting(String key) {
try {
Setting setting = settingRepository.findBySettingName(key);
if (setting != null) {
return setting.getSettingValue();
}
return "";
} catch (Exception exception) {
exception.printStackTrace();
return "";
}
}
}