Fixed vaidation errors for createupdate application API.

This commit is contained in:
piyushkag
2025-01-23 13:16:11 +05:30
parent 1101fe277e
commit 45aaf4f667
2 changed files with 24 additions and 1 deletions

View File

@@ -399,7 +399,7 @@ public class FormDao {
String fieldId = contentResponseBean.getId();
String fieldLabel=contentResponseBean.getLabel();
Object object=formFieldMap.get(fieldId);
String value =Utils.convertToString(object);
String value =Utils.convertToStringForFormFieldValue(object);
if(value == null && isApplicationFormExist) {
return;
}