45 lines
1.8 KiB
Smarty
Executable File
45 lines
1.8 KiB
Smarty
Executable File
<ul class="tablist" style="width:100%;"></ul>
|
|
<form action="index.php" method="post" name="mz_importBankStatement" enctype="multipart/form-data">
|
|
<input type="hidden" id="module" name="module" value="EcmTransactions"/>
|
|
<input type="hidden" id="action" name="action" value="mz_importBankStatement"/>
|
|
<input type="hidden" id="process" name="process" value="1"/>
|
|
<input type="hidden" id="to_pdf" name="to_pdf" value="0"/>
|
|
<table class="tabForm" cellspacing="0" cellpadding="0" border="0" style="border-top: 0px none; margin-bottom: 4px;width:100%">
|
|
<tr>
|
|
<td class="dataLabel" width="5%" nowrap="nowrap">Bank: </td>
|
|
<td class="dataField" width="8%" nowrap="nowrap">
|
|
<select name="bank" id="bank">
|
|
{foreach from=$BANKS item=b}
|
|
{assign var=cur_id value=$b.CURRENCY}
|
|
<option value="{$b.ID}">{$b.NAME} ({$CUR.$cur_id})</option>
|
|
{/foreach}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="dataLabel" width="5%" nowrap="nowrap">Data wyciągu: </td>
|
|
<td class="dataField" width="8%" nowrap="nowrap">
|
|
<input id="statement_date" name="statement_date" type="text" maxlength="10" size="11" tabindex="" title="" value="{$DATE}" autocomplete="off">
|
|
<img id="statement_date_trigger" border="0" align="absmiddle" alt="Enter Date" src="themes/default/images/jscalendar.gif">
|
|
<script language="JavaScript" type="text/javascript">
|
|
Calendar.setup ({ldelim}
|
|
inputField : "statement_date",
|
|
daFormat : "%d.%m.%Y",
|
|
button : "statement_date_trigger",
|
|
singleClick : true,
|
|
dateStr : "",
|
|
step : 1
|
|
{rdelim}
|
|
);
|
|
</script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="dataLabel" width="5%" nowrap="nowrap">Wybierz plik: </td>
|
|
<td class="dataField" width="8%" nowrap="nowrap">
|
|
<input type="file" name="file" id="file" accept=".csv"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<input type="submit" class="button" value="Dalej"/>
|
|
</form> |