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>
|
||||
<h:panelGroup layout="block" styleClass="imixs-instruction"
|
||||
rendered="#{! empty instruction}">
|
||||
<h:outputText escape="false" value="#{instruction}"/>
|
||||
<h:outputText escape="false" value="#{instruction}" />
|
||||
</h:panelGroup>
|
||||
|
||||
<!-- Custom Form -->
|
||||
|
|
@ -22,19 +22,28 @@
|
|||
</ui:include>
|
||||
</f:subview>
|
||||
|
||||
<dl>
|
||||
<dt>Zahlungsart</dt>
|
||||
<dd>
|
||||
<h:selectOneMenu style="width:20em;" required="true" value="#{workflowController.workitem.item['payment.type']}" >
|
||||
<c:forEach items="#{sepaController.dbtrList}" var="dbtr">
|
||||
<f:selectItem itemLabel="#{dbtr.item['name']}" itemValue="#{dbtr.item['name']}" />
|
||||
</c:forEach>
|
||||
<f:selectItem itemLabel="Lastschrift" itemValue="direct_debit" />
|
||||
<f:selectItem itemLabel="Gutschrift" itemValue="credit" />
|
||||
<f:selectItem itemLabel="Gutschrift (ohne Cargosoft)" itemValue="credit_2" />
|
||||
</h:selectOneMenu>
|
||||
</dd>
|
||||
</dl>
|
||||
<div class="imixs-form-section-2">
|
||||
<dl>
|
||||
<dt>Zahlungsart</dt>
|
||||
<dd>
|
||||
<h:selectOneMenu style="width:20em;" required="true"
|
||||
value="#{workflowController.workitem.item['payment.type']}">
|
||||
<c:forEach items="#{sepaController.dbtrList}" var="dbtr">
|
||||
<f:selectItem itemLabel="#{dbtr.item['name']}"
|
||||
itemValue="#{dbtr.item['name']}" />
|
||||
</c:forEach>
|
||||
<f:selectItem itemLabel="Lastschrift" itemValue="direct_debit" />
|
||||
<f:selectItem itemLabel="Gutschrift" itemValue="credit" />
|
||||
</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>
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue