|
|
@@ -1,5 +1,7 @@
|
|
|
package com.tongyu.luck.happywork.ui.mvp.cclient.presenter;
|
|
|
|
|
|
+import android.text.TextUtils;
|
|
|
+
|
|
|
import com.tongyu.luck.happywork.R;
|
|
|
import com.tongyu.luck.happywork.bean.AreaBean;
|
|
|
import com.tongyu.luck.happywork.bean.BaseInformationBean;
|
|
|
@@ -97,7 +99,7 @@ public class JobIntentionPresenter extends BasePresenter<JobIntentionActivity> i
|
|
|
ResumeBean resumeBean = mJobIntentionModel.getJobIntention();
|
|
|
if (resumeBean != null && resumeBean.isJobIntention()) {
|
|
|
mvpReference.get().onJobIntention(BaseInformationUtils.getExpectationPosition(mvpReference.get(), resumeBean.getExpectationPosition())
|
|
|
- , BaseInformationUtils.getPCAAddress(mvpReference.get(), resumeBean.getExpectationProvinceId(), resumeBean.getExpectationCityId(), resumeBean.getExpectationCountryId()), BaseInformationUtils.getSalary(mvpReference.get(), resumeBean.getExpectationSalary()));
|
|
|
+ , TextUtils.isEmpty(resumeBean.getExpectationAddress()) ? "" : resumeBean.getExpectationAddress(), BaseInformationUtils.getSalary(mvpReference.get(), resumeBean.getExpectationSalary()));
|
|
|
}
|
|
|
}
|
|
|
}
|