|
|
|
@ -65,4 +65,12 @@ public class InvoicingServiceImpl extends AbstractOwnedService<Invoicing> implem
|
|
|
|
|
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());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|