|
@@ -101,13 +101,13 @@ class HuaweiOnuOctetsCommand extends BaseCommand
|
|
|
$sendData["outbandwidth_onu_{$sn}"] = "{$outBandwidth}|g";
|
|
|
|
|
|
$div = 1073741824; //bytes => giga
|
|
|
- $consIn = number_format(($inAcc / $div),3);
|
|
|
- $consOut = number_format(($outAcc / $div),3);
|
|
|
+ $consIn = number_format(($inAcc / $div),3,'.','');
|
|
|
+ $consOut = number_format(($outAcc / $div),3,'.','');
|
|
|
|
|
|
$sendData["inconsumption_onu_{$sn}"] = "{$consIn}|g";
|
|
|
$sendData["outconsumption_onu_{$sn}"] = "{$consOut}|g";
|
|
|
|
|
|
- if(date("d",$t0) != date("d",$t1)) {
|
|
|
+ if(date("n",$t0) != date("n",$t1)) {
|
|
|
$inAcc = $outAcc = 0;
|
|
|
}
|
|
|
|