|
|
@@ -45,6 +45,7 @@ use common\models\Producer ; |
|
|
|
use common\models\Order ; |
|
|
|
use common\models\User ; |
|
|
|
use common\models\Subscription ; |
|
|
|
use common\helpers\Price ; |
|
|
|
use DateTime; |
|
|
|
|
|
|
|
class DistributionController extends BackendController |
|
|
@@ -109,7 +110,7 @@ class DistributionController extends BackendController |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
$json['distribution']['revenues'] = number_format($revenues, 2); |
|
|
|
$json['distribution']['revenues'] = Price::format($revenues); |
|
|
|
$json['distribution']['weight'] = number_format($weight, 2); |
|
|
|
|
|
|
|
// products |
|
|
@@ -139,10 +140,8 @@ class DistributionController extends BackendController |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
$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 ; |
|
|
|
|