update
This commit is contained in:
parent
c68c7edb99
commit
808be17846
2 changed files with 566 additions and 251 deletions
|
|
@ -12,7 +12,7 @@
|
||||||
value="#{modelController.getProcessDescription(workflowController.workitem.item['$taskid'],workflowController.workitem.item['$ModelVersion'],workflowController.workitem)}"></ui:param>
|
value="#{modelController.getProcessDescription(workflowController.workitem.item['$taskid'],workflowController.workitem.item['$ModelVersion'],workflowController.workitem)}"></ui:param>
|
||||||
<h:panelGroup layout="block" styleClass="imixs-instruction"
|
<h:panelGroup layout="block" styleClass="imixs-instruction"
|
||||||
rendered="#{! empty instruction}">
|
rendered="#{! empty instruction}">
|
||||||
<h:outputText escape="false" value="#{instruction}"/>
|
<h:outputText escape="false" value="#{instruction}" />
|
||||||
</h:panelGroup>
|
</h:panelGroup>
|
||||||
|
|
||||||
<!-- Custom Form -->
|
<!-- Custom Form -->
|
||||||
|
|
@ -22,19 +22,28 @@
|
||||||
</ui:include>
|
</ui:include>
|
||||||
</f:subview>
|
</f:subview>
|
||||||
|
|
||||||
|
<div class="imixs-form-section-2">
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Zahlungsart</dt>
|
<dt>Zahlungsart</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<h:selectOneMenu style="width:20em;" required="true" value="#{workflowController.workitem.item['payment.type']}" >
|
<h:selectOneMenu style="width:20em;" required="true"
|
||||||
|
value="#{workflowController.workitem.item['payment.type']}">
|
||||||
<c:forEach items="#{sepaController.dbtrList}" var="dbtr">
|
<c:forEach items="#{sepaController.dbtrList}" var="dbtr">
|
||||||
<f:selectItem itemLabel="#{dbtr.item['name']}" itemValue="#{dbtr.item['name']}" />
|
<f:selectItem itemLabel="#{dbtr.item['name']}"
|
||||||
|
itemValue="#{dbtr.item['name']}" />
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
<f:selectItem itemLabel="Lastschrift" itemValue="direct_debit" />
|
<f:selectItem itemLabel="Lastschrift" itemValue="direct_debit" />
|
||||||
<f:selectItem itemLabel="Gutschrift" itemValue="credit" />
|
<f:selectItem itemLabel="Gutschrift" itemValue="credit" />
|
||||||
<f:selectItem itemLabel="Gutschrift (ohne Cargosoft)" itemValue="credit_2" />
|
|
||||||
</h:selectOneMenu>
|
</h:selectOneMenu>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
<dl>
|
||||||
|
<dt>Keine Buchung in Cargosoft</dt>
|
||||||
|
<dd>
|
||||||
|
<h:selectBooleanCheckbox value="#{workflowController.workitem.item['invoice.no_cargosoft_export']}"></h:selectBooleanCheckbox>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue