This commit is contained in:
gaby 2021-02-24 16:24:37 +01:00
parent 68daab0dfc
commit 686ae2357d
7 changed files with 2883 additions and 561 deletions

View file

@ -22,7 +22,6 @@
</ui:include>
</f:subview>
<div class="imixs-form-section-2">
<dl>
<dt>Zahlungsart</dt>
<dd>
@ -37,17 +36,6 @@
</h:selectOneMenu>
</dd>
</dl>
<dl>
<dt>Keine Buchung in Cargosoft</dt>
<dd>
<h:selectBooleanCheckbox value="#{workflowController.workitem.item['invoice.no_cargosoft_export']}"></h:selectBooleanCheckbox>
</dd>
</dl>
</div>
<!-- sub forms (optional) -->

View file

@ -0,0 +1,24 @@
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:a="http://xmlns.jcp.org/jsf/passthrough">
<div class="imixs-form-section-2">
<dl>
<dt>
Exchange Rate:<span class="imixs-required">*</span>
</dt>
<dd>
<h:inputText required="#{validationController.required}"
value="#{workitem.item['invoice.exchangerate']}">
<f:convertNumber />
</h:inputText>
</dd>
</dl>
</div>
</ui:composition>

View file

@ -0,0 +1,20 @@
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:a="http://xmlns.jcp.org/jsf/passthrough">
<dl>
<dt>
Exchange Rate:<span class="imixs-required">*</span>
</dt>
<dd>
<h:outputText required="true"
value="#{workitem.item['invoice.exchangerate']}">
</h:outputText>
</dd>
</dl>
</ui:composition>

View file

@ -6,20 +6,6 @@
xmlns:a="http://xmlns.jcp.org/jsf/passthrough">
<div class="imixs-form-section-2">
<dl>
<dt>
Exchange Rate:<span class="imixs-required">*</span>
</dt>
<dd>
<h:inputText required="#{validationController.required}"
value="#{workitem.item['invoice.exchangerate']}">
<f:convertNumber />
</h:inputText>
</dd>
</dl>
</div>
<h:panelGroup layout="block" styleClass="imixs-form-section"
id="oderlist" binding="#{orderlistContainer}">

View file

@ -5,16 +5,6 @@
xmlns:h="http://xmlns.jcp.org/jsf/html">
<dl>
<dt>
Exchange Rate:<span class="imixs-required">*</span>
</dt>
<dd>
<h:outputText required="true"
value="#{workitem.item['invoice.exchangerate']}">
</h:outputText>
</dd>
</dl>
<h:panelGroup layout="block" styleClass="imixs-form-section"
id="oderlist" binding="#{orderlistContainer}">

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff