132 lines
No EOL
3.6 KiB
HTML
132 lines
No EOL
3.6 KiB
HTML
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core"
|
|
xmlns:h="http://java.sun.com/jsf/html" xmlns:ui="http://java.sun.com/jsf/facelets"
|
|
xmlns:i="http://java.sun.com/jsf/composite/imixs" xmlns:c="http://java.sun.com/jsp/jstl/core"
|
|
xmlns:marty="http://java.sun.com/jsf/composite/marty" template="/layout/template.xhtml">
|
|
|
|
<ui:define name="content">
|
|
<f:view>
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
|
|
/*]]>*/
|
|
</script>
|
|
|
|
<h:form id="import_form_id">
|
|
<!-- ########## Error ########## -->
|
|
<ui:include src="/error_message.xhtml" />
|
|
<div class="imixs-form">
|
|
<div class="imixs-header">
|
|
<h1>Parameter</h1>
|
|
<h2>#{global.edit}</h2>
|
|
</div>
|
|
<div class="imixs-body">
|
|
<!-- **** General info ***** -->
|
|
|
|
<div class="imixs-form-panel">
|
|
|
|
<div class="imixs-form-section-2">
|
|
<dl>
|
|
<dt>#{custom['pos.tax']}: <span class="imixs-required">*</span></dt>
|
|
<dd>
|
|
|
|
<h:inputTextarea required="true" converter="org.imixs.VectorConverter"
|
|
style="height: 8em; width: 100%;"
|
|
value="#{aglConfigController.workitem.itemList['invoice.tax']}">
|
|
</h:inputTextarea>
|
|
|
|
<span class="small">Tax keys for invoice positions.</span>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
|
|
<dl>
|
|
<dt>#{custom['pos.type']}: <span class="imixs-required">*</span></dt>
|
|
<dd>
|
|
<h:inputTextarea required="true" converter="org.imixs.VectorConverter"
|
|
style="height: 8em; width: 100%;"
|
|
value="#{aglConfigController.workitem.itemList['invoice.type']}">
|
|
</h:inputTextarea>
|
|
<span class="small">Activity types
|
|
for invoice positions.</span>
|
|
</dd>
|
|
</dl>
|
|
|
|
|
|
<dl>
|
|
<dt>Currencies Incoming Invoices: <span class="imixs-required">*</span></dt>
|
|
<dd>
|
|
<h:inputTextarea required="true" converter="org.imixs.VectorConverter"
|
|
style="height: 8em; width: 100%;"
|
|
value="#{aglConfigController.workitem.itemList['currency.in']}">
|
|
</h:inputTextarea>
|
|
<span class="small">The first entry marks the main currency!</span>
|
|
|
|
</dd>
|
|
</dl>
|
|
|
|
|
|
|
|
<dl>
|
|
<dt>Currencies Outgoing Invoices: <span class="imixs-required">*</span></dt>
|
|
<dd>
|
|
<h:inputTextarea required="true" converter="org.imixs.VectorConverter"
|
|
style="height: 8em; width: 100%;"
|
|
value="#{aglConfigController.workitem.itemList['currency.out']}">
|
|
</h:inputTextarea>
|
|
<span class="small">The first entry marks the main currency!</span>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
|
|
|
|
<dl>
|
|
<dt>Mandant ID: <span class="imixs-required">*</span></dt>
|
|
<dd>
|
|
<h:inputText required="true"
|
|
value="#{aglConfigController.workitem.item['mandant.id']}">
|
|
</h:inputText>
|
|
<span class="small">Cargosoft Mandant ID.</span>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="imixs-footer">
|
|
|
|
|
|
<h:outputLabel value="#{message.modified}: " />
|
|
<h:outputText value="#{aglConfigController.workitem.item['$modified']}">
|
|
<f:convertDateTime timeZone="#{message.timeZone}" type="both"
|
|
pattern="#{message.dateTimePattern}" />
|
|
</h:outputText>
|
|
<br />
|
|
<h:commandButton actionListener="#{aglConfigController.save}" value="#{message.save}">
|
|
</h:commandButton>
|
|
<h:commandButton value="#{message.close}" action="notes" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</h:form>
|
|
</f:view>
|
|
</ui:define>
|
|
|
|
|
|
|
|
</ui:composition> |