|
|
|
@ -64,5 +64,13 @@ public class InvoicingServiceImpl extends AbstractOwnedService<Invoicing> implem
|
|
|
|
|
Query q = dao.getQuery("select inv from Invoicing as inv join fetch inv.requirement rq join fetch rq.ownedBy order by rq.numser");
|
|
|
|
|
return q.list();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Transactional
|
|
|
|
|
@LazyLoader("form")
|
|
|
|
|
public void loadOwnedBy(Invoicing invoice) {
|
|
|
|
|
Invoicing inv = getById(invoice.getId());
|
|
|
|
|
Hibernate.initialize(inv.getRequirement().getOwnedBy());
|
|
|
|
|
invoice.getRequirement().setOwnedBy(inv.getRequirement().getOwnedBy());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|