You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Very simple "ClientContact - and a "Manager / Manages" relationship
on the ClientContact form - configure a manager - and it shows up on the standard list/console as expected
Since the reverse relationship is configured you get the records (cool)
However when you click that configured manager - it properly filters the list - to the person configured - but that person's record is not showing the "Manager" name.
entity ClientContact {
name String required unique
role String required
contactPreference ContactPreference required
email String
phoneNumber String
}
relationship ManyToOne {
// Direction doesn't matter - same issue when reversed as a OneToMany
// This has the name on the form and List - with name Manager
// However when you filter the managers name goes away
ClientContact{Manager(name)} to ClientContact{Manages(name)}
}
The text was updated successfully, but these errors were encountered:
Very simple "ClientContact - and a "Manager / Manages" relationship
on the ClientContact form - configure a manager - and it shows up on the standard list/console as expected
Since the reverse relationship is configured you get the records (cool)
However when you click that configured manager - it properly filters the list - to the person configured - but that person's record is not showing the "Manager" name.
Will attach screen-shots of what I'm seeing
JDL File to create issue:
application {
config {
applicationType monolith
authenticationType jwt
baseName regulatory360
buildTool maven
cacheProvider ehcache
clientFramework angular
clientTheme none
databaseType sql
devDatabaseType h2Disk
enableHibernateCache true
enableSwaggerCodegen false
enableTranslation true
jhipsterVersion "8.7.3"
languages [en, es]
microfrontends []
nativeLanguage en
packageName com.surfcat.admin360
prodDatabaseType postgresql
reactive false
searchEngine false
serviceDiscoveryType false
testFrameworks []
websocket false
withAdminUi true
}
entities *
}
entity ClientContact {
name String required unique
role String required
contactPreference ContactPreference required
email String
phoneNumber String
}
relationship ManyToOne {
// Direction doesn't matter - same issue when reversed as a OneToMany
// This has the name on the form and List - with name Manager
// However when you filter the managers name goes away
ClientContact{Manager(name)} to ClientContact{Manages(name)}
}
The text was updated successfully, but these errors were encountered: