mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Change removed field annotation in TemplateJoinVO to remove workaround
for not showing removed entries.
This commit is contained in:
parent
8ad517c028
commit
545d2e4eb6
@ -2681,8 +2681,8 @@ public class QueryManagerImpl extends ManagerBase implements QueryService {
|
|||||||
sc.addAnd("templateType", SearchCriteria.Op.NEQ, Storage.TemplateType.SYSTEM);
|
sc.addAnd("templateType", SearchCriteria.Op.NEQ, Storage.TemplateType.SYSTEM);
|
||||||
}
|
}
|
||||||
|
|
||||||
// don't return removed template
|
// don't return removed template, this should not be needed since we changed annotation for removed field in TemplateJoinVO.
|
||||||
sc.addAnd("removed", SearchCriteria.Op.NULL);
|
//sc.addAnd("removed", SearchCriteria.Op.NULL);
|
||||||
|
|
||||||
// search unique templates and find details by Ids
|
// search unique templates and find details by Ids
|
||||||
Pair<List<TemplateJoinVO>, Integer> uniqueTmplPair = _templateJoinDao.searchAndCount(sc, searchFilter);
|
Pair<List<TemplateJoinVO>, Integer> uniqueTmplPair = _templateJoinDao.searchAndCount(sc, searchFilter);
|
||||||
|
|||||||
@ -83,7 +83,7 @@ public class TemplateJoinVO extends BaseViewVO implements ControlledViewEntity {
|
|||||||
@Column(name="created_on_store")
|
@Column(name="created_on_store")
|
||||||
private Date createdOnStore = null;
|
private Date createdOnStore = null;
|
||||||
|
|
||||||
@Column(name=GenericDao.REMOVED)
|
@Column(name=GenericDao.REMOVED_COLUMN)
|
||||||
@Temporal(TemporalType.TIMESTAMP)
|
@Temporal(TemporalType.TIMESTAMP)
|
||||||
private Date removed;
|
private Date removed;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user