Přepracována struktura hlavního menu.
This commit is contained in:
@@ -1,28 +0,0 @@
|
||||
<?page title="${labels.FindResult}" contentType="text/html;charset=UTF-8"?>
|
||||
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
||||
<zk>
|
||||
<window id="findResult" title="Výsledek hledání" border="normal" apply="org.zkoss.bind.BindComposer"
|
||||
viewModel="@id('vm') @init('info.bukova.isspst.ui.addressbook.AddressFindResult')"
|
||||
closable="true" width="700px">
|
||||
|
||||
<listbox model="@load(vm.listResult)" height="300px" selectedItem="@bind(vm.selectedAddr)">
|
||||
<listhead>
|
||||
<listheader label="Firma" sort="auto(company)"/>
|
||||
<listheader label="IČ"/>
|
||||
<listheader label="Ulice"/>
|
||||
<listheader label="Číslo domu" width="80px"/>
|
||||
<listheader label="Město"/>
|
||||
</listhead>
|
||||
<template name="model">
|
||||
<listitem>
|
||||
<listcell label="@load(each.company)"/>
|
||||
<listcell label="@load(each.ic)"/>
|
||||
<listcell label="@load(each.street)"/>
|
||||
<listcell label="@load(each.houseNumber)"/>
|
||||
<listcell label="@load(each.city)"/>
|
||||
</listitem>
|
||||
</template>
|
||||
</listbox>
|
||||
<button label="Zvolit" onClick="@global-command('selectAddress', selected=vm.selectedAddr, window=findResult)" disabled="@bind(vm.selected)" sclass="nicebutton"/> <button label="Zavřít" onClick="findResult.detach()" sclass="nicebutton"/>
|
||||
</window>
|
||||
</zk>
|
||||
@@ -1,84 +0,0 @@
|
||||
<?page title="${labels.SuppliersFormTitle}" contentType="text/html;charset=UTF-8"?>
|
||||
<zk>
|
||||
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
||||
<window id="editWin" border="normal" apply="org.zkoss.bind.BindComposer" viewModel="@id('vm') @init('info.bukova.isspst.ui.addressbook.AddressForm')" closable="true" width="600px">
|
||||
<caption zclass="form-caption" label="${labels.SuppliersFormTitle}" />
|
||||
<grid width="580px">
|
||||
<columns>
|
||||
<column label="" hflex="min" />
|
||||
<column label="" hflex="min" />
|
||||
<column label="" />
|
||||
</columns>
|
||||
<rows>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormCompany}" />
|
||||
<textbox id="company" constraint="@load(vm.constriant)" value="@bind(vm.dataBean.company)" instant="true" width="320px" />
|
||||
<button image="/img/search.png" label="${labels.SuppliersFormFindInARES}" onClick="@command('searchAres')" sclass="nicebutton" disabled="@load((vm.dataBean.ic == 0) && (empty vm.dataBean.company))" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormIC}" />
|
||||
<textbox value="@bind(vm.dataBean.ic)" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormDIC}" />
|
||||
<textbox value="@bind(vm.dataBean.dic)" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormDepartment}" />
|
||||
<textbox value="@bind(vm.dataBean.department)" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormContact}" />
|
||||
<textbox value="@bind(vm.dataBean.contactName)" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormStreet}" />
|
||||
<textbox value="@bind(vm.dataBean.street)" width="320px" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormNo}" />
|
||||
<textbox value="@bind(vm.dataBean.houseNumber)" width="80px" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormCity}" />
|
||||
<textbox id="city" constraint="@load(vm.constriant)" value="@bind(vm.dataBean.city)" width="320px" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormZIP}" />
|
||||
<textbox value="@bind(vm.dataBean.zipCode)" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormPhone}" />
|
||||
<textbox value="@bind(vm.dataBean.phone)" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormEmail}" />
|
||||
<textbox id="email" constraint="@load(vm.constriant)" value="@bind(vm.dataBean.email)" width="320px" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersFormWWW}" />
|
||||
<textbox id="web" constraint="@load(vm.constriant)" value="@bind(vm.dataBean.web)" width="320px" />
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
<hlayout>
|
||||
<panel>
|
||||
<panelchildren>
|
||||
<vlayout>
|
||||
<panel>
|
||||
<panelchildren>
|
||||
<label value="${labels.SuppliersFormNote}" />
|
||||
</panelchildren>
|
||||
</panel>
|
||||
<panel>
|
||||
<panelchildren>
|
||||
<ckeditor height="65px" width="100%" toolbar="Basic" value="@bind(vm.dataBean.description)" />
|
||||
</panelchildren>
|
||||
</panel>
|
||||
</vlayout>
|
||||
</panelchildren>
|
||||
</panel>
|
||||
</hlayout>
|
||||
<include src="/app/formButtons.zul" />
|
||||
</window>
|
||||
</zk>
|
||||
@@ -1,126 +0,0 @@
|
||||
<?page title="${labels.AgendaSuppliers}" contentType="text/html;charset=UTF-8"?>
|
||||
<zk>
|
||||
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
||||
<window border="normal" apply="org.zkoss.bind.BindComposer" height="570px" viewModel="@id('vm') @init('info.bukova.isspst.ui.addressbook.AddressList')">
|
||||
<caption zclass="form-caption" label="${labels.AgendaSuppliers}" />
|
||||
<include src="/app/toolbar.zul" />
|
||||
|
||||
<hbox width="100%">
|
||||
<listbox id="dataGrid" model="@load(vm.dataList)" selectedItem="@bind(vm.dataBean)" onAfterRender="@command('afterRender')" selectedIndex="@load(vm.selIndex)" hflex="6" height="480px">
|
||||
<listhead vflex="true" menupopup="auto">
|
||||
<listheader label="${labels.SuppliersGridColumnCompany}" sort="czech(company)" />
|
||||
<listheader label="${labels.SuppliersGridColumnIC}" sort="auto(ic)" width="100px" />
|
||||
<listheader label="${labels.SuppliersGridColumnContact}" sort="czech(contactName)" />
|
||||
<listheader label="${labels.SuppliersGridColumnStreet}" sort="czech(street)" />
|
||||
<listheader label="${labels.SuppliersGridColumnNo}" sort="czech(houseNumber)" width="80px" />
|
||||
<listheader label="${labels.SuppliersGridColumnCity}" sort="czech(city)" />
|
||||
</listhead>
|
||||
|
||||
<auxhead sclass="category-center" visible="@load(vm.filter)">
|
||||
<auxheader>
|
||||
<div sclass="find-grid-cell">
|
||||
<div sclass="find-grid-divtextbox">
|
||||
<textbox value="@bind(vm.filterTemplate.company)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
||||
</div>
|
||||
<div sclass="find-grid-img">
|
||||
<image src="/img/funnel.png" />
|
||||
</div>
|
||||
</div>
|
||||
</auxheader>
|
||||
<auxheader>
|
||||
<div sclass="find-grid-cell">
|
||||
<div sclass="find-grid-divtextbox">
|
||||
<textbox value="@bind(vm.filterTemplate.ic)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
||||
</div>
|
||||
<div sclass="find-grid-img">
|
||||
<image src="/img/funnel.png" />
|
||||
</div>
|
||||
</div>
|
||||
</auxheader>
|
||||
<auxheader>
|
||||
<div sclass="find-grid-cell">
|
||||
<div sclass="find-grid-divtextbox">
|
||||
<textbox value="@bind(vm.filterTemplate.contactName)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
||||
</div>
|
||||
<div sclass="find-grid-img">
|
||||
<image src="/img/funnel.png" />
|
||||
</div>
|
||||
</div>
|
||||
</auxheader>
|
||||
<auxheader>
|
||||
<div sclass="find-grid-cell">
|
||||
<div sclass="find-grid-divtextbox">
|
||||
<textbox value="@bind(vm.filterTemplate.street)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
||||
</div>
|
||||
<div sclass="find-grid-img">
|
||||
<image src="/img/funnel.png" />
|
||||
</div>
|
||||
</div>
|
||||
</auxheader>
|
||||
<auxheader>
|
||||
<div sclass="find-grid-cell">
|
||||
<div sclass="find-grid-divtextbox">
|
||||
<textbox value="@bind(vm.filterTemplate.houseNumber)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
||||
</div>
|
||||
<div sclass="find-grid-img">
|
||||
<image src="/img/funnel.png" />
|
||||
</div>
|
||||
</div>
|
||||
</auxheader>
|
||||
<auxheader>
|
||||
<div sclass="find-grid-cell">
|
||||
<div sclass="find-grid-divtextbox">
|
||||
<textbox value="@bind(vm.filterTemplate.city)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
||||
</div>
|
||||
<div sclass="find-grid-img">
|
||||
<image src="/img/funnel.png" />
|
||||
</div>
|
||||
</div>
|
||||
</auxheader>
|
||||
</auxhead>
|
||||
|
||||
<template name="model">
|
||||
<listitem>
|
||||
<listcell label="@load(each.company)" />
|
||||
<listcell label="@load(each.ic)" />
|
||||
<listcell label="@load(each.contactName)" />
|
||||
<listcell label="@load(each.street)" />
|
||||
<listcell label="@load(each.houseNumber)" />
|
||||
<listcell label="@load(each.city)" />
|
||||
</listitem>
|
||||
</template>
|
||||
</listbox>
|
||||
|
||||
<div hflex="4">
|
||||
<label value="${labels.SuppliersGridColumnDetail}:" sclass="bold" />
|
||||
<grid visible="@load(vm.dataBean ne null)" hflex="1">
|
||||
<columns>
|
||||
<column hflex="min" />
|
||||
<column />
|
||||
</columns>
|
||||
<rows>
|
||||
<row>
|
||||
<label value="${labels.SuppliersGridColumnDepartment}" />
|
||||
<label value="@load(vm.dataBean.department)" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersGridColumnPhone}" />
|
||||
<label value="@load(vm.dataBean.phone)" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersGridColumnEmail}" />
|
||||
<label value="@load(vm.dataBean.email)" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="${labels.SuppliersGridColumnWWW}" />
|
||||
<label value="@load(vm.dataBean.web)" />
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
<label value="${labels.SuppliersGridColumnNote}:" visible="@load(not empty vm.dataBean.description)" sclass="bold" />
|
||||
<html style="font-family:arial,sans-serif;font-size:12px;" content="@load(vm.dataBean.description)" />
|
||||
<mapa address="@load((empty vm.dataBean.street ? vm.dataBean.city : vm.dataBean.street).concat(' ').concat(vm.dataBean.houseNumber).concat(', ').concat(vm.dataBean.city))" width="100%" height="300px" visible="@load(vm.dataBean ne null)" />
|
||||
</div>
|
||||
</hbox>
|
||||
</window>
|
||||
</zk>
|
||||
@@ -1,11 +0,0 @@
|
||||
<?page title="${labels.AgendaSuppliers}" contentType="text/html;charset=UTF-8"?>
|
||||
<?script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB6sVWLvFMvbK994Pa418XDhbDUZ6Xr4CQ&sensor=false"?>
|
||||
<zk>
|
||||
|
||||
<zscript>
|
||||
String gridZul = "addressbook.zul";
|
||||
</zscript>
|
||||
|
||||
<include src="/app/template.zhtml"/>
|
||||
|
||||
</zk>
|
||||
Reference in New Issue
Block a user