Implemented crud operation for form,form-field and form-template

This commit is contained in:
rajesh
2024-08-28 15:21:54 +05:30
parent 049b53ac46
commit d1bcc36c41
36 changed files with 1235 additions and 1 deletions

View File

@@ -43,8 +43,9 @@ call.created.successfully=Call created successfully.
file.deleted.successfully=File deleted successfully.
document.not.found=Document not found.
document.id.not.found=Document ID not found.
call.created.successfully=Call created successfully.
call.invalid.date=Invalid start or end date.
call.not.found=Call not found.
call.id.not.null=Call id cannot be null.
# Login-related messages
login.successfully=Login successfully.
@@ -57,7 +58,29 @@ invalid_signature=Invalid token.
invalid_login=Invalid username or password.
req_validation_er=Request Validation Error
#Form-related messages
form.not.found=Form not found.
form.created.successfully=Form created successfully.
form.updated.suucessfully=Form updated successfully.
form.deleted.successfully=Form deleted successfully.
form.fetched.successfully=Form fetched successfully.
required.parameter.not.found.for.form=Label, content, or orderNo cannot be null.
form.not.found.for.call.id=Form not found for corresponding call.
#Form-field-related messages
form.field.not.found=Form field not found.
form.field.created.successfully=Form field created successfully.
form.field.updated.suucessfully=Form field updated successfully.
form.field.deleted.successfully=Form field deleted successfully.
form.field.fetched.successfully=Form field fetched successfully.
required.parameter.not.found.for.form.field=Label or definition cannot be null.
#Form-template-related messages
form.template.not.found=Form template not found.
form.template.created.successfully=Form template created successfully.
form.template.updated.suucessfully=Form template updated successfully.
form.template.deleted.successfully=Form template deleted successfully.
form.template.fetched.successfully=Form template fetched successfully.
required.parameter.not.found.for.form.template=Label or content cannot be null.