Bläddra i källkod

[Backend] Documents > voir : alerte "Aucun produit" si montant 0 € #752

refactoring
Guillaume Bourgeois 1 år sedan
förälder
incheckning
188808451c
1 ändrade filer med 6 tillägg och 4 borttagningar
  1. +6
    -4
      backend/views/document/_form.php

+ 6
- 4
backend/views/document/_form.php Visa fil

@@ -196,9 +196,11 @@ use common\models\Producer;
<div class="info-box-content">
<span class="info-box-text">Commandes</span>
<?php foreach($model->orders as $order): ?>
<a class="btn btn-sm btn-default" href="<?= Yii::$app->urlManager->createUrl(['distribution/index', 'idOrderUpdate' => $order->id]); ?>">
<?= date('d/m/Y', strtotime($order->distribution->date)) ?>
</a>
<?php if($order->distribution): ?>
<a class="btn btn-sm btn-default" href="<?= Yii::$app->urlManager->createUrl(['distribution/index', 'idOrderUpdate' => $order->id]); ?>">
<?= date('d/m/Y', strtotime($order->distribution->date)) ?>
</a>
<?php endif; ?>
<?php endforeach; ?>
</div>
</div>
@@ -297,7 +299,7 @@ use common\models\Producer;
</div>
<div class="panel-body">
<div id="block-list-products">
<table class="table table-bordered" v-if="total > 0">
<table class="table table-bordered" v-if="Object.keys(ordersArray).length > 0">
<thead>
<tr>
<th>Nom</th>

Laddar…
Avbryt
Spara