99 lines
4.0 KiB
Smarty
99 lines
4.0 KiB
Smarty
{*
|
|
* 2007-2019 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/afl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2019 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
|
|
<div class="panel">
|
|
<h3><i class="icon icon-credit-card"></i> {l s='GeisLogistic' mod='GeisLogistic'}</h3>
|
|
<p>
|
|
<strong>{l s='Geis logistic module' mod='GeisLogistic'}</strong><br />
|
|
{l s='Please configure settings below' mod='GeisLogistic'}<br />
|
|
<span class="alert-danger">{l s='According to contract with Geis you need to manually create pick up for your Company. If date is not created module will not work properly' mod='GeisLogistic'}</span><br />
|
|
</p>
|
|
<br />
|
|
<p>
|
|
<strong>{l s='Geis SOAP parameters' mod='GeisLogistic'}</strong><br />
|
|
{if $healty != false}
|
|
{l s='Service' mod='GeisLogistic'} - {$healty->Status}<br />
|
|
{l s='Version' mod='GeisLogistic'} - {$healty->Version}<br />
|
|
{else}
|
|
{l s='Communication error' mod='GeisLogistic'}
|
|
{/if}
|
|
</p>
|
|
<p>
|
|
<strong>{l s='Allowed services list' mod='GeisLogistic'}</strong><br />
|
|
{if $services != false}
|
|
{foreach $services as $service}
|
|
<strong>{$service->Code}</strong> - {$service->Name}
|
|
{/foreach}
|
|
{else}
|
|
{l s='Bad creditentials entered' mod='GeisLogistic'}
|
|
{/if}
|
|
</p>
|
|
<p>
|
|
<strong>{l s='Allowed wrap list' mod='GeisLogistic'}</strong><br />
|
|
{if $wraplist != false}
|
|
{foreach $wraplist as $wrap}
|
|
{if $wrap->Returnable != false}<strong>{$wrap->Code}</strong> - {$wrap->Description}{/if}
|
|
{/foreach}
|
|
{else}
|
|
{l s='Bad creditentials entered' mod='GeisLogistic'}
|
|
{/if}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="panel">
|
|
<h3><i class="icon icon-tags"></i> {l s='Documentation' mod='GeisLogistic'}</h3>
|
|
<p>
|
|
» {l s='You can get a PDF documentation to configure this module' mod='GeisLogistic'} :
|
|
<ul>
|
|
<li><a href="http://geisparcel.cz/support/files/Geis_GService_Dokumentace_EN.pdf" target="_blank">{l s='Web service documentation' mod='GeisLogistic'}</a></li>
|
|
<li><a href="https://www.geis.pl/pl/do-pobrania" target="_blank">{l s='Files to download' mod='GeisLogistic'}</a></li>
|
|
<li><a href="https://europasaz.pl" target="_blank">{l s='Customer service' mod='GeisLogistic'}</a></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="panel">
|
|
<h3><i class="icon icon-tags"></i> {l s='Create pickup' mod='GeisLogistic'}</h3>
|
|
<div class="row">
|
|
<form action="{$geisurl}createpickup.php" method="post" id="pickup" class="defaultForm form-horizontal" target="_self">
|
|
<fieldset>
|
|
<div class="col-lg-2">
|
|
<span class="title_box ">{l s='number of items' mod='GeisLogistic'}</span>
|
|
<input type="text" name="geispick" value="" />
|
|
</div>
|
|
<div class="col-lg-3">
|
|
<span class="title_box">{l s='Pickup date' mod='GeisLogistic'}</span>
|
|
<input type="text" id="geispickdate" name="geispickdate" class="datepicker" value="" />
|
|
</div>
|
|
|
|
</fieldset>
|
|
<input type="hidden" name="geistoken" value="{$geistoken}" />
|
|
<div class="col-xs-12">
|
|
<br />
|
|
<button type="submit" id="submit_geis" class="btn btn-primary pull-right" name="submit_geis">{l s='Create' mod='GeisLogistic'}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div> |