Example #1
0
 /**
  * 通过房源id直接拿到房源主表信息和房源分表信息,以及页面展示的扩展信息
  * 供展示,不用于更新
  * @param $propId
  */
 public static function getHouseExtInfo($houseInfo)
 {
     $baseInfo = $houseInfo['base'];
     if (!$baseInfo) {
         return false;
     }
     $houseInfo = $houseInfo['info'];
     if (!$houseInfo) {
         return false;
     }
     $houseInfo['houseTypeDesc'] = self::$arrHouseTypeDes['full'][$baseInfo['houseType']];
     $houseInfo['houseTypeDescShort'] = self::$arrHouseTypeDes['short'][$baseInfo['houseType']];
     $houseInfo['houseTypeUrl'] = self::$arrHouseTypeDes['urlCombo'][$baseInfo['houseType']];
     $houseInfo['urlEdit'] = BLL_Plan_JpPlanUrl::build_house_edit_url($baseInfo['houseType'], $baseInfo['id']);
     //$houseInfo['urlRedoHp'] = BLL_Plan_JpPlanUrl::build_haopan_new_url($houseInfo['id']);
     $houseInfo['urlHouse'] = BLL_Plan_JpPlanUrl::build_index_v2($baseInfo['cityId'], $baseInfo['houseType']) . $baseInfo['id'];
     // 楼层信息
     $houseInfo['floorInfo'] = self::getHouseFloorInfo($houseInfo, $baseInfo['houseType']);
     // 租金信息
     $houseInfo['priceInfo'] = self::getHousePriceInfo($houseInfo, $baseInfo['houseType']);
     // 过期时间
     $houseInfo['leftDays'] = Bll_House_HzHouse::getLeftDays(strtotime($baseInfo['createTime']));
     $houseInfo['viewURL'] = "http://my." . APF::get_instance()->get_config('base_domain') . '/ajkbroker/user/house/propview/jp/' . $houseInfo['id'];
     return array('base' => $baseInfo, 'info' => $houseInfo, 'houseType' => $baseInfo['houseType']);
 }
Example #2
0
 /**
  * @param $request object
  * @param $brokerInfo array
  * @param $type string rent || sale
  * @return array
  */
 public static function getShopBeforePost($request, $brokerInfo, $type)
 {
     $out = $logGiveArr = array();
     $params = $request->get_parameters();
     // manager_id不为空,说明是伪登录
     $out['managerId'] = $request->get_cookie('manager_id');
     // 经纪人信息
     $out['brokerInfo'] = $brokerInfo;
     $cityId = $brokerInfo['CITYID'];
     //金铺城市ID转换
     $jpCityId = $out['brokerInfo']['jpCityId'] = BLL_House_JpHouseManage::getMemberCityId($cityId);
     $out['ajkBrokerId'] = $out['brokerInfo']['BROKERID'];
     $jpMember = Model_Broker_JpBroker::getJpBrokerInfoByAjkBrokerId($out['ajkBrokerId']);
     $out['brokerInfo']['jpMemberId'] = intval($jpMember->id);
     //获取城市配置信息是否是精选推广
     $out['isChoiceCity'] = Bll_City::isChoiceCity($jpCityId, Const_Site::JINPU);
     $out['bidTip'] = $out['isChoiceCity'] ? '精选' : '竞价';
     //是否套餐经纪人
     $out['isCombo'] = $brokerInfo['PAYTYPE'] == 9999 ? 1 : 0;
     //套餐城市是否显示推广按钮,以及提示
     $out['spreadFlagInfo'] = array('spreadFlag' => 1, 'info' => '');
     if ($out['isCombo']) {
         $comboCheck = Bll_Combo_HouseRelation::housePublishComboCheck($out['ajkBrokerId'], $cityId, Bll_Combo_HouseRelation::SITE_TYPE_JP);
         if ($comboCheck['status'] != 1) {
             $out['spreadFlagInfo'] = array('spreadFlag' => 0, 'info' => $comboCheck['msg']);
         }
     }
     // 获取全部图片分类信息(用于编辑时候默认展示分类情况)
     $arrCategory = array();
     $arrAllCates = Model_Image_Category::get_img_cates_by_type('shop');
     $arrCategory['all'] = $arrAllCates;
     $arrCategory['classify'] = array_fill_keys(array_keys($arrAllCates), 0);
     $out['arrCategory'] = $arrCategory;
     // 描述引导
     $out['descGuide'] = self::getShopDescGuideTitle($type);
     //编辑图片,用于展示退回照片模块
     $out['editPic'] = $params['edit_pic'];
     //北上广深 四城市
     $citySpecial = array('13', '14');
     $out['priceType'] = in_array($jpCityId, $citySpecial) ? 1 : 0;
     $out['isPost'] = $request->is_post_method();
     if ($type == 'rent') {
         //交租方式
         $out['rentModeFirst'] = Model_House_JpShopRent::getRentModeFirst();
         $out['rentModeSecond'] = Model_House_JpShopRent::getRentModeSecond();
     }
     //---------是否编辑---------------//
     $shopInfo = array();
     $shopId = 0;
     $propertyId = 0;
     // 初始化参数
     $matches = $request->get_router_matches();
     if (isset($matches[2]) && !empty($matches[2])) {
         $shopId = intval($matches[2]);
         $shopInfo = $type == 'rent' ? Model_House_JpShopRent::getPropInfoById($shopId) : Model_House_JpShopSale::getPropInfoById($shopId);
         $propertyId = $shopInfo['propertyId'];
     }
     $out['isEdit'] = empty($shopInfo) ? 0 : 1;
     //四选一弹层
     $out['bolFlag'] = $out['isEdit'] || !isset($params['from']) ? 0 : 1;
     $out['shopInfo'] = $shopInfo;
     $out['shopId'] = $shopId;
     if (!$out['isCombo']) {
         $planInfo = BLL_House_JpHouseManage::getFixPlanInfo($shopId);
         if ($out['isEdit'] && $planInfo['success'] && $planInfo['data']['status'] == 3) {
             //定价计划状态为3,不可编辑
             return array('status' => 'error', 'errCode' => Const_PublishCode::UNKNOWN_ERROR);
         }
     }
     //新发,需要验证房源发布套数限制
     if (!$out['isEdit']) {
         if (BLL_House_JpHouseManage::houseNumLimit($out['brokerInfo']['jpMemberId'], $out['ajkBrokerId'], true)) {
             //保存漏斗日志
             if ($out['isPost']) {
                 $houseType = Bll_Loudou_Log::jinpuHouseType('shop', $type);
                 $str = '';
                 switch ($params['goto_next_step']) {
                     case 'planCombo':
                     case 'planFix':
                         $str = Bll_Loudou_Log::RESULT_TYPE_FIX_FAILED_OTHERS;
                         break;
                     case 'justSaveHouse':
                         $str = Bll_Loudou_Log::RESULT_TYPE_SAVE_FAILED_HOUSE_MAX_LIMIT;
                         break;
                 }
                 $logGiveArr[] = array('func' => array('Bll_Loudou_log', 'add'), 'params' => array($houseType, $str, Bll_Loudou_Log::SOURCE_TYPE_FORM));
             }
             return array('status' => 'error', 'errCode' => Const_PublishCode::PUBLISH_OUT_OF_LIMIT);
         }
     }
     //经营信息模块的配置信息
     list($out['enumShopType'], $out['enumShopMatching'], $out['enumShopIndustry'], $out['enumShopIndustryLimit'], $out['enumShopPassengerType']) = BLL_House_JpProperty::getShopEnum();
     //页面精品房源url
     $out['exquisiteUrl'] = BLL_Plan_JpPlanUrl::buildHelpUrl('1026');
     //页面经典范例url
     $out['exampleTitleUrl'] = BLL_Plan_JpPlanUrl::buildHelpUrl('1044');
     //页面房源描述下方经典范例url
     $out['exampleDescUrl'] = BLL_Plan_JpPlanUrl::buildHelpUrl('1045');
     //房源发布协议url
     $out['contractUrl'] = BLL_Plan_JpPlanUrl::buildHelpUrl('554');
     //房源PPC价格段信息
     $out['ppcInfo'] = Bll_Plan_JpPlanManage::getInstance()->getPPCPrice($jpCityId, $type == 'rent' ? 3 : 4);
     //城市区域列表,选择区域使用
     $out['districts'] = Model_Jinpu_District::getCityDistricts($jpCityId);
     //经纪人定价推广组信息
     $out['fixPlanInfo'] = $out['isCombo'] ? array() : Bll_Plan_JpPlanManage::getInstance()->getBrokerFixPlans($out['brokerInfo']['jpMemberId']);
     if ($out['isEdit']) {
         //编辑状态下的特殊信息
         //编辑 验证房源是否属于经纪人
         if ($out['brokerInfo']['jpMemberId'] != $out['shopInfo']['memberId']) {
             return array('status' => 'error', 'errCode' => Const_PublishCode::NOT_OWN_HOUSE);
         }
         //房源交租方式(付一押一)
         list($out['rentModelFirst'], $out['rentModelSecond']) = explode(',', $shopInfo['rentMode']);
         //单层 多层 独栋
         $out['floorType'] = 1;
         if ($shopInfo['isFullFloor']) {
             $out['floorType'] = 3;
         } elseif ($shopInfo['upFloor']) {
             $out['floorType'] = 2;
         }
         //房源推广信息,被编辑的房源是否在推广中
         $houseCanSpread = 1;
         if ($out['isCombo']) {
             $houseCombo = Model_Combo_HouseRelation::getOnlineHousebyHouseId($out['ajkBrokerId'], $shopId, $cityId, Model_Combo_HouseRelation::SITE_TYPE_JP);
             if (!empty($houseCombo)) {
                 $houseCanSpread = 0;
             }
         } else {
             $shopIdx = Model_House_JpHouseIdx::data_access()->filter('id', $shopId)->get_row();
             if (!empty($shopIdx['fixSpreadId'])) {
                 $houseCanSpread = 0;
             }
         }
         $out['houseCanSpread'] = $houseCanSpread;
         //图片退回信息
         $out['backRows'] = array();
         if ($shopId && $out['isEdit']) {
             $out['backRows'] = Bll_Image_JpHouseImage::getBackRows($shopId, $type == 'rent' ? 3 : 4);
         }
         //房源描述
         $desc = $type == 'rent' ? Model_Jinpu_ShopRentDesc::getByPk($shopId) : Model_Jinpu_ShopSaleDesc::getByPk($shopId);
         $out['shopDesc'] = $desc['desc'];
         //房源物业信息
         $out['propertyData'] = $propertyData = (array) BLL_House_JpProperty::getProperty($shopInfo['propertyId']);
         if (!$propertyData) {
             return array('status' => 'error', 'errCode' => Const_PublishCode::NOT_OWN_HOUSE);
         }
         if ($propertyData['isRoad'] == 1 && ($shopInfo['districtId'] || !$shopInfo['blockId'])) {
             $out['forceBlockEdit'] = true;
         } elseif ($propertyData['isRoad'] == 0 && (!$propertyData['districtId'] || !$propertyData['blockId'])) {
             $out['forceBlockEdit'] = true;
         }
         if (!$out['forceBlockEdit']) {
             //逻辑好多啊 妹子的
             $districtIdForSearch = !$propertyData['isRoad'] ? $propertyData['districtId'] : $shopInfo['districtId'];
             $blockIdForSearch = !$propertyData['isRoad'] ? $propertyData['blockId'] : $shopInfo['blockId'];
             $districtInfo = Model_Jinpu_District::data_access()->filter('id', $districtIdForSearch)->get_row();
             $districtName = $districtInfo['is_actived'] == 1 ? $districtInfo['name'] : '';
             $blockInfo = Model_Jinpu_Block::data_access()->filter('id', $blockIdForSearch)->get_row();
             $blockName = $blockInfo['isActived'] == 1 ? $blockInfo['name'] : '';
             $titleStr = $districtName . ' ' . $blockName . ' ' . (!$propertyData['isRoad'] ? $propertyData['address'] : '') . (!empty($shopInfo['closeRoad']) ? '靠近:' . $shopInfo['closeRoad'] : '');
             $showStr = strlen($titleStr) > 90 ? Util_GlobalFunc::cutchar($titleStr, 28) : $titleStr;
             $out['titleStr'] = $titleStr;
             $out['showStr'] = $showStr;
         }
         $out['hasLibrary'] = BLL_House_JpProperty::hasLibrary($out['brokerInfo']['jpMemberId'], $shopInfo['propertyId'], 'property');
         //房源图片查询和排序
         $images = self::handleShopImages($shopId, $type);
         //个人图库图片是否被锁定
         foreach ($images as $key => $imgVal) {
             $imgVal['isLock'] = 0;
             if ($imgVal && $imgVal['personalImgId']) {
                 $personalImg = Model_Jinpu_PersonalGallery::getImgById($imgVal['personalImgId']);
                 if ($personalImg && $personalImg->category) {
                     $imgVal['isLock'] = 1;
                 }
             }
             if ($imgVal['category'] && isset($out['arrCategory']['classify'][intval($imgVal['category'])])) {
                 $out['arrCategory']['classify'][intval($imgVal['category'])] += 1;
             }
             $images[$key] = $imgVal;
         }
         $out['images'] = $images;
     }
     $lng = $lat = $mapDataFlag = 0;
     //地图标注商铺位置的逻辑
     $DShopMap = Model_Jinpu_MapShop::getByPK($shopId);
     if (!empty($DShopMap)) {
         $lng = $DShopMap['lng'];
         $lat = $DShopMap['lat'];
         $mapDataFlag = 1;
     } else {
         if ($propertyId > 0) {
             $shopLocation = Model_Jinpu_MapProperty::getPropertyMapById($propertyId);
             if (!empty($shopLocation)) {
                 $lng = $shopLocation['lng'];
                 $lat = $shopLocation['lat'];
             }
         } else {
             list($lng, $lat) = BLL_House_JpHouseManage::getDefaultMap($out['brokerInfo']['CITYID']);
         }
         $mapDataFlag = 0;
     }
     $out['lng'] = $lng;
     $out['lat'] = $lat;
     $out['mapDataFlag'] = $mapDataFlag;
     return array('status' => 'ok', 'info' => $out, 'logArr' => $logGiveArr);
 }
Example #3
0
 public function get_view()
 {
     //upload param
     $maxsize = @$this->get_param("maxsize");
     if (empty($maxsize)) {
         $maxsize = "20971520";
     }
     $minsize = @$this->get_param("minsize");
     if (empty($minsize)) {
         $minsize = "8192";
     }
     $minwidth = @$this->get_param("minwidth");
     if (empty($minwidth)) {
         $minwidth = 500;
         //最小宽度,等于0为不限制
     }
     $minheight = @$this->get_param("minheight");
     if (empty($minheight)) {
         $minheight = 333;
         //最小高度,等于0为不限制
     }
     $duplicate = @$this->get_param("duplicate");
     if (empty($duplicate)) {
         $duplicate = 0;
         //重复图片不允许上传,等于0为不限制
     }
     $bolCachable = @$this->get_param("cachable");
     if (NULL === $bolCachable) {
         $bolCachable = false;
     }
     $ChangeDomain = @$this->get_param('ChangeDomain');
     if (NULL === $ChangeDomain) {
         $ChangeDomain = 'my';
     }
     $bolSingle = @$this->get_param('bolSingle');
     if ($bolSingle === NULL) {
         $bolSingle = FALSE;
     }
     $callback = @$this->get_param("callback");
     $limit = @$this->get_param("limit");
     if (NULL === $limit) {
         $limit = 4;
     }
     $maxImgN = @$this->get_param('maxImgN');
     if (NULL === $maxImgN) {
         $maxImgN = 4;
     }
     $fileext = @$this->get_param('fileext');
     if (empty($fileext)) {
         $fileext = '*.jpg;*.gif;*.JPG;*.GIF;*.png;*.PNG';
     }
     $builddata = @$this->get_param('builddata');
     if (empty($builddata)) {
         $builddata = 'response.image.id+"|"+response.imgurl+"|||"+response.image.host+"|"+response.image.exif+"|"+response.image.width+"|"+response.image.height+"|"+response.image.size;';
     }
     $datatype = @$this->get_param('datatype');
     if (empty($datatype)) {
         $datatype = 1;
     }
     $arrCategory = @$this->get_param('arrCategory');
     $this->assign_data('maxsize', $maxsize);
     $this->assign_data('minsize', $minsize);
     $this->assign_data('minwidth', $minwidth);
     $this->assign_data('minheight', $minheight);
     $this->assign_data('duplicate', $duplicate);
     $this->assign_data('callback', $callback);
     $this->assign_data('limit', $limit);
     $this->assign_data('fileext', $fileext);
     $this->assign_data('builddata', $builddata);
     $this->assign_data('datatype', $datatype);
     $this->assign_data('bolCachable', $bolCachable);
     $this->assign_data('ChangeDomain', $ChangeDomain);
     $this->assign_data('bolSingle', $bolSingle);
     $this->assign_data('picData', @$this->get_param('picData'));
     $this->assign_data('strActProp', @$this->get_param('strActProp'));
     $this->assign_data('swfFlag', 1);
     $this->assign_data('arrCategory', $arrCategory);
     $this->assign_data('updateImages', @$this->get_param('updateImages'));
     $this->assign_data('isEdit', intval(@$this->get_param('isEdit')));
     $this->assign_data('exquisiteUrl', BLL_Plan_JpPlanUrl::buildHelpUrl('1026'));
     $this->assign_data('hasLibrary', @$this->get_param('hasLibrary'));
     return "MultiUpload";
 }