Подсчет итога и данные пользователя
This commit is contained in:
parent
1765caff7e
commit
df14af68d1
|
@ -66,8 +66,26 @@
|
|||
<!-- /категрии -->
|
||||
|
||||
<section class="container mt-3" style="border-top: 3px solid black;">
|
||||
<h3>Итого: <span id="span-itog"></span> руб.</h3>
|
||||
<button class="btn mt-5 btn--small btn--radius btn--green btn--green-hover-black btn--uppercase font--bold" style="width: 300px;" type="button">Оформить</button>
|
||||
<h3>Итого: <span id="span-itog">{$itog}</span> руб.</h3>
|
||||
|
||||
{if $smarty.session.user_id}
|
||||
|
||||
<p>Контактное лицо: {$user_info.kontaktnoe_lico}</p>
|
||||
<p>Телефон: {$user_info.phone}</p>
|
||||
<p>ИНН: {$user_info.inn} ({$user_info.org})</p>
|
||||
<p><b>Адрес доставки:</b></p>
|
||||
<select id="adres-dostavki" class="form-select mb-3" style="width: 400px;">
|
||||
{section name=customer loop=$adres}{if $adres[customer].id}
|
||||
|
||||
<option value="{$adres[customer].id}">{$adres[customer].gorod} {$adres[customer].street} {$adres[customer].dom}</option>
|
||||
|
||||
{/if}{/section}
|
||||
</select>
|
||||
|
||||
<p><a href="/lk/">Изменить данные</a></p>
|
||||
{/if}
|
||||
|
||||
<button class="btn mt-5 btn--small btn--radius btn--green btn--green-hover-black btn--uppercase font--bold" id="btn-save-order" style="width: 300px;" type="button">Оформить</button>
|
||||
</section>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue