Подсчет итога и данные пользователя

This commit is contained in:
yurec 2022-06-09 09:16:54 +05:00
parent 1765caff7e
commit df14af68d1
1 changed files with 20 additions and 2 deletions

View File

@ -66,8 +66,26 @@
<!-- /категрии --> <!-- /категрии -->
<section class="container mt-3" style="border-top: 3px solid black;"> <section class="container mt-3" style="border-top: 3px solid black;">
<h3>Итого: <span id="span-itog"></span> руб.</h3> <h3>Итого: <span id="span-itog">{$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>
{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> </section>