Podepsané dokumenty se nyní zobrazují ve dvou záložkách - Aktuální
dokumenty a Archiv. V Archivu se zobrazují dokumenty starší než rok. closes #225
This commit is contained in:
@@ -2,6 +2,7 @@ package info.bukova.isspst;
|
|||||||
|
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
import java.util.GregorianCalendar;
|
||||||
|
|
||||||
import org.apache.commons.lang.time.DateUtils;
|
import org.apache.commons.lang.time.DateUtils;
|
||||||
|
|
||||||
@@ -54,4 +55,31 @@ public class DateTimeUtils
|
|||||||
{
|
{
|
||||||
return DateTimeUtils.getDate(DateTimeUtils.getCurrDateTime());
|
return DateTimeUtils.getDate(DateTimeUtils.getCurrDateTime());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static Calendar getCalendarDelta(Date value, int calendarType, int delta) {
|
||||||
|
if (value == null) {
|
||||||
|
value = DateTimeUtils.getCurrDate();
|
||||||
|
}
|
||||||
|
|
||||||
|
Calendar calendar = new GregorianCalendar();
|
||||||
|
calendar.setTime(value);
|
||||||
|
int deltaValue = calendar.get(calendarType);
|
||||||
|
calendar.set(calendarType, deltaValue + delta);
|
||||||
|
return calendar;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Calendar getCalendar(Date value) {
|
||||||
|
if (value == null) {
|
||||||
|
value = DateTimeUtils.getCurrDate();
|
||||||
|
}
|
||||||
|
|
||||||
|
Calendar calendar = new GregorianCalendar();
|
||||||
|
calendar.setTime(value);
|
||||||
|
return calendar;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Date getDateDelta(Date value, int calendarType, int delta) {
|
||||||
|
Calendar calendar = DateTimeUtils.getCalendarDelta(value, calendarType, delta);
|
||||||
|
return calendar.getTime();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ import info.bukova.isspst.data.SignedDocument;
|
|||||||
import info.bukova.isspst.data.SignedDocumentItem;
|
import info.bukova.isspst.data.SignedDocumentItem;
|
||||||
import info.bukova.isspst.services.Service;
|
import info.bukova.isspst.services.Service;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public interface SignedDocumentService extends Service<SignedDocument> {
|
public interface SignedDocumentService extends Service<SignedDocument> {
|
||||||
|
|
||||||
SignedDocument getForEntity(DataModel entity);
|
SignedDocument getForEntity(DataModel entity);
|
||||||
@@ -13,4 +15,6 @@ public interface SignedDocumentService extends Service<SignedDocument> {
|
|||||||
void delFromApprove(SignedDocument document);
|
void delFromApprove(SignedDocument document);
|
||||||
void deleteForEntity(DataModel entity);
|
void deleteForEntity(DataModel entity);
|
||||||
|
|
||||||
|
public List<SignedDocument> getActualList();
|
||||||
|
public List<SignedDocument> getArchiveList();
|
||||||
}
|
}
|
||||||
|
|||||||
+32
-3
@@ -1,5 +1,6 @@
|
|||||||
package info.bukova.isspst.services.signeddocs;
|
package info.bukova.isspst.services.signeddocs;
|
||||||
|
|
||||||
|
import info.bukova.isspst.DateTimeUtils;
|
||||||
import info.bukova.isspst.Module;
|
import info.bukova.isspst.Module;
|
||||||
import info.bukova.isspst.ModuleUtils;
|
import info.bukova.isspst.ModuleUtils;
|
||||||
import info.bukova.isspst.data.DataModel;
|
import info.bukova.isspst.data.DataModel;
|
||||||
@@ -7,15 +8,20 @@ import info.bukova.isspst.data.SignedDocument;
|
|||||||
import info.bukova.isspst.data.SignedDocumentItem;
|
import info.bukova.isspst.data.SignedDocumentItem;
|
||||||
import info.bukova.isspst.services.AbstractOwnedService;
|
import info.bukova.isspst.services.AbstractOwnedService;
|
||||||
import info.bukova.isspst.services.LazyLoader;
|
import info.bukova.isspst.services.LazyLoader;
|
||||||
|
|
||||||
import info.bukova.isspst.storage.ReportFileStorage;
|
import info.bukova.isspst.storage.ReportFileStorage;
|
||||||
|
|
||||||
|
import java.util.Calendar;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import javax.servlet.ServletContext;
|
||||||
|
|
||||||
import org.hibernate.Hibernate;
|
import org.hibernate.Hibernate;
|
||||||
import org.hibernate.Query;
|
import org.hibernate.Query;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.security.access.prepost.PreAuthorize;
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
import javax.servlet.ServletContext;
|
|
||||||
|
|
||||||
public class SignedDocumentServiceImpl extends AbstractOwnedService<SignedDocument> implements SignedDocumentService {
|
public class SignedDocumentServiceImpl extends AbstractOwnedService<SignedDocument> implements SignedDocumentService {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
@@ -96,5 +102,28 @@ public class SignedDocumentServiceImpl extends AbstractOwnedService<SignedDocume
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Date getTresholdDate() {
|
||||||
|
Date date = DateTimeUtils.getDateDelta(DateTimeUtils.getCurrDate(), Calendar.YEAR, -1);
|
||||||
|
return date;
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
@Override
|
||||||
|
@Transactional
|
||||||
|
@PreAuthorize("hasPermission(this, 'PERM_READ')")
|
||||||
|
public List<SignedDocument> getActualList() {
|
||||||
|
Query q = dao.getQuery("from SignedDocument where signDate >= :refDate");
|
||||||
|
q.setParameter("refDate", this.getTresholdDate());
|
||||||
|
return q.list();
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
@Override
|
||||||
|
@Transactional
|
||||||
|
@PreAuthorize("hasPermission(this, 'PERM_READ')")
|
||||||
|
public List<SignedDocument> getArchiveList() {
|
||||||
|
Query q = dao.getQuery("from SignedDocument where signDate < :refDate");
|
||||||
|
q.setParameter("refDate", this.getTresholdDate());
|
||||||
|
return q.list();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,29 @@
|
|||||||
|
package info.bukova.isspst.ui.signeddocs;
|
||||||
|
|
||||||
|
import info.bukova.isspst.data.SignedDocument;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.springframework.security.access.AccessDeniedException;
|
||||||
|
import org.zkoss.bind.annotation.Init;
|
||||||
|
|
||||||
|
public class SignedDocsActualList extends SignedDocsList {
|
||||||
|
|
||||||
|
@Init(superclass = true)
|
||||||
|
public void SignedDocsActualListInit() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected List<SignedDocument> getListFromService() {
|
||||||
|
try {
|
||||||
|
return signedDocumentService.getActualList();
|
||||||
|
}
|
||||||
|
catch (AccessDeniedException e) {
|
||||||
|
// BindUtils.postGlobalCommand(null, null, "disableCentre", null);
|
||||||
|
// e.printStackTrace();
|
||||||
|
return new ArrayList<SignedDocument>();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package info.bukova.isspst.ui.signeddocs;
|
||||||
|
|
||||||
|
import info.bukova.isspst.data.SignedDocument;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.springframework.security.access.AccessDeniedException;
|
||||||
|
import org.zkoss.bind.annotation.Init;
|
||||||
|
|
||||||
|
public class SignedDocsArchiveList extends SignedDocsList {
|
||||||
|
|
||||||
|
@Init(superclass = true)
|
||||||
|
public void SignedDocsArchiveListInit() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected List<SignedDocument> getListFromService() {
|
||||||
|
try {
|
||||||
|
return signedDocumentService.getArchiveList();
|
||||||
|
}
|
||||||
|
catch (AccessDeniedException e) {
|
||||||
|
// BindUtils.postGlobalCommand(null, null, "disableCentre", null);
|
||||||
|
// e.printStackTrace();
|
||||||
|
return new ArrayList<SignedDocument>();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,28 +1,5 @@
|
|||||||
<?page contentType="text/html;charset=UTF-8"?>
|
|
||||||
<zk xmlns="http://www.zkoss.org/2005/zul"
|
<hlayout vflex="1">
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd">
|
|
||||||
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
|
||||||
<window
|
|
||||||
vflex="1"
|
|
||||||
border="normal"
|
|
||||||
apply="org.zkoss.bind.BindComposer"
|
|
||||||
viewModel="@id('vm') @init('info.bukova.isspst.ui.signeddocs.SignedDocsList')">
|
|
||||||
<caption
|
|
||||||
image="/img/adobe-032.png"
|
|
||||||
zclass="form-caption"
|
|
||||||
label="${labels.AgendaSignedDocuments}" />
|
|
||||||
<tabbox
|
|
||||||
vflex="1"
|
|
||||||
orient="top">
|
|
||||||
<tabs width="500px">
|
|
||||||
<tab label="${labels.ActualDocuments}" />
|
|
||||||
<!-- tab label="${labels.Archive}" /-->
|
|
||||||
</tabs>
|
|
||||||
<tabpanels>
|
|
||||||
<tabpanel>
|
|
||||||
<include src="toolbar.zul" />
|
|
||||||
<hlayout vflex="1">
|
|
||||||
<listbox
|
<listbox
|
||||||
vflex="1"
|
vflex="1"
|
||||||
hflex="60"
|
hflex="60"
|
||||||
@@ -134,83 +111,19 @@
|
|||||||
hflex="3"
|
hflex="3"
|
||||||
sort="czech(fileName)"
|
sort="czech(fileName)"
|
||||||
label="${labels.FileName}" />
|
label="${labels.FileName}" />
|
||||||
<listheader
|
<listheader hflex="1" />
|
||||||
hflex="1"/>
|
|
||||||
</listhead>
|
</listhead>
|
||||||
<template name="model">
|
<template name="model">
|
||||||
<listitem>
|
<listitem>
|
||||||
<listcell label="@load(each.actualReportName)" />
|
<listcell label="@load(each.actualReportName)" />
|
||||||
<listcell label="@load(each.fileName)" />
|
<listcell label="@load(each.fileName)" />
|
||||||
<listcell>
|
<listcell>
|
||||||
<button label="Otevřít" onClick="@command('onOpen', item = each)" sclass="nicebutton"/>
|
<button
|
||||||
|
label="Otevřít"
|
||||||
|
onClick="@command('onOpen', item = each)"
|
||||||
|
sclass="nicebutton" />
|
||||||
</listcell>
|
</listcell>
|
||||||
</listitem>
|
</listitem>
|
||||||
</template>
|
</template>
|
||||||
</listbox>
|
</listbox>
|
||||||
</hlayout>
|
</hlayout>
|
||||||
</tabpanel>
|
|
||||||
<tabpanel>
|
|
||||||
<!-- listbox
|
|
||||||
vflex="1"
|
|
||||||
selectedItem="@bind(vm.selectedOrderItem)"
|
|
||||||
model="@load(vm.orderItems)">
|
|
||||||
<listhead menupopup="auto">
|
|
||||||
<listheader
|
|
||||||
hflex="7"
|
|
||||||
sort="czech(code)"
|
|
||||||
label="${labels.RequirementItemCode}" />
|
|
||||||
<listheader
|
|
||||||
hflex="15"
|
|
||||||
sort="czech(name)"
|
|
||||||
label="${labels.RequirementItemName}" />
|
|
||||||
<listheader
|
|
||||||
hflex="20"
|
|
||||||
sort="czech(textItem)"
|
|
||||||
label="${labels.RequirementItemText}" />
|
|
||||||
<listheader
|
|
||||||
hflex="5"
|
|
||||||
sort="auto(quantity)"
|
|
||||||
align="right"
|
|
||||||
label="${labels.RequirementItemQuantity}" />
|
|
||||||
<listheader
|
|
||||||
hflex="5"
|
|
||||||
sort="auto(munit.name)"
|
|
||||||
label="${labels.RequirementItemMUnit}" />
|
|
||||||
<listheader
|
|
||||||
hflex="7"
|
|
||||||
align="right"
|
|
||||||
sort="auto(unitPrice)"
|
|
||||||
label="${labels.RequirementItemUnitPrice}" />
|
|
||||||
<listheader
|
|
||||||
hflex="7"
|
|
||||||
align="right"
|
|
||||||
sort="auto(total)"
|
|
||||||
label="${labels.RequirementItemTotal}" />
|
|
||||||
<listheader
|
|
||||||
hflex="15"
|
|
||||||
sort="czech(description)"
|
|
||||||
label="${labels.RequirementItemDescription}" />
|
|
||||||
<listheader
|
|
||||||
hflex="5"
|
|
||||||
sort="auto(reqItem.orderNum)"
|
|
||||||
label="${labels.OrderAbr}" />
|
|
||||||
</listhead>
|
|
||||||
<template name="model">
|
|
||||||
<listitem>
|
|
||||||
<listcell label="@load(each.code)" />
|
|
||||||
<listcell label="@load(each.name)" />
|
|
||||||
<listcell label="@load(each.textItem)" />
|
|
||||||
<listcell label="@load(each.quantity) @converter(vm.standardBigDecimalConverter)" />
|
|
||||||
<listcell label="@load(each.munit.name)" />
|
|
||||||
<listcell label="@load(each.unitPrice) @converter(vm.standardBigDecimalConverter)" />
|
|
||||||
<listcell label="@load(each.total) @converter(vm.standardBigDecimalConverter)" />
|
|
||||||
<listcell label="@load(each.description)" />
|
|
||||||
<listcell label="@load(each.reqItem.orderNum)" />
|
|
||||||
</listitem>
|
|
||||||
</template>
|
|
||||||
</listbox-->
|
|
||||||
</tabpanel>
|
|
||||||
</tabpanels>
|
|
||||||
</tabbox>
|
|
||||||
</window>
|
|
||||||
</zk>
|
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<zk>
|
||||||
|
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
||||||
|
<window
|
||||||
|
vflex="1"
|
||||||
|
border="none"
|
||||||
|
apply="org.zkoss.bind.BindComposer"
|
||||||
|
viewModel="@id('vm') @init('info.bukova.isspst.ui.signeddocs.SignedDocsActualList')">
|
||||||
|
<include src="/lists/signeddocs/toolbar.zul" />
|
||||||
|
<include
|
||||||
|
vflex="1"
|
||||||
|
src="/lists/signeddocs/grid.zul" />
|
||||||
|
</window>
|
||||||
|
</zk>
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<zk>
|
||||||
|
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
||||||
|
<window
|
||||||
|
vflex="1"
|
||||||
|
border="none"
|
||||||
|
apply="org.zkoss.bind.BindComposer"
|
||||||
|
viewModel="@id('vm') @init('info.bukova.isspst.ui.signeddocs.SignedDocsArchiveList')">
|
||||||
|
<include src="/lists/signeddocs/toolbar.zul" />
|
||||||
|
<include
|
||||||
|
vflex="1"
|
||||||
|
src="/lists/signeddocs/grid.zul" />
|
||||||
|
</window>
|
||||||
|
</zk>
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
<zk>
|
<zk>
|
||||||
|
|
||||||
<zscript>
|
<zscript>
|
||||||
String gridZul = "grid.zul";
|
String gridZul = "setup.zul";
|
||||||
</zscript>
|
</zscript>
|
||||||
|
|
||||||
<include src="/app/template.zhtml"/>
|
<include src="/app/template.zhtml"/>
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?page contentType="text/html;charset=UTF-8"?>
|
||||||
|
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
||||||
|
<zk>
|
||||||
|
<zscript>
|
||||||
|
String gridActual = "/lists/signeddocs/headListActual.zul";
|
||||||
|
String gridArchive = "/lists/signeddocs/headListArchive.zul";
|
||||||
|
</zscript>
|
||||||
|
<window
|
||||||
|
vflex="1"
|
||||||
|
border="normal">
|
||||||
|
<caption
|
||||||
|
src="/img/adobe-032.png"
|
||||||
|
zclass="form-caption"
|
||||||
|
label="${labels.AgendaSignedDocuments}" />
|
||||||
|
<include
|
||||||
|
vflex="1"
|
||||||
|
src="/lists/signeddocs/tabPanels.zul" />
|
||||||
|
</window>
|
||||||
|
</zk>
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<tabbox
|
||||||
|
apply="org.zkoss.bind.BindComposer"
|
||||||
|
orient="top"
|
||||||
|
vflex="1">
|
||||||
|
<tabs>
|
||||||
|
<tab label="${labels.ActualDocuments}" />
|
||||||
|
<tab label="${labels.Archive}" />
|
||||||
|
</tabs>
|
||||||
|
<tabpanels>
|
||||||
|
<tabpanel>
|
||||||
|
<include src="${gridActual}" />
|
||||||
|
</tabpanel>
|
||||||
|
<tabpanel>
|
||||||
|
<include src="${gridArchive}" />
|
||||||
|
</tabpanel>
|
||||||
|
</tabpanels>
|
||||||
|
</tabbox>
|
||||||
Reference in New Issue
Block a user