Commit 861a30ba authored by hujun's avatar hujun

//

parent 6f2665ef
......@@ -1154,10 +1154,10 @@ class OfficeRoomService
foreach ($res as $k=>$v) {
$tmp['id'] = $v['id'];
$tmp['status'] = $v['status'];
$tmp['price'] = $this->MinField($v['building_id'], 'price');
$tmp['price'] = empty($tmp['price']) ? 0:$tmp['price']/100;
$tmp['price_total'] = $this->MinField($v['building_id'], 'price_total');
$tmp['price_total'] = empty($tmp['price_total']) ? 0:$tmp['price_total']/100;
// $tmp['price'] = $this->MinField($v['building_id'], 'price');
$tmp['price'] = empty($v['price']) ? 0:$v['price']/100;
// $tmp['price_total'] = $this->MinField($v['building_id'], 'price_total');
$tmp['price_total'] = empty($v['price_total']) ? 0:$v['price_total']/100;
$tmp['shop_sign'] = $this->getBuildingSign($v['id']);
$area = $this->MinField($v['building_id'], 'area');
$tmp['title'] = $v['disc'].' '.$v['business_name']. ' '.$v['title']. ' '.$area.'㎡';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment