Připraveny podklady pro novou agendu "Podepsané dokumenty"

Vzhled agendy (grid/strom/...) zatím není znám.

closes #222
This commit is contained in:
2015-06-04 14:19:54 +02:00
parent aaa89a2653
commit c9a56887dc
15 changed files with 266 additions and 15 deletions
@@ -1,5 +1,6 @@
# Default file
AppName=Objednávkový systém SPŠ Třebíč
AppName=Informační systém SPŠ Třebíč
AgendaSignedDocuments=Podepsané dokumenty
AgendaActRequirements=Aktuální požadavky
AgendaRequirementsHistory=Ukončené požadavky
@@ -272,6 +272,10 @@
<bean id="tripBillApprovalDao" class="info.bukova.isspst.dao.jpa.TripBillApprovalDaoJPA">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<bean id="signedDocumentDao" class="info.bukova.isspst.dao.jpa.SignedDocumentDaoJPA">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<!-- Business logic -->
<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"/>
@@ -453,4 +457,7 @@
<property name="dao" ref="tripBillApprovalDao"/>
</bean>
<bean id="signedDocumentService" class="info.bukova.isspst.services.signeddocs.SignedDocumentServiceImpl">
<property name="dao" ref="signedDocumentDao"/>
</bean>
</beans>
+6
View File
@@ -61,6 +61,12 @@
<menuseparator />
<menu label="${labels.Lists}">
<menupopup>
<menuitem
image="/img/adobe-016.png"
label="${labels.AgendaSignedDocuments}"
href="/lists/signeddocs/"
disabled="${not sec:isAllGranted('PERM_READ_SIGNEDDOCS')}" />
<menuseparator />
<menuitem
image="/img/palet-024.png"
label="${labels.AgendaMaterial}"
Binary file not shown.

After

Width:  |  Height:  |  Size: 803 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

@@ -0,0 +1,10 @@
<?page title="${labels.AgendaSignedDocuments}" contentType="text/html;charset=UTF-8"?>
<zk>
<zscript>
String gridZul = "grid.zul";
</zscript>
<include src="/app/template.zhtml"/>
</zk>