Importer/views/twig/admin/d3_importer_selectlist.html...

251 lines
14 KiB
Twig

{% include "headitem.html.twig" with {title: "GENERAL_ADMIN_TITLE"|translate, box: "box"} %}
{{ style({ include: oViewConf.getModuleUrl('d3modcfg_lib', 'out/admin/src/d3_mod_cfg.min.css') }) }}
{{ style() }}
{% include "@d3importer/admin/errormessages.html.twig" %}
{% if readonly %}
{% set readonly = "readonly disabled" %}
{% else %}
{% set readonly = "" %}
{% endif %}
<style type="text/css">
<!--
select {
max-width : 375px;
}
-->
</style>
<script type="text/javascript">
<!--
{% if updatelist == 1 %}
UpdateList('{{ oxid }}');
{% endif %}
function UpdateList(sID) {
var oSearch = parent.list.document.getElementById("search");
oSearch.oxid.value = sID;
oSearch.submit();
}
function ChangeLine(iLine) {
var oFormEdit = document.getElementById("myedit");
oFormEdit.line.value = iLine;
oFormEdit.fnc.value = '';
oFormEdit.submit();
}
//-->
</script>
<form name="transfer" id="transfer" action="{{ oViewConf.getSelfLink()|raw }}" method="post">
{{ oViewConf.getHiddenSid()|raw }}
<input type="hidden" name="oxid" value="{{ oxid }}">
<input type="hidden" name="cl" value="{{ oViewConf.getActiveClassName() }}">
<input type="hidden" name="editlanguage" value="{{ editlanguage }}">
</form>
<form name="myedit" id="myedit" action="{{ oViewConf.getSelfLink()|raw }}" method="post">
<div>
{{ oViewConf.getHiddenSid()|raw }}
<input type="hidden" name="cl" value="{{ oViewConf.getActiveClassName() }}">
<input type="hidden" name="fnc" value="">
<input type="hidden" name="oxid" value="{{ oxid }}">
<input type="hidden" name="line" value="{{ actcsvline }}">
</div>
<table border="0" width="98%" style="border-collapse: collapse">
<colgroup>
<col width="25%">
<col width="75%">
</colgroup>
{% include "@d3importer/admin/d3_importer_inc_nav.html.twig" with {colspan: "2"} %}
{% if maxcsvline %}
{% block d3_d3importer_views_admin_tpl_d3_importer_selectlist_head %}
<tr>
<td class="edittext" style="padding:5px;">
{{ translate({ ident: "D3_IMPORTER_SELECTLIST_IMPORTTYPE" }) }}
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_IMPORTER_SELECTLIST_IMPORTTYPEINFO_HELP"), 'sHelpText': help_text("D3_IMPORTER_SELECTLIST_IMPORTTYPEINFO_HELP")} %}
</td>
<td class="edittext" style="padding:5px;">
<select name="xmlval[IMPORTTYPE]" {{ readonly }}>
<option value="import"
{% if aProfile.IMPORTTYPE == "import" %}SELECTED{% endif %}>{{ translate({ ident: "D3_IMPORTER_SELECTLIST_IMPORTTYPE1" }) }}</option>
<option value="clearbefore"
{% if aProfile.IMPORTTYPE == "clearbefore" %}SELECTED{% endif %}>{{ translate({ ident: "D3_IMPORTER_SELECTLIST_IMPORTTYPE2" }) }}</option>
</select>
</td>
</tr>
{% endblock %}
{% block d3_d3importer_views_admin_tpl_d3_importer_selectlist_items %}
{% set count = 1 %}
{% for colum in aProfile.IMPORTCOLUM %}
{% if colum.NAME != '' %}
<tr>
<td class="edittext"
style="border: 1px #7A7A7A solid; padding:5px; border-right: 0; border-bottom: 0">
{{ translate({ ident: "D3_IMPORTER_SELECTLIST_NAME" }) }}&nbsp;{{ count }}
</td>
<td class="edittext"
style="border: 1px #7A7A7A solid; padding:5px; border-left: 0; border-bottom: 0">
<select name="xmlval[IMPORTCOLUM][{{ count }}][NAME]" {{ readonly }}>
<option value="">{{ translate({ ident: "D3_IMPORTER_SELECTLIST_NOASSIGN" }) }}</option>
{% for key, name in aCSVLines %}
<option
value="{{ key }}"
{% if colum.NAME == key and colum.NAME != "" %}selected{% endif %}
>
{{ name|striptags|truncate(70, "&nbsp;...", false) }}
</option>
{% endfor %}
</select>
</td>
</tr>
<tr>
<td class="edittext" style="border-left: 1px #7A7A7A solid; padding:5px;">
{{ translate({ ident: "D3_IMPORTER_SELECTLIST_ALTNAME" }) }}
</td>
<td class="edittext" style="border-right: 1px #7A7A7A solid; padding:5px;">
<input type="text" size="30" name="xmlval[IMPORTCOLUM][{{ count }}][ALTNAME]"
value="{{ colum.ALTNAME }}" {{ readonly }}>
</td>
</tr>
<tr>
<td class="edittext" style="border-left: 1px #7A7A7A solid; padding:5px;">
{{ translate({ ident: "D3_IMPORTER_SELECTLIST_VALUE" }) }}&nbsp;{{ count }}&nbsp;
</td>
<td class="edittext" style="border-right: 1px #7A7A7A solid; padding:5px;">
<select name="xmlval[IMPORTCOLUM][{{ count }}][VALUE]" {{ readonly }}>
<option value="">{{ translate({ ident: "D3_IMPORTER_SELECTLIST_NOASSIGN" }) }}</option>
{% for key, name in aCSVLines %}
<option
value="{{ key }}"
{% if colum.VALUE == key and colum.VALUE != "" %}selected{% endif %}
>
{{ name|striptags|truncate(70, "&nbsp;...", false) }}
</option>
{% endfor %}
</select>
</td>
</tr>
<tr>
<td class="edittext" style="border-left: 1px #7A7A7A solid; padding:5px;">
{{ translate({ ident: "D3_IMPORTER_SELECTLIST_SEPARATOR" }) }}
</td>
<td class="edittext" style="border-right: 1px #7A7A7A solid; padding:5px;">
<input type="text" size="3" name="xmlval[IMPORTCOLUM][{{ count }}][SEPARATOR]"
{% if colum.SEPARATOR == '"' %}
value='{{ colum.SEPARATOR }}'
{% else %}
value="{{ colum.SEPARATOR }}"
{% endif %} {{ readonly }}
>
</td>
</tr>
<tr>
<td class="edittext"
style="border: 1px #7A7A7A solid; padding:5px; border-right: 0; border-top: 0">
{{ translate({ ident: "D3_IMPORTER_SELECTLIST_PRICESEPARATOR" }) }}
</td>
<td class="edittext"
style="border: 1px #7A7A7A solid; padding:5px; border-left: 0; border-top: 0">
<input type="text" size="3" name="xmlval[IMPORTCOLUM][{{ count }}][SEPARATOR_PRICE]"
{% if colum.SEPARATOR_PRICE == '"' %}
value='{{ colum.SEPARATOR_PRICE }}'
{% else %}
value="{{ colum.SEPARATOR_PRICE }}"
{% endif %} {{ readonly }}
>
</td>
</tr>
<tr>
<td class="edittext" colspan="2">&nbsp;</td>
</tr>
{% set count = count+1 %}
{% endif %}
{% endfor %}
<tr>
<td class="edittext" colspan="2" style="padding:5px;">
<strong>{{ translate({ ident: "D3_IMPORTER_SELECTLIST_INFOTEXT" }) }}</strong>
</td>
</tr>
<tr>
<td class="edittext" style="border: 1px #7A7A7A solid; padding:5px; border-right: 0; border-bottom: 0">
{{ translate({ ident: "D3_IMPORTER_SELECTLIST_NAME" }) }}&nbsp;{{ count }}
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_IMPORTER_SELECTLIST_TITLE_HELP"), 'sHelpText': help_text("D3_IMPORTER_SELECTLIST_TITLE_HELP")} %}
</td>
<td class="edittext" style="border: 1px #7A7A7A solid; padding:5px; border-left: 0; border-bottom: 0">
<select name="xmlval[IMPORTCOLUM][{{ count }}][NAME]" {{ readonly }}>
<option value="">{{ translate({ ident: "D3_IMPORTER_SELECTLIST_NOASSIGN" }) }}</option>
{% for key, name in aCSVLines %}
<option value="{{ key }}">{{ name|striptags|truncate(70, "&nbsp;...", false) }}</option>
{% endfor %}
</select>
</td>
</tr>
<tr>
<td class="edittext" style="border-left: 1px #7A7A7A solid; padding:5px;">
{{ translate({ ident: "D3_IMPORTER_SELECTLIST_ALTNAME" }) }}
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_IMPORTER_SELECTLIST_ALTTITLE_HELP"), 'sHelpText': help_text("D3_IMPORTER_SELECTLIST_ALTTITLE_HELP")} %}
</td>
<td class="edittext" style="border-right: 1px #7A7A7A solid; padding:5px;">
<input type="text"
size="30"
name="xmlval[IMPORTCOLUM][{{ count }}][ALTNAME]"
value="Auswahl"
{{ readonly }}>
</td>
</tr>
<tr>
<td class="edittext" style="border-left: 1px #7A7A7A solid; padding:5px;">
{{ translate({ ident: "D3_IMPORTER_SELECTLIST_VALUE" }) }}&nbsp;{{ count }}
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_IMPORTER_SELECTLIST_SELECTFIELDS_HELP"), 'sHelpText': help_text("D3_IMPORTER_SELECTLIST_SELECTFIELDS_HELP")} %}
</td>
<td class="edittext" style="border-right: 1px #7A7A7A solid; padding:5px;">
<select name="xmlval[IMPORTCOLUM][{{ count }}][VALUE]" {{ readonly }}>
<option value="">{{ translate({ ident: "D3_IMPORTER_SELECTLIST_NOASSIGN" }) }}</option>
{% for key, name in aCSVLines %}
<option value="{{ key }}">{{ name|striptags|truncate(70, "&nbsp;...", false) }}</option>
{% endfor %}
</select>
</td>
</tr>
<tr>
<td class="edittext" style="border-left: 1px #7A7A7A solid; padding:5px;">
{{ translate({ ident: "D3_IMPORTER_SELECTLIST_SEPARATOR" }) }}
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_IMPORTER_SELECTLIST_SEPARATOR_HELP"), 'sHelpText': help_text("D3_IMPORTER_SELECTLIST_SEPARATOR_HELP")} %}
</td>
<td class="edittext" style="border-right: 1px #7A7A7A solid; padding:5px;">
&nbsp;<input type="text"
size="3"
name="xmlval[IMPORTCOLUM][{{ count }}][SEPARATOR]"
{{ readonly }}>&nbsp;
</td>
</tr>
<tr>
<td class="edittext" style="border: 1px #7A7A7A solid; padding:5px; border-right: 0; border-top: 0">
{{ translate({ ident: "D3_IMPORTER_SELECTLIST_PRICESEPARATOR" }) }}
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_IMPORTER_SELECTLIST_PRICESEPARATOR_HELP"), 'sHelpText': help_text("D3_IMPORTER_SELECTLIST_PRICESEPARATOR_HELP")} %}
</td>
<td class="edittext" style="border: 1px #7A7A7A solid; padding:5px; border-left: 0; border-top: 0">
<input type="text"
size="3"
name="xmlval[IMPORTCOLUM][{{ count }}][SEPARATOR_PRICE]"
{{ readonly }}>&nbsp;
</td>
</tr>
{% endblock %}
<tr>
<td class="edittext" colspan="2" style="text-align:center"><br>
<span class="d3modcfg_btn fixed icon status_ok">
<input type="submit" class="edittext" name="saveImportProfile"
value="{{ translate({ ident: "GENERAL_SAVE" }) }}"
onClick="document.myedit.fnc.value='saveImportProfile'" {{ readonly }}>
<span></span>
</span>
<br>
</td>
</tr>
{% endif %}
</table>
</form>
{% include "bottomnaviitem.html.twig" %}
{% include "bottomitem.html.twig" %}