|
@@ -531,7 +531,7 @@ class My extends Core
|
|
$month = Dever::input('month');
|
|
$month = Dever::input('month');
|
|
$shop = Dever::db('shop/info')->find($shop_id);
|
|
$shop = Dever::db('shop/info')->find($shop_id);
|
|
$data = array();
|
|
$data = array();
|
|
- $data['price'] = $shop['price'];
|
|
|
|
|
|
+ $data['price'] = sprintf("%01.2f", $shop['price']);
|
|
if ($month) {
|
|
if ($month) {
|
|
$start = $month . '-01 00:00:00';
|
|
$start = $month . '-01 00:00:00';
|
|
$end = date('Y-m-d', strtotime("$start +1 month -1 day"));
|
|
$end = date('Y-m-d', strtotime("$start +1 month -1 day"));
|