Importer/views/twig/admin/d3_importer_vendors.html.twig

151 lines
7.4 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" enctype="multipart/form-data" 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_vendors %}
<tr>
<td class="edittext">
{{ translate({ ident: "D3_IMPORTER_VENDORS_IMPORTTYPE" }) }}
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_IMPORTER_VENDORS_IMPORTTYPEINFO_HELP"), 'sHelpText': help_text("D3_IMPORTER_VENDORS_IMPORTTYPEINFO_HELP")} %}
</td>
<td class="edittext">
<select name="xmlval[VENDOR][IMPORTTYPE]" {{ readonly }}>
<option value="import" {% if aProfile.VENDOR.IMPORTTYPE == "import" %}SELECTED{% endif %}>
{{ translate({ ident: "D3_IMPORTER_VENDORS_IMPORTTYPE1" }) }}
</option>
<option value="assignonly" {% if aProfile.VENDOR.IMPORTTYPE == "assignonly" %}SELECTED{% endif %}>
{{ translate({ ident: "D3_IMPORTER_VENDORS_IMPORTTYPE2" }) }}
</option>
</select>
</td>
</tr>
<tr>
<td class="edittext">
{{ translate({ ident: "D3_IMPORTER_VENDORS_ASSIGN" }) }}
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_IMPORTER_VENDORS_ASSIGNINFO_HELP"), 'sHelpText': help_text("D3_IMPORTER_VENDORS_ASSIGNINFO_HELP")} %}
</td>
<td class="edittext">
<select name="xmlval[VENDOR][IMPORTCOLUM]" {{ readonly }}>
<option value="">{{ translate({ ident: "D3_IMPORTER_VENDORS_NOASSIGN" }) }}</option>
{% for key, name in aCSVLines %}
<option value="{{ key }}"
{% if aProfile.VENDOR.IMPORTCOLUM == key and aProfile.VENDOR.IMPORTCOLUM != "" %}selected{% endif %}>
{{ name|striptags|truncate(70, "&nbsp;...", false) }}
</option>
{% endfor %}
</select>
</td>
</tr>
<tr>
<td class="edittext" colspan="2">
<hr>
</td>
</tr>
<tr>
<td class="edittext">
{{ translate({ ident: "D3_IMPORTER_MANUFACTURER_IMPORTTYPE" }) }}
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_IMPORTER_MANUFACTURER_IMPORTTYPEINFO_HELP"), 'sHelpText': help_text("D3_IMPORTER_MANUFACTURER_IMPORTTYPEINFO_HELP")} %}
</td>
<td class="edittext">
<select name="xmlval[MANUFACTURER][IMPORTTYPE]" {{ readonly }}>
<option value="import" {% if aProfile.MANUFACTURER.IMPORTTYPE == "import" %}SELECTED{% endif %}>
{{ translate({ ident: "D3_IMPORTER_MANUFACTURER_IMPORTTYPE1" }) }}
</option>
<option value="assignonly"
{% if aProfile.MANUFACTURER.IMPORTTYPE == "assignonly" %}SELECTED{% endif %}>
{{ translate({ ident: "D3_IMPORTER_MANUFACTURER_IMPORTTYPE2" }) }}
</option>
</select>
</td>
</tr>
<tr>
<td class="edittext">
{{ translate({ ident: "D3_IMPORTER_MANUFACTURER_ASSIGN" }) }}
{% include "inputhelp.html.twig" with {'sHelpId': help_id("D3_IMPORTER_MANUFACTURER_ASSIGNINFO_HELP"), 'sHelpText': help_text("D3_IMPORTER_MANUFACTURER_ASSIGNINFO_HELP")} %}
</td>
<td class="edittext">
<select name="xmlval[MANUFACTURER][IMPORTCOLUM]" {{ readonly }}>
<option value="">{{ translate({ ident: "D3_IMPORTER_MANUFACTURER_NOASSIGN" }) }}</option>
{% for key, name in aCSVLines %}
<option value="{{ key }}"
{% if aProfile.MANUFACTURER.IMPORTCOLUM == key and aProfile.MANUFACTURER.IMPORTCOLUM != "" %}selected{% endif %}>
{{ name|striptags|truncate(70, "&nbsp;...", false) }}
</option>
{% endfor %}
</select>
</td>
</tr>
<tr>
<td class="edittext" colspan="3">
<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>
</td>
</tr>
{% endblock %}
{% endif %}
</table>
</form>
{% include "bottomnaviitem.html.twig" %}
{% include "bottomitem.html.twig" %}