Merge branch 'master' of https://git.bukova.info/repos/git/isspst
Conflicts: src/main/webapp/WEB-INF/spring/mail-services.xml
This commit is contained in:
@@ -10,7 +10,7 @@ import info.bukova.isspst.reporting.Report;
|
|||||||
import info.bukova.isspst.reporting.ReportMapping;
|
import info.bukova.isspst.reporting.ReportMapping;
|
||||||
import info.bukova.isspst.reporting.ReportType;
|
import info.bukova.isspst.reporting.ReportType;
|
||||||
import info.bukova.isspst.services.numberseries.NumberSeriesService;
|
import info.bukova.isspst.services.numberseries.NumberSeriesService;
|
||||||
import info.bukova.isspst.services.requirements.RequirementTypeService;
|
import info.bukova.isspst.services.requirement.RequirementTypeService;
|
||||||
import info.bukova.isspst.services.settings.GlobalSettingsService;
|
import info.bukova.isspst.services.settings.GlobalSettingsService;
|
||||||
import info.bukova.isspst.services.users.PermissionService;
|
import info.bukova.isspst.services.users.PermissionService;
|
||||||
import info.bukova.isspst.services.users.RoleService;
|
import info.bukova.isspst.services.users.RoleService;
|
||||||
|
|||||||
@@ -8,11 +8,11 @@ import info.bukova.isspst.reporting.Report;
|
|||||||
import info.bukova.isspst.reporting.ReportMapping;
|
import info.bukova.isspst.reporting.ReportMapping;
|
||||||
import info.bukova.isspst.services.addressbook.AdbService;
|
import info.bukova.isspst.services.addressbook.AdbService;
|
||||||
import info.bukova.isspst.services.buildings.BuildingService;
|
import info.bukova.isspst.services.buildings.BuildingService;
|
||||||
import info.bukova.isspst.services.munits.MUnitService;
|
|
||||||
import info.bukova.isspst.services.reqsubjects.MaterialService;
|
import info.bukova.isspst.services.reqsubjects.MaterialService;
|
||||||
import info.bukova.isspst.services.reqsubjects.ServiceItemService;
|
import info.bukova.isspst.services.reqsubjects.ServiceItemService;
|
||||||
|
import info.bukova.isspst.services.munits.MUnitService;
|
||||||
import info.bukova.isspst.services.requirement.RequirementService;
|
import info.bukova.isspst.services.requirement.RequirementService;
|
||||||
import info.bukova.isspst.services.requirements.RequirementTypeService;
|
import info.bukova.isspst.services.requirement.RequirementTypeService;
|
||||||
import info.bukova.isspst.services.users.RoleService;
|
import info.bukova.isspst.services.users.RoleService;
|
||||||
import info.bukova.isspst.services.users.UserService;
|
import info.bukova.isspst.services.users.UserService;
|
||||||
import info.bukova.isspst.services.workgroups.WorkgroupService;
|
import info.bukova.isspst.services.workgroups.WorkgroupService;
|
||||||
|
|||||||
@@ -0,0 +1,57 @@
|
|||||||
|
package info.bukova.isspst;
|
||||||
|
|
||||||
|
import java.util.Calendar;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
import org.apache.commons.lang.time.DateUtils;
|
||||||
|
|
||||||
|
public class DateTimeUtils
|
||||||
|
{
|
||||||
|
public static Date getDate(Date value)
|
||||||
|
{
|
||||||
|
if (value == null)
|
||||||
|
{
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Keep date - truncate time
|
||||||
|
return DateUtils.truncate(value, Calendar.DAY_OF_MONTH);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isEqualByDate(Date d1, Date d2)
|
||||||
|
{
|
||||||
|
if (d1 != null && d2 != null)
|
||||||
|
{
|
||||||
|
d1 = DateTimeUtils.getDate(d1);
|
||||||
|
d2 = DateTimeUtils.getDate(d2);
|
||||||
|
boolean equals = (d1.compareTo(d2) == 0);
|
||||||
|
return equals;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isEqualByDateForFilter(Date value, Date search)
|
||||||
|
{
|
||||||
|
if (search == null)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (value != null)
|
||||||
|
{
|
||||||
|
return DateTimeUtils.isEqualByDate(value, search);
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Date getCurrDateTime()
|
||||||
|
{
|
||||||
|
return new Date();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Date getCurrDate()
|
||||||
|
{
|
||||||
|
return DateTimeUtils.getDate(DateTimeUtils.getCurrDateTime());
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -44,4 +44,10 @@ public class StringUtils {
|
|||||||
return Labels.getLabel("Db" + key);
|
return Labels.getLabel("Db" + key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static boolean isEqualForFilter(String value, String search)
|
||||||
|
{
|
||||||
|
value = StringUtils.nullStr(value).toLowerCase();
|
||||||
|
search = StringUtils.nullStr(search).toLowerCase();
|
||||||
|
return value.contains(search);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package info.bukova.isspst.filters;
|
package info.bukova.isspst.filters;
|
||||||
|
|
||||||
import static info.bukova.isspst.StringUtils.nullStr;
|
import info.bukova.isspst.DateTimeUtils;
|
||||||
|
import info.bukova.isspst.StringUtils;
|
||||||
import info.bukova.isspst.data.Requirement;
|
import info.bukova.isspst.data.Requirement;
|
||||||
|
|
||||||
import org.hamcrest.Description;
|
import org.hamcrest.Description;
|
||||||
@@ -37,10 +38,11 @@ public class RequirementFilter implements Filter<Requirement>
|
|||||||
@Override
|
@Override
|
||||||
public boolean matchesSafely(Requirement item)
|
public boolean matchesSafely(Requirement item)
|
||||||
{
|
{
|
||||||
return nullStr(item.getNumser()).toLowerCase().contains(nullStr(condition.getNumser()).toLowerCase())
|
boolean foundNumser = StringUtils.isEqualForFilter(item.getNumser(), condition.getNumser());
|
||||||
&& item.getReqDate().equals(condition.getReqDate())
|
boolean foundReqDate = DateTimeUtils.isEqualByDateForFilter(item.getReqDate(), condition.getReqDate());
|
||||||
&& item.getDeliveryDate().equals(condition.getDeliveryDate())
|
boolean foundDescription = StringUtils.isEqualForFilter(item.getDescription(), condition.getDescription());
|
||||||
&& nullStr(item.getDescription()).toLowerCase().contains(nullStr(condition.getDescription()).toLowerCase());
|
boolean foundDeliveryDate = DateTimeUtils.isEqualByDateForFilter(item.getDeliveryDate(), condition.getDeliveryDate());
|
||||||
|
return foundNumser && foundReqDate && foundDescription && foundDeliveryDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Factory
|
@Factory
|
||||||
|
|||||||
@@ -5,8 +5,10 @@ import info.bukova.isspst.Constants;
|
|||||||
import info.bukova.isspst.Module;
|
import info.bukova.isspst.Module;
|
||||||
import info.bukova.isspst.dao.BaseDao;
|
import info.bukova.isspst.dao.BaseDao;
|
||||||
import info.bukova.isspst.data.DataModel;
|
import info.bukova.isspst.data.DataModel;
|
||||||
|
import info.bukova.isspst.data.NumberSeries;
|
||||||
import info.bukova.isspst.filters.Filter;
|
import info.bukova.isspst.filters.Filter;
|
||||||
import info.bukova.isspst.reporting.Report;
|
import info.bukova.isspst.reporting.Report;
|
||||||
|
import info.bukova.isspst.services.numberseries.NumberSeriesService;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
@@ -26,6 +28,19 @@ public abstract class AbstractService<T extends DataModel> implements Service<T>
|
|||||||
protected BaseDao<T> dao;
|
protected BaseDao<T> dao;
|
||||||
private Validator validator;
|
private Validator validator;
|
||||||
|
|
||||||
|
private NumberSeriesService numberSeriesService;
|
||||||
|
|
||||||
|
|
||||||
|
public NumberSeriesService getNumberSeriesService()
|
||||||
|
{
|
||||||
|
return numberSeriesService;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setNumberSeriesService(NumberSeriesService numberSeriesService)
|
||||||
|
{
|
||||||
|
this.numberSeriesService = numberSeriesService;
|
||||||
|
}
|
||||||
|
|
||||||
public void setDao(BaseDao<T> dao) {
|
public void setDao(BaseDao<T> dao) {
|
||||||
this.dao = dao;
|
this.dao = dao;
|
||||||
}
|
}
|
||||||
@@ -150,4 +165,22 @@ public abstract class AbstractService<T extends DataModel> implements Service<T>
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected String getNumberSerie()
|
||||||
|
{
|
||||||
|
String currentNumber = "";
|
||||||
|
|
||||||
|
if (numberSeriesService != null)
|
||||||
|
{
|
||||||
|
String moduleName = this.getModule().getId();
|
||||||
|
NumberSeries ns = numberSeriesService.getNumberSerie(moduleName);
|
||||||
|
|
||||||
|
if (ns != null)
|
||||||
|
{
|
||||||
|
currentNumber = ns.getCurrentNumber();
|
||||||
|
numberSeriesService.increase(ns);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return currentNumber;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
package info.bukova.isspst.services.numberseries;
|
package info.bukova.isspst.services.numberseries;
|
||||||
|
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
|
||||||
|
|
||||||
import info.bukova.isspst.data.NumberSeries;
|
import info.bukova.isspst.data.NumberSeries;
|
||||||
import info.bukova.isspst.services.AbstractService;
|
import info.bukova.isspst.services.AbstractService;
|
||||||
|
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
public class NumberSeriesServiceImpl extends AbstractService<NumberSeries> implements NumberSeriesService
|
public class NumberSeriesServiceImpl extends AbstractService<NumberSeries> implements NumberSeriesService
|
||||||
{
|
{
|
||||||
@Transactional
|
@Transactional
|
||||||
|
|||||||
@@ -1,9 +1,31 @@
|
|||||||
package info.bukova.isspst.services.requirement;
|
package info.bukova.isspst.services.requirement;
|
||||||
|
|
||||||
import info.bukova.isspst.data.Requirement;
|
import info.bukova.isspst.data.Requirement;
|
||||||
import info.bukova.isspst.services.AbstractService;
|
import info.bukova.isspst.services.AbstractOwnedService;
|
||||||
|
|
||||||
public class RequirementServiceImpl extends AbstractService<Requirement> implements RequirementService
|
import java.util.Date;
|
||||||
|
|
||||||
|
import org.springframework.security.access.prepost.PreAuthorize;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
public class RequirementServiceImpl extends AbstractOwnedService<Requirement> implements RequirementService
|
||||||
{
|
{
|
||||||
|
@Override
|
||||||
|
protected Requirement createEntity()
|
||||||
|
{
|
||||||
|
Requirement entity = new Requirement();
|
||||||
|
|
||||||
|
entity.setReqDate(new Date());
|
||||||
|
|
||||||
|
return entity;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Transactional
|
||||||
|
@PreAuthorize("hasPermission(this, 'PERM_ADD')")
|
||||||
|
public void add(Requirement entity)
|
||||||
|
{
|
||||||
|
entity.setNumser(this.getNumberSerie());
|
||||||
|
super.add(entity);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
package info.bukova.isspst.services.requirements;
|
package info.bukova.isspst.services.requirement;
|
||||||
|
|
||||||
import info.bukova.isspst.data.RequirementType;
|
import info.bukova.isspst.data.RequirementType;
|
||||||
import info.bukova.isspst.services.Service;
|
import info.bukova.isspst.services.Service;
|
||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
package info.bukova.isspst.services.requirements;
|
package info.bukova.isspst.services.requirement;
|
||||||
|
|
||||||
import info.bukova.isspst.data.RequirementType;
|
import info.bukova.isspst.data.RequirementType;
|
||||||
import info.bukova.isspst.services.AbstractOwnedService;
|
import info.bukova.isspst.services.AbstractOwnedService;
|
||||||
@@ -1,15 +1,77 @@
|
|||||||
package info.bukova.isspst.ui.requirement;
|
package info.bukova.isspst.ui.requirement;
|
||||||
|
|
||||||
import info.bukova.isspst.data.Requirement;
|
import info.bukova.isspst.data.Requirement;
|
||||||
|
import info.bukova.isspst.data.RequirementSubject;
|
||||||
|
import info.bukova.isspst.data.Workgroup;
|
||||||
|
import info.bukova.isspst.services.requirement.RequirementService;
|
||||||
|
import info.bukova.isspst.services.users.UserService;
|
||||||
|
import info.bukova.isspst.services.workgroups.WorkgroupService;
|
||||||
import info.bukova.isspst.ui.FormViewModel;
|
import info.bukova.isspst.ui.FormViewModel;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.zkoss.bind.annotation.Command;
|
||||||
import org.zkoss.bind.annotation.Init;
|
import org.zkoss.bind.annotation.Init;
|
||||||
|
import org.zkoss.bind.annotation.NotifyChange;
|
||||||
|
import org.zkoss.zk.ui.select.annotation.WireVariable;
|
||||||
|
|
||||||
public class RequirementForm extends FormViewModel<Requirement>
|
public class RequirementForm extends FormViewModel<Requirement>
|
||||||
{
|
{
|
||||||
|
@WireVariable
|
||||||
|
private UserService userService;
|
||||||
|
|
||||||
|
@WireVariable
|
||||||
|
private WorkgroupService workgroupService;
|
||||||
|
|
||||||
|
public List<Workgroup> getCentres() {
|
||||||
|
return workgroupService.getUserCentres(userService.getCurrent());
|
||||||
|
}
|
||||||
|
@WireVariable
|
||||||
|
private RequirementService requirementService;
|
||||||
|
|
||||||
|
private RequirementSubject item;
|
||||||
|
|
||||||
|
private int selItemIndex;
|
||||||
|
|
||||||
@Init(superclass = true)
|
@Init(superclass = true)
|
||||||
public void init()
|
public void init()
|
||||||
{
|
{
|
||||||
|
this.setSelItemIndex(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public RequirementSubject getItem()
|
||||||
|
{
|
||||||
|
return item;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setItem(RequirementSubject item)
|
||||||
|
{
|
||||||
|
this.item = item;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getSelItemIndex()
|
||||||
|
{
|
||||||
|
return selItemIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSelItemIndex(int selItemIndex)
|
||||||
|
{
|
||||||
|
this.selItemIndex = selItemIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Command
|
||||||
|
@NotifyChange({"dataBean", "selItemIndex"})
|
||||||
|
public void addItem() {
|
||||||
|
// RequirementSubject item = new Material();
|
||||||
|
// requirementService.addItem(getDataBean(), item);
|
||||||
|
// selItemIndex = getDataBean().getItems().indexOf(item);
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
@Command
|
||||||
|
@NotifyChange({"dataBean", "selItemIndex"})
|
||||||
|
public void removeItem(@BindingParam("item") RequirementItem item) {
|
||||||
|
requirementService.removeItem(getDataBean(), item);
|
||||||
|
selItemIndex = -1;
|
||||||
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -1,10 +1,10 @@
|
|||||||
package info.bukova.isspst.ui.requirements;
|
package info.bukova.isspst.ui.requirement;
|
||||||
|
|
||||||
import info.bukova.isspst.Constants;
|
import info.bukova.isspst.Constants;
|
||||||
import info.bukova.isspst.data.RequirementType;
|
import info.bukova.isspst.data.RequirementType;
|
||||||
import info.bukova.isspst.data.Role;
|
import info.bukova.isspst.data.Role;
|
||||||
import info.bukova.isspst.data.Workflow;
|
import info.bukova.isspst.data.Workflow;
|
||||||
import info.bukova.isspst.services.requirements.RequirementTypeService;
|
import info.bukova.isspst.services.requirement.RequirementTypeService;
|
||||||
import info.bukova.isspst.services.users.RoleService;
|
import info.bukova.isspst.services.users.RoleService;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
@@ -12,24 +12,28 @@
|
|||||||
|
|
||||||
<!-- Application Loggers -->
|
<!-- Application Loggers -->
|
||||||
<logger name="info.bukova.isspst">
|
<logger name="info.bukova.isspst">
|
||||||
<level value="info" />
|
<level value="warn" />
|
||||||
</logger>
|
</logger>
|
||||||
|
|
||||||
<!-- 3rdparty Loggers -->
|
<!-- 3rdparty Loggers -->
|
||||||
<logger name="org.springframework.core">
|
<logger name="org.springframework.core">
|
||||||
<level value="info" />
|
<level value="warn" />
|
||||||
</logger>
|
</logger>
|
||||||
|
|
||||||
<logger name="org.springframework.beans">
|
<logger name="org.springframework.beans">
|
||||||
<level value="info" />
|
<level value="warn" />
|
||||||
</logger>
|
</logger>
|
||||||
|
|
||||||
<logger name="org.springframework.context">
|
<logger name="org.springframework.context">
|
||||||
<level value="info" />
|
<level value="warn" />
|
||||||
</logger>
|
</logger>
|
||||||
|
|
||||||
<logger name="org.springframework.web">
|
<logger name="org.springframework.web">
|
||||||
<level value="info" />
|
<level value="warn" />
|
||||||
|
</logger>
|
||||||
|
|
||||||
|
<logger name="org.hibernate">
|
||||||
|
<level value="warn" />
|
||||||
</logger>
|
</logger>
|
||||||
|
|
||||||
<!-- Root Logger -->
|
<!-- Root Logger -->
|
||||||
|
|||||||
@@ -10,7 +10,17 @@ MenuUser=Uživatel
|
|||||||
|
|
||||||
AgendaActRequirements=Aktuální požadavky
|
AgendaActRequirements=Aktuální požadavky
|
||||||
AgendaRequirementsHistory=Ukončené požadavky
|
AgendaRequirementsHistory=Ukončené požadavky
|
||||||
RequirementsFormTitle="Požadavek"
|
RequirementsFormTitle=Požadavek
|
||||||
|
RequirementsFormNumberSerie=Číslo
|
||||||
|
RequirementsFormReqDate=Datum požadavku
|
||||||
|
RequirementsFormCenter=Středisko
|
||||||
|
RequirementsFormDescription=Popis
|
||||||
|
RequirementsFormDeliveryDate=Datum dodání
|
||||||
|
RequirementsGridNumberSerie=Číslo
|
||||||
|
RequirementsGridReqDate=Datum požadavku
|
||||||
|
RequirementsGridCenter=Středisko
|
||||||
|
RequirementsGridDescription=Popis
|
||||||
|
RequirementsGridDeliveryDate=Datum dodání
|
||||||
|
|
||||||
AgendaMyOrders=Aktuální
|
AgendaMyOrders=Aktuální
|
||||||
AgendaOrdersHistory=Ukončené
|
AgendaOrdersHistory=Ukončené
|
||||||
@@ -167,3 +177,7 @@ DbValidationError=Chyba validace
|
|||||||
true=Ano
|
true=Ano
|
||||||
false=Ne
|
false=Ne
|
||||||
|
|
||||||
|
DateFormat=dd. MM. yyyy
|
||||||
|
|
||||||
|
AddItem=Přidat položku...
|
||||||
|
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
<property name="hibernateProperties">
|
<property name="hibernateProperties">
|
||||||
<props>
|
<props>
|
||||||
<prop key="hibernate.dialect">${jdbc.dialect}</prop>
|
<prop key="hibernate.dialect">${jdbc.dialect}</prop>
|
||||||
<prop key="hibernate.show_sql">true</prop>
|
<prop key="hibernate.show_sql">false</prop>
|
||||||
<prop key="hibernate.hbm2ddl.auto">update</prop>
|
<prop key="hibernate.hbm2ddl.auto">update</prop>
|
||||||
</props>
|
</props>
|
||||||
</property>
|
</property>
|
||||||
@@ -223,7 +223,7 @@
|
|||||||
<property name="validator" ref="validator"/>
|
<property name="validator" ref="validator"/>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<bean id="reqTypeService" class="info.bukova.isspst.services.requirements.RequirementTypeServiceImpl">
|
<bean id="reqTypeService" class="info.bukova.isspst.services.requirement.RequirementTypeServiceImpl">
|
||||||
<property name="dao" ref="reqTypeDao"/>
|
<property name="dao" ref="reqTypeDao"/>
|
||||||
<property name="validator" ref="validator"/>
|
<property name="validator" ref="validator"/>
|
||||||
</bean>
|
</bean>
|
||||||
@@ -231,6 +231,7 @@
|
|||||||
<bean id="requirementService" class="info.bukova.isspst.services.requirement.RequirementServiceImpl">
|
<bean id="requirementService" class="info.bukova.isspst.services.requirement.RequirementServiceImpl">
|
||||||
<property name="dao" ref="requirementDao" />
|
<property name="dao" ref="requirementDao" />
|
||||||
<property name="validator" ref="validator" />
|
<property name="validator" ref="validator" />
|
||||||
|
<property name="numberSeriesService" ref="numericSeriesService" />
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<bean id="numericSeriesService" class="info.bukova.isspst.services.numberseries.NumberSeriesServiceImpl">
|
<bean id="numericSeriesService" class="info.bukova.isspst.services.numberseries.NumberSeriesServiceImpl">
|
||||||
|
|||||||
@@ -1,15 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE zk.xml>
|
||||||
<zk>
|
<zk>
|
||||||
<!-- [Optional]
|
<!-- [Optional] Uncomment if you want to defines the application's name <preference> <name>org.zkoss.zk.ui.WebApp.name</name> <value>rsfaktura</value> </preference> -->
|
||||||
Uncomment if you want to defines the application's name
|
|
||||||
|
|
||||||
<preference>
|
|
||||||
<name>org.zkoss.zk.ui.WebApp.name</name>
|
|
||||||
<value>rsfaktura</value>
|
|
||||||
</preference>
|
|
||||||
-->
|
|
||||||
|
|
||||||
<client-config>
|
<client-config>
|
||||||
<debug-js>true</debug-js>
|
<debug-js>true</debug-js>
|
||||||
</client-config>
|
</client-config>
|
||||||
@@ -17,27 +9,20 @@
|
|||||||
<name>org.zkoss.web.classWebResource.cache</name>
|
<name>org.zkoss.web.classWebResource.cache</name>
|
||||||
<value>false</value>
|
<value>false</value>
|
||||||
</library-property>
|
</library-property>
|
||||||
|
|
||||||
<system-config>
|
<system-config>
|
||||||
<label-location>/WEB-INF/locales/zk-label.properties</label-location>
|
<label-location>/WEB-INF/locales/zk-label.properties</label-location>
|
||||||
<label-location>/WEB-INF/locales/columns.properties</label-location>
|
<label-location>/WEB-INF/locales/columns.properties</label-location>
|
||||||
<label-location>/WEB-INF/locales/validators.properties</label-location>
|
<label-location>/WEB-INF/locales/validators.properties</label-location>
|
||||||
</system-config>
|
</system-config>
|
||||||
|
|
||||||
<language-config>
|
<language-config>
|
||||||
<addon-uri>/WEB-INF/lang-addons/mapa-lang-addon.xml</addon-uri>
|
<addon-uri>/WEB-INF/lang-addons/mapa-lang-addon.xml</addon-uri>
|
||||||
<addon-uri>/WEB-INF/lang-addons/ckez-bind-lang-addon.xml</addon-uri>
|
<addon-uri>/WEB-INF/lang-addons/ckez-bind-lang-addon.xml</addon-uri>
|
||||||
<addon-uri>/WEB-INF/lang-addons/CzechSortListheader.xml</addon-uri>
|
<addon-uri>/WEB-INF/lang-addons/CzechSortListheader.xml</addon-uri>
|
||||||
</language-config>
|
</language-config>
|
||||||
|
|
||||||
<desktop-config>
|
<desktop-config>
|
||||||
<theme-uri>/css/zk-modify.css</theme-uri>
|
<theme-uri>/css/zk-modify.css</theme-uri>
|
||||||
<theme-uri>/css/form.css</theme-uri>
|
<theme-uri>/css/form.css</theme-uri>
|
||||||
<theme-uri>/css/page.css</theme-uri>
|
<theme-uri>/css/page.css</theme-uri>
|
||||||
</desktop-config>
|
</desktop-config>
|
||||||
|
<!-- <library-property> <name>org.zkoss.zul.progressbox.position</name> <value>center</value> </library-property> -->
|
||||||
<!-- <library-property>
|
|
||||||
<name>org.zkoss.zul.progressbox.position</name>
|
|
||||||
<value>center</value>
|
|
||||||
</library-property> -->
|
|
||||||
</zk>
|
</zk>
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.6 KiB |
@@ -1,22 +1,50 @@
|
|||||||
<?page title="${labels.AgendaActRequirements}" contentType="text/html;charset=UTF-8"?>
|
<?page title="${labels.AgendaActRequirements}" contentType="text/html;charset=UTF-8"?>
|
||||||
<zk>
|
<zk>
|
||||||
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
||||||
<window border="normal" apply="org.zkoss.bind.BindComposer" viewModel="@id('vm') @init('info.bukova.isspst.ui.requirement.RequirementList')">
|
<window
|
||||||
<caption zclass="form-caption" label="${labels.AgendaActRequirements}" />
|
border="normal"
|
||||||
|
apply="org.zkoss.bind.BindComposer"
|
||||||
|
viewModel="@id('vm') @init('info.bukova.isspst.ui.requirement.RequirementList')">
|
||||||
|
<caption
|
||||||
|
zclass="form-caption"
|
||||||
|
label="${labels.AgendaActRequirements}" />
|
||||||
<include src="/app/toolbar.zul" />
|
<include src="/app/toolbar.zul" />
|
||||||
|
<listbox
|
||||||
<listbox model="@load(vm.dataList)" selectedItem="@bind(vm.dataBean)">
|
model="@load(vm.dataList)"
|
||||||
|
selectedItem="@bind(vm.dataBean)">
|
||||||
<listhead menupopup="auto">
|
<listhead menupopup="auto">
|
||||||
<listheader label="${labels.BuildingsGridColumnCode}" sort="czech(numser)" width="10%" />
|
<listheader
|
||||||
<listheader label="${labels.BuildingsGridColumnName}" sort="auto(reqDate)" width="30%" />
|
label="${labels.RequirementsGridNumberSerie}"
|
||||||
<listheader label="${labels.BuildingsGridColumnDescription}" sort="czech(description)" width="60%" />
|
sort="czech(numser)"
|
||||||
|
width="7%" />
|
||||||
|
<listheader
|
||||||
|
label="${labels.RequirementsGridReqDate}"
|
||||||
|
sort="auto(reqDate)"
|
||||||
|
width="13%" />
|
||||||
|
<listheader
|
||||||
|
label="${labels.RequirementsGridCenter}"
|
||||||
|
sort="czech(description)"
|
||||||
|
width="10%" />
|
||||||
|
<listheader
|
||||||
|
label="${labels.RequirementsGridDescription}"
|
||||||
|
sort="czech(description)"
|
||||||
|
width="70%" />
|
||||||
|
<listheader
|
||||||
|
label="${labels.RequirementsGridDeliveryDate}"
|
||||||
|
sort="auto(reqDate)"
|
||||||
|
width="13%" />
|
||||||
</listhead>
|
</listhead>
|
||||||
|
<auxhead
|
||||||
<auxhead sclass="category-center" visible="@load(vm.filter)">
|
sclass="category-center"
|
||||||
|
visible="@load(vm.filter)">
|
||||||
<auxheader>
|
<auxheader>
|
||||||
<div sclass="find-grid-cell">
|
<div sclass="find-grid-cell">
|
||||||
<div sclass="find-grid-divtextbox">
|
<div sclass="find-grid-divtextbox">
|
||||||
<textbox value="@bind(vm.filterTemplate.numser)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
<textbox
|
||||||
|
value="@bind(vm.filterTemplate.numser)"
|
||||||
|
instant="true"
|
||||||
|
onChange="@command('doFilter')"
|
||||||
|
sclass="find-grid-textbox" />
|
||||||
</div>
|
</div>
|
||||||
<div sclass="find-grid-img">
|
<div sclass="find-grid-img">
|
||||||
<image src="/img/funnel.png" />
|
<image src="/img/funnel.png" />
|
||||||
@@ -26,7 +54,42 @@
|
|||||||
<auxheader>
|
<auxheader>
|
||||||
<div sclass="find-grid-cell">
|
<div sclass="find-grid-cell">
|
||||||
<div sclass="find-grid-divtextbox">
|
<div sclass="find-grid-divtextbox">
|
||||||
<datebox value="@bind(vm.filterTemplate.reqDate)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
<datebox
|
||||||
|
value="@bind(vm.filterTemplate.reqDate)"
|
||||||
|
format="${labels.DateFormat}"
|
||||||
|
instant="true"
|
||||||
|
onChange="@command('doFilter')"
|
||||||
|
sclass="find-grid-textbox"
|
||||||
|
width="100%" />
|
||||||
|
</div>
|
||||||
|
<div sclass="find-grid-img">
|
||||||
|
<image src="/img/funnel.png" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</auxheader>
|
||||||
|
<auxheader>
|
||||||
|
<div sclass="find-grid-cell">
|
||||||
|
<combobox
|
||||||
|
readonly="true"
|
||||||
|
width="100%"
|
||||||
|
selectedItem="@bind(vm.filterTemplate.workgroup)">
|
||||||
|
<template name="modelW">
|
||||||
|
<comboitem label="@load(each.workgroup.fullName)" />
|
||||||
|
</template>
|
||||||
|
</combobox>
|
||||||
|
<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.description)"
|
||||||
|
instant="true"
|
||||||
|
onChange="@command('doFilter')"
|
||||||
|
sclass="find-grid-textbox" />
|
||||||
</div>
|
</div>
|
||||||
<div sclass="find-grid-img">
|
<div sclass="find-grid-img">
|
||||||
<image src="/img/funnel.png" />
|
<image src="/img/funnel.png" />
|
||||||
@@ -36,7 +99,13 @@
|
|||||||
<auxheader>
|
<auxheader>
|
||||||
<div sclass="find-grid-cell">
|
<div sclass="find-grid-cell">
|
||||||
<div sclass="find-grid-divtextbox">
|
<div sclass="find-grid-divtextbox">
|
||||||
<textbox value="@bind(vm.filterTemplate.description)" instant="true" onChange="@command('doFilter')" sclass="find-grid-textbox" />
|
<datebox
|
||||||
|
value="@bind(vm.filterTemplate.deliveryDate)"
|
||||||
|
format="${labels.DateFormat}"
|
||||||
|
instant="true"
|
||||||
|
onChange="@command('doFilter')"
|
||||||
|
sclass="find-grid-textbox"
|
||||||
|
width="100%" />
|
||||||
</div>
|
</div>
|
||||||
<div sclass="find-grid-img">
|
<div sclass="find-grid-img">
|
||||||
<image src="/img/funnel.png" />
|
<image src="/img/funnel.png" />
|
||||||
@@ -44,15 +113,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</auxheader>
|
</auxheader>
|
||||||
</auxhead>
|
</auxhead>
|
||||||
|
|
||||||
<template name="model">
|
<template name="model">
|
||||||
<listitem>
|
<listitem>
|
||||||
<listcell label="@load(each.numser)" />
|
<listcell label="@load(each.numser)" />
|
||||||
<listcell label="@load(each.reqDate)" />
|
<listcell label="@load(each.reqDate) @converter('formatedDate', format=labels.DateFormat)" />
|
||||||
|
<listcell label="@load(each.workgroup.fullName)" />
|
||||||
<listcell label="@load(each.description)" />
|
<listcell label="@load(each.description)" />
|
||||||
|
<listcell label="@load(each.deliveryDate) @converter('formatedDate', format=labels.DateFormat)" />
|
||||||
</listitem>
|
</listitem>
|
||||||
</template>
|
</template>
|
||||||
</listbox>
|
</listbox>
|
||||||
|
|
||||||
</window>
|
</window>
|
||||||
</zk>
|
</zk>
|
||||||
@@ -1,34 +1,87 @@
|
|||||||
<?page title="${labels.RequirementsFormTitle}" contentType="text/html;charset=UTF-8"?>
|
<?page title="${labels.RequirementsFormTitle}" contentType="text/html;charset=UTF-8"?>
|
||||||
<zk>
|
<zk>
|
||||||
<window id="editWin" closable="true" border="normal" position="center" apply="org.zkoss.bind.BindComposer" viewModel="@id('vm') @init('info.bukova.isspst.ui.requirement.RequirementForm')">
|
<window
|
||||||
<caption src="/img/reqact.png" zclass="form-caption" label="RequirementsFormTitle" />
|
id="editWin"
|
||||||
|
closable="true"
|
||||||
|
border="normal"
|
||||||
|
position="center"
|
||||||
|
apply="org.zkoss.bind.BindComposer"
|
||||||
|
viewModel="@id('vm') @init('info.bukova.isspst.ui.requirement.RequirementForm')">
|
||||||
|
<caption
|
||||||
|
src="/img/reqact.png"
|
||||||
|
zclass="form-caption"
|
||||||
|
label="${labels.RequirementsFormTitle}" />
|
||||||
<vlayout>
|
<vlayout>
|
||||||
<grid hflex="min">
|
<grid hflex="min">
|
||||||
<columns>
|
<columns>
|
||||||
<column align="right" hflex="min" />
|
<column
|
||||||
|
align="right"
|
||||||
|
hflex="min" />
|
||||||
<column />
|
<column />
|
||||||
</columns>
|
</columns>
|
||||||
<rows>
|
<rows>
|
||||||
<row>
|
<row>
|
||||||
<cell sclass="row-title">${labels.BuildingsFormCode} :</cell>
|
<cell sclass="row-title">${labels.RequirementsFormNumberSerie} :</cell>
|
||||||
<cell>
|
<cell>
|
||||||
<textbox id="code" constraint="@load(vm.constriant)" width="200px" value="@bind(vm.dataBean.numser)" />
|
<textbox
|
||||||
|
id="numser"
|
||||||
|
constraint="@load(vm.constriant)"
|
||||||
|
width="200px"
|
||||||
|
value="@bind(vm.dataBean.numser)"
|
||||||
|
readonly="true" />
|
||||||
</cell>
|
</cell>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<cell sclass="row-title">${labels.BuildingsFormName} :</cell>
|
<cell sclass="row-title">${labels.RequirementsFormReqDate} :</cell>
|
||||||
<cell>
|
<cell>
|
||||||
<datebox id="name" width="200px" value="@bind(vm.dataBean.reqDate)" />
|
<datebox
|
||||||
|
id="reqDate"
|
||||||
|
width="200px"
|
||||||
|
value="@bind(vm.dataBean.reqDate)"
|
||||||
|
format="${labels.DateFormat}" />
|
||||||
</cell>
|
</cell>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<cell sclass="row-title">${labels.BuildingsFormDescription} :</cell>
|
<cell sclass="row-title">${labels.RequirementsFormCenter} :</cell>
|
||||||
<cell>
|
<cell>
|
||||||
<textbox id="description" width="300px" value="@bind(vm.dataBean.description)" />
|
<combobox
|
||||||
|
model="@load(vm.centres)"
|
||||||
|
readonly="true"
|
||||||
|
selectedItem="@bind(vm.dataBean.workgroup)">
|
||||||
|
<template name="model">
|
||||||
|
<comboitem label="@load(each.fullName)" />
|
||||||
|
</template>
|
||||||
|
</combobox>
|
||||||
|
</cell>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<cell sclass="row-title">${labels.RequirementsFormDescription} :</cell>
|
||||||
|
<cell>
|
||||||
|
<textbox
|
||||||
|
id="description"
|
||||||
|
width="300px"
|
||||||
|
value="@bind(vm.dataBean.description)" />
|
||||||
|
</cell>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<cell sclass="row-title">${labels.RequirementsFormDeliveryDate} :</cell>
|
||||||
|
<cell>
|
||||||
|
<datebox
|
||||||
|
id="deliveryDate"
|
||||||
|
width="200px"
|
||||||
|
value="@bind(vm.dataBean.deliveryDate)"
|
||||||
|
format="${labels.DateFormat}" />
|
||||||
</cell>
|
</cell>
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
|
<hbox>
|
||||||
|
<button
|
||||||
|
image="/img/item-add.png"
|
||||||
|
label="${labels.AddItem}"
|
||||||
|
onClick="@command('addItem')"
|
||||||
|
sclass="nicebutton" />
|
||||||
|
</hbox>
|
||||||
<include src="/app/formButtons.zul" />
|
<include src="/app/formButtons.zul" />
|
||||||
</vlayout>
|
</vlayout>
|
||||||
</window>
|
</window>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?page title="${labels.AgendaWorkflow}" contentType="text/html;charset=UTF-8"?>
|
<?page title="${labels.AgendaWorkflow}" contentType="text/html;charset=UTF-8"?>
|
||||||
<zk>
|
<zk>
|
||||||
<window border="normal" apply="org.zkoss.bind.BindComposer"
|
<window border="normal" apply="org.zkoss.bind.BindComposer"
|
||||||
viewModel="@id('vm') @init('info.bukova.isspst.ui.requirements.RequirementTypesVM')">
|
viewModel="@id('vm') @init('info.bukova.isspst.ui.requirement.RequirementTypesVM')">
|
||||||
<caption zclass="form-caption" label="${labels.AgendaWorkflow}" />
|
<caption zclass="form-caption" label="${labels.AgendaWorkflow}" />
|
||||||
<vbox>
|
<vbox>
|
||||||
<hbox>
|
<hbox>
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE log4j:configuration PUBLIC "-//APACHE//DTD LOG4J 1.2//EN" "log4j.dtd">
|
|
||||||
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
|
|
||||||
|
|
||||||
<!-- Appenders -->
|
|
||||||
<appender name="console" class="org.apache.log4j.ConsoleAppender">
|
|
||||||
<param name="Target" value="System.out" />
|
|
||||||
<layout class="org.apache.log4j.PatternLayout">
|
|
||||||
<param name="ConversionPattern" value="%-5p: %c - %m%n" />
|
|
||||||
</layout>
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<!-- Application Loggers -->
|
|
||||||
<logger name="info.bukova.isspst">
|
|
||||||
<level value="info" />
|
|
||||||
</logger>
|
|
||||||
|
|
||||||
<!-- 3rdparty Loggers -->
|
|
||||||
<logger name="org.springframework.core">
|
|
||||||
<level value="info" />
|
|
||||||
</logger>
|
|
||||||
|
|
||||||
<logger name="org.springframework.beans">
|
|
||||||
<level value="info" />
|
|
||||||
</logger>
|
|
||||||
|
|
||||||
<logger name="org.springframework.context">
|
|
||||||
<level value="info" />
|
|
||||||
</logger>
|
|
||||||
|
|
||||||
<logger name="org.springframework.web">
|
|
||||||
<level value="info" />
|
|
||||||
</logger>
|
|
||||||
|
|
||||||
<!-- Root Logger -->
|
|
||||||
<root>
|
|
||||||
<priority value="info" />
|
|
||||||
<appender-ref ref="console" />
|
|
||||||
</root>
|
|
||||||
|
|
||||||
</log4j:configuration>
|
|
||||||
Reference in New Issue
Block a user