Fehlerkorrekturen
git-svn-id: https://svn.libreccm.org/ccm/trunk@612 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
24f0131056
commit
5f736341cc
|
|
@ -39,7 +39,7 @@ association {
|
||||||
|
|
||||||
ArticleInJournal[0..n] articles = join ct_journal.journal_id
|
ArticleInJournal[0..n] articles = join ct_journal.journal_id
|
||||||
to ct_journal_article_map.journal_id,
|
to ct_journal_article_map.journal_id,
|
||||||
join ct_journal.article_map.article_in_journal_id
|
join ct_journal_article_map.article_in_journal_id
|
||||||
to ct_article_in_journal.article_in_journal_id;
|
to ct_article_in_journal.article_in_journal_id;
|
||||||
|
|
||||||
Integer[0..1] articleOrder = ct_journal_article_map.article_order INTEGER;
|
Integer[0..1] articleOrder = ct_journal_article_map.article_order INTEGER;
|
||||||
|
|
|
||||||
|
|
@ -286,7 +286,7 @@ public class JournalArticlesTable
|
||||||
return label;
|
return label;
|
||||||
} else {
|
} else {
|
||||||
ControlLink link = new ControlLink(
|
ControlLink link = new ControlLink(
|
||||||
(String) SciOrganizationGlobalizationUtil.globalize(
|
(String) PublicationGlobalizationUtil.globalize(
|
||||||
"cms.contenttypes.ui.journal.articles.down").
|
"cms.contenttypes.ui.journal.articles.down").
|
||||||
localize());
|
localize());
|
||||||
return link;
|
return link;
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
*/
|
*/
|
||||||
package com.arsdigita.cms.contenttypes.ui;
|
package com.arsdigita.cms.contenttypes.ui;
|
||||||
|
|
||||||
import com.arsdigita.cms.contenttypes.SciMember;
|
import com.arsdigita.cms.contenttypes.GenericPerson;
|
||||||
import com.arsdigita.cms.ItemSelectionModel;
|
import com.arsdigita.cms.ItemSelectionModel;
|
||||||
import com.arsdigita.cms.contenttypes.SciDepartment;
|
import com.arsdigita.cms.contenttypes.SciDepartment;
|
||||||
|
|
||||||
|
|
@ -42,7 +42,7 @@ public class SciDepartmentMemberAddForm
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String getPersonType() {
|
protected String getPersonType() {
|
||||||
return SciMember.class.getName();
|
return GenericPerson.class.getName();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
*/
|
*/
|
||||||
package com.arsdigita.cms.contenttypes.ui;
|
package com.arsdigita.cms.contenttypes.ui;
|
||||||
|
|
||||||
import com.arsdigita.cms.contenttypes.SciMember;
|
import com.arsdigita.cms.contenttypes.GenericPerson;
|
||||||
import com.arsdigita.cms.ItemSelectionModel;
|
import com.arsdigita.cms.ItemSelectionModel;
|
||||||
import com.arsdigita.cms.contenttypes.GenericPerson;
|
import com.arsdigita.cms.contenttypes.GenericPerson;
|
||||||
import com.arsdigita.cms.contenttypes.SciOrganization;
|
import com.arsdigita.cms.contenttypes.SciOrganization;
|
||||||
|
|
@ -44,7 +44,7 @@ public class SciOrganizationMemberAddForm
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String getPersonType() {
|
protected String getPersonType() {
|
||||||
return SciMember.class.getName();
|
return GenericPerson.class.getName();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
*/
|
*/
|
||||||
package com.arsdigita.cms.contenttypes.ui;
|
package com.arsdigita.cms.contenttypes.ui;
|
||||||
|
|
||||||
import com.arsdigita.cms.contenttypes.SciMember;
|
import com.arsdigita.cms.contenttypes.GenericPerson;
|
||||||
import com.arsdigita.cms.ItemSelectionModel;
|
import com.arsdigita.cms.ItemSelectionModel;
|
||||||
import com.arsdigita.cms.contenttypes.SciProject;
|
import com.arsdigita.cms.contenttypes.SciProject;
|
||||||
|
|
||||||
|
|
@ -38,7 +38,7 @@ public class SciProjectMemberAddForm
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String getPersonType() {
|
protected String getPersonType() {
|
||||||
return SciMember.class.getName();
|
return GenericPerson.class.getName();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue