瀏覽代碼

[backend] Tableau de bord : affichage du commentaire client dans la liste des commandes

dev
Guillaume Bourgeois 5 年之前
父節點
當前提交
dcff9072c8
共有 3 個檔案被更改,包括 195 行新增168 行删除
  1. +3
    -0
      backend/views/site/index.php
  2. +180
    -168
      backend/web/css/screen.css
  3. +12
    -0
      backend/web/sass/screen.scss

+ 3
- 0
backend/views/site/index.php 查看文件

@@ -168,6 +168,9 @@ $this->title = 'Tableau de bord';
</td>
<td>
<?= $order->getStrUser(); ?><br />
<?php if(strlen($order->comment)): ?>
<div class="comment"><span class="glyphicon glyphicon-comment"></span> <?= nl2br(Html::encode($order->comment)) ; ?></div>
<?php endif; ?>
</td>
<td><?= $order->getCartSummary() ; ?></td>
<td><?= $order->getPointSaleSummary() ; ?></td>

+ 180
- 168
backend/web/css/screen.css
文件差異過大導致無法顯示
查看文件


+ 12
- 0
backend/web/sass/screen.scss 查看文件

@@ -431,6 +431,18 @@ a.btn, button.btn {
.date {
text-align: center ;
}
.comment {
position: relative ;
margin-top: 4px ;
padding-left: 20px ;
font-style: italic ;
.glyphicon {
position: absolute ;
left: 0px ;
}
}
}
}


Loading…
取消
儲存