Bladeren bron

Merge branch 'dev'

master
Guillaume Bourgeois 5 jaren geleden
bovenliggende
commit
4c9d51a9f9
2 gewijzigde bestanden met toevoegingen van 5 en 6 verwijderingen
  1. +4
    -5
      backend/controllers/DistributionController.php
  2. +1
    -1
      backend/views/distribution/index.php

+ 4
- 5
backend/controllers/DistributionController.php Bestand weergeven

use common\models\Order ; use common\models\Order ;
use common\models\User ; use common\models\User ;
use common\models\Subscription ; use common\models\Subscription ;
use common\helpers\Price ;
use DateTime; use DateTime;


class DistributionController extends BackendController class DistributionController extends BackendController
} }
} }
} }
$json['distribution']['revenues'] = number_format($revenues, 2);
$json['distribution']['revenues'] = Price::format($revenues);
$json['distribution']['weight'] = number_format($weight, 2); $json['distribution']['weight'] = number_format($weight, 2);
// products // products
} }
} }
$json['distribution']['potential_revenues'] = $potentialRevenues ;
$json['distribution']['potential_weight'] = $potentialWeight ;
//die('potential revenues : '.$json['distribution']['potential_revenues']) ;
$json['distribution']['potential_revenues'] = Price::format($potentialRevenues) ;
$json['distribution']['potential_weight'] = number_format($potentialWeight, 2) ;
$json['products'] = $productsArray ; $json['products'] = $productsArray ;

+ 1
- 1
backend/views/distribution/index.php Bestand weergeven

<span class="info-box-icon bg-yellow"><i class="fa fa-euro"></i></span> <span class="info-box-icon bg-yellow"><i class="fa fa-euro"></i></span>
<div class="info-box-content"> <div class="info-box-content">
<span class="info-box-text">CA</span> <span class="info-box-text">CA</span>
<span class="info-box-number">{{ distribution.revenues }} <span class="normal">/ {{ distribution.potential_revenues }}</span></span>
<span class="info-box-number">{{ distribution.revenues }} <span class="normal">/ {{ distribution.potential_revenues }}</span></span>
<span class="info-box-text">Poids</span> <span class="info-box-text">Poids</span>
<span class="info-box-number">{{ distribution.weight }} kg <span class="normal">/ {{ distribution.potential_weight }} kg</span></span> <span class="info-box-number">{{ distribution.weight }} kg <span class="normal">/ {{ distribution.potential_weight }} kg</span></span>
</div> </div>

Laden…
Annuleren
Opslaan