Commit 4d1cbf5b authored by hujun's avatar hujun

商铺数据转

parent f30b96e9
...@@ -39,9 +39,9 @@ class TransferHouseInfo extends Controller ...@@ -39,9 +39,9 @@ class TransferHouseInfo extends Controller
$g_house_data['id'] = $house_info_data['id']; $g_house_data['id'] = $house_info_data['id'];
$g_house_data['internal_title'] = $house_info_data['title']; $g_house_data['internal_title'] = $house_info_data['title'];
$g_house_data['external_title'] = $house_info_data_ext['foreign_name']; $g_house_data['external_title'] = empty($house_info_data_ext['foreign_name']) ? "" : $house_info_data_ext['foreign_name'];
$g_house_data['internal_address'] = $house_info_data['address']; $g_house_data['internal_address'] = $house_info_data['address'];
$g_house_data['external_address'] = $house_info_data_ext['address_detail_c']; $g_house_data['external_address'] = empty($house_info_data_ext['address_detail_c']) ? "":$house_info_data_ext['address_detail_c'];
$g_house_data['province'] = '上海'; $g_house_data['province'] = '上海';
$g_house_data['city'] = $house_info_data['city']; $g_house_data['city'] = $house_info_data['city'];
$g_house_data['disc'] = $house_info_data['disc']; $g_house_data['disc'] = $house_info_data['disc'];
...@@ -53,7 +53,7 @@ class TransferHouseInfo extends Controller ...@@ -53,7 +53,7 @@ class TransferHouseInfo extends Controller
$g_house_data['market_area'] = $house_info_data['business_area']; $g_house_data['market_area'] = $house_info_data['business_area'];
$g_house_data['rent_type'] = $house_info_data['rent_type']; $g_house_data['rent_type'] = empty($house_info_data['rent_type']) ? 0 : $house_info_data['rent_type'];
$g_house_data['rent_price'] = $house_info_data['price']*100; $g_house_data['rent_price'] = $house_info_data['price']*100;
$g_house_data['industry_type'] = $house_info_data['yetai']; $g_house_data['industry_type'] = $house_info_data['yetai'];
// $g_house_data['case_manager_phone'] = $house_info_data['title']; // $g_house_data['case_manager_phone'] = $house_info_data['title'];
...@@ -91,10 +91,10 @@ class TransferHouseInfo extends Controller ...@@ -91,10 +91,10 @@ class TransferHouseInfo extends Controller
$g_house_data['is_has_gas'] = $house_info_data['has_gas']; $g_house_data['is_has_gas'] = $house_info_data['has_gas'];
$g_house_data['is_carefully_chosen'] = empty($house_info_data['carefully_chosen']) ? 1: 0; $g_house_data['is_carefully_chosen'] = empty($house_info_data['carefully_chosen']) ? 1: 0;
//是否独家0否1是 //是否独家0否1是
$g_house_data['is_exclusive_type'] = $house_info_data['exclusienter_numve_type']; $g_house_data['is_exclusive_type'] = empty($house_info_data['exclusive_type']) ? 0 : $house_info_data['exclusive_type'];
$g_house_data['upload_id'] = $house_info_data['admin_id']; $g_house_data['upload_id'] = $house_info_data['admin_id'];
// $g_house_data['operation_id'] = $house_info_data['title']; // $g_house_data['operation_id'] = $house_info_data['title'];
$g_house_data['file_path'] = $house_info_data['file_path']; $g_house_data['file_path'] = empty($house_info_data['file_path']) ? "" :$house_info_data['file_path'];
$g_house_data['landmark'] = $house_info_data['landmark']; $g_house_data['landmark'] = $house_info_data['landmark'];
$g_house_data['create_time'] = $house_info_data['created']; $g_house_data['create_time'] = $house_info_data['created'];
$g_house_data['update_time'] = $house_info_data['modified']; $g_house_data['update_time'] = $house_info_data['modified'];
...@@ -104,9 +104,9 @@ class TransferHouseInfo extends Controller ...@@ -104,9 +104,9 @@ class TransferHouseInfo extends Controller
$g_house_data_ext['house_id'] = $house_info_data['id']; $g_house_data_ext['house_id'] = $house_info_data['id'];
$g_house_data_ext['fee_rule'] = $house_info_data['fee_rule']; $g_house_data_ext['fee_rule'] = $house_info_data['fee_rule'];
$g_house_data_ext['internal_item_advantage'] = $house_info_data['sellingpoint']; $g_house_data_ext['internal_item_advantage'] = $house_info_data['sellingpoint'];
$g_house_data_ext['external_item_advantage'] = $house_info_data_ext['foreign_advantage']; $g_house_data_ext['external_item_advantage'] = empty($house_info_data_ext['foreign_advantage'])? "":$house_info_data_ext['foreign_advantage'];
$g_house_data_ext['tiny_brochure_url'] = $house_info_data['weilinks']; $g_house_data_ext['tiny_brochure_url'] = $house_info_data['weilinks'];
$g_house_data_ext['auditorium'] = $house_info_data['auditorium']; $g_house_data_ext['auditorium'] = empty($house_info_data['auditorium']) ? "" : $house_info_data['auditorium'];
$g_house_data_ext['traffic'] = $house_info_data['traffic']; $g_house_data_ext['traffic'] = $house_info_data['traffic'];
$g_house_data_ext['agent_start_time'] = $house_info_data['exclusive_start']; $g_house_data_ext['agent_start_time'] = $house_info_data['exclusive_start'];
$g_house_data_ext['agent_end_time'] = $house_info_data['exclusive_end']; $g_house_data_ext['agent_end_time'] = $house_info_data['exclusive_end'];
...@@ -122,7 +122,7 @@ class TransferHouseInfo extends Controller ...@@ -122,7 +122,7 @@ class TransferHouseInfo extends Controller
Db::table('g_houses_ext')->insert($g_house_data_ext); Db::table('g_houses_ext')->insert($g_house_data_ext);
if (!empty($house_info_data['agent_id'])) { if (!empty($house_info_data['agent_id'])) {
$agent_id_arr = explode(',',$house_info_data['agent_id']); $agent_id_arr = array_unique(explode(',',$house_info_data['agent_id']));
foreach ($agent_id_arr as $k => $v) { foreach ($agent_id_arr as $k => $v) {
Db::table('g_houses_to_agents')->insert([ Db::table('g_houses_to_agents')->insert([
'houses_id' => $house_info_data['id'], 'houses_id' => $house_info_data['id'],
......
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