Blame view

frontend/views/basket/ajax_items.php 2.02 KB
ecf49b1b   Administrator   second
1
2
3
4
  <?php
  use yii\widgets\ActiveForm;
  use yii\helpers\Html;
  ?>
92b34b75   Administrator   image size
5
6
7
  <?php $form = ActiveForm::begin(['enableClientScript' => false,  'options' => [
      'class' => 'basket_form2'
  ]]); ?>
90a6ed1a   Administrator   basket
8
  <?php foreach($basket_mods as $i=>$item):?>
ecf49b1b   Administrator   second
9
10
11
  <div class="basket_item">
      <?php echo $form->field($item,'['.$i.']id')->hiddenInput()->label(false); ?>
      <div style="display: table-cell;vertical-align: middle;"><a href="#" data-id="<?=$item->id?>" class="delete_button" style="margin-right:20px;"></a></div>
fab58f4a   Виталий   Веталь
12
      <div class="img_ajax_basket" style="width:100px;height:100px;display: table-cell;vertical-align: middle; border:1px solid #d2d2d2;text-align:center;margin-left:10px;margin-right:10px;">
38828295   Karnovsky A   -
13
14
          <?= \common\components\artboximage\ArtboxImageHelper::getImage($item->imageUrl, 'product_basket')?>
      </div>
ecf49b1b   Administrator   second
15
16
17
      <div style="display: table-cell;vertical-align: middle; font-size:15px;width:210px; font-weight:normal;padding-left:15px;">
          <div><?=$item->product_name?></div>
          <div style="text-transform:none; margin-top:20px; font-weight:bold;">
90a6ed1a   Administrator   basket
18
19
              <?php if($item->price_old>0):?><div style="text-decoration:line-through;font-size:13px;"><?=$item->price_old?> грн.</div><?php endif;?>
              <div style="font-size:15px;color:#f75d50;"><?=$item->price?> грн.</div>
ecf49b1b   Administrator   second
20
21
22
23
24
          </div>
      </div>
      <div style="display: table-cell;vertical-align: middle;">
          <a href="#" style="color:#95ba2f" class="minus"></a><?php echo $form->field($item,'['.$i.']count',['template'=>'{input}'])->textInput(['type'=>'number','class' => 'item_num','disabled1'=>true])->label(false); ?><a href="#" style="color:#95ba2f" class="plus"></a>
      </div>
a2670f01   Виталий   Веталь
25
      <div style="display: table-cell;vertical-align: middle; font-size:16px;color:#f75d50; font-weight:bold; padding-left:40px;"><?=$item->sum_cost?> грн.</div>
ecf49b1b   Administrator   second
26
27
      <div  style="clear:both;"></div>
  </div>
90a6ed1a   Administrator   basket
28
  <?php endforeach;?>
ecf49b1b   Administrator   second
29
30
31
32
33
  
      <div class="basket_sum">
          <div class="sum_text" style="float:left;">Всего: <span><?=$modelMod->getSumCost()?> грн.</span></div>
      </div>
  <?php ActiveForm::end(); ?>