Přidána agenda pro zadávání fakturace k požadavkům. Chybí filtrování.

refs #164
This commit is contained in:
2014-10-26 22:16:14 +01:00
parent f1ca2d11c8
commit b2d141e52b
33 changed files with 735 additions and 26 deletions
+7 -1
View File
@@ -9,7 +9,7 @@
autodrop="true">
<menuitem
label="${labels.Information}"
href="/" />
href="/app/" />
<menuseparator />
<menu label="${labels.Orders}">
<menupopup>
@@ -34,6 +34,12 @@
label="${labels.CreatedOrders}"
href="/main/orders/created/"
disabled="${not sec:isAllGranted('PERM_READ_ORDER')}" />
<menuseparator/>
<menuitem
image="/img/invoicing-016.png"
label="${labels.Invoicing}"
href="/main/invoicing/"
disabled="${not sec:isAllGranted('PERM_READ_INVOICING')}" />
</menupopup>
</menu>
<menu label="${labels.BussinessTrips}">
+1 -1
View File
@@ -1,7 +1,7 @@
<?page title="toolbar" contentType="text/html;charset=UTF-8"?>
<zk>
<toolbar>
<toolbarbutton image="/img/add.png" tooltiptext="${labels.ToolbarRecNew}" id="btnNew" onClick="@command('addNew')" disabled="@load(vm.filter)" />
<toolbarbutton image="/img/add.png" tooltiptext="${labels.ToolbarRecNew}" id="btnNew" onClick="@command('addNew')" disabled="@load(vm.filter or not vm.ableToAdd)" />
<toolbarbutton image="/img/edit.png" tooltiptext="${labels.ToolbarRecEdit}" id="btnEdit" onClick="@command('edit')" disabled="@load(empty vm.dataBean ? 'true' : 'false')"/>
<toolbarbutton image="/img/delete.png" tooltiptext="${labels.ToolbarRecDelete}" id="btnDelete" onClick="@command('delete')" disabled="@load(not vm.ableToDelete)" />
<toolbarbutton image="/img/funnel.png" tooltiptext="${labels.ToolbarRecFilter}" id="btnFilter" onClick="@command('filter')" />