|
|
@ -428,15 +428,16 @@ public class RetailAppServiceImp implements RetailAppService {
|
|
|
|
if (clientType.equals("iphone")) {
|
|
|
|
if (clientType.equals("iphone")) {
|
|
|
|
res.put("skip_clearing", !res.getBoolean("skip_clearing"));
|
|
|
|
res.put("skip_clearing", !res.getBoolean("skip_clearing"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
res.put("refuse_remark",clientWithConfig.getString("refuse_remark"));
|
|
|
|
if("4".equals(clientWithConfig.getString("source"))) {
|
|
|
|
|
|
|
|
res.put("refuse_remark", clientWithConfig.getString("refuse_remark"));
|
|
|
|
res.put("base_info_lack", false);
|
|
|
|
res.put("base_info_lack", false);
|
|
|
|
res.put("compliance_info_lack", false);
|
|
|
|
res.put("compliance_info_lack", false);
|
|
|
|
if(StringUtils.isEmpty(clientWithConfig.getString("business_structure"))||
|
|
|
|
if (StringUtils.isEmpty(clientWithConfig.getString("business_structure")) ||
|
|
|
|
StringUtils.isEmpty(clientWithConfig.getString("logo_url"))||
|
|
|
|
StringUtils.isEmpty(clientWithConfig.getString("logo_url")) ||
|
|
|
|
StringUtils.isEmpty(clientWithConfig.getString("description")) ||
|
|
|
|
StringUtils.isEmpty(clientWithConfig.getString("description")) ||
|
|
|
|
("Company".equals(clientWithConfig.getString("business_structure")) && StringUtils.isEmpty(clientWithConfig.getString("acn")))||
|
|
|
|
("Company".equals(clientWithConfig.getString("business_structure")) && StringUtils.isEmpty(clientWithConfig.getString("acn"))) ||
|
|
|
|
(!"Company".equals(clientWithConfig.getString("business_structure")) && StringUtils.isEmpty(clientWithConfig.getString("abn")))||
|
|
|
|
(!"Company".equals(clientWithConfig.getString("business_structure")) && StringUtils.isEmpty(clientWithConfig.getString("abn"))) ||
|
|
|
|
(StringUtils.isEmpty(clientWithConfig.getString("company_website")) && StringUtils.isEmpty(clientWithConfig.getString("company_photo")) &&StringUtils.isEmpty(clientWithConfig.getString("store_photo")))) {
|
|
|
|
(StringUtils.isEmpty(clientWithConfig.getString("company_website")) && StringUtils.isEmpty(clientWithConfig.getString("company_photo")) && StringUtils.isEmpty(clientWithConfig.getString("store_photo")))) {
|
|
|
|
res.put("base_info_lack", true);
|
|
|
|
res.put("base_info_lack", true);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -446,6 +447,7 @@ public class RetailAppServiceImp implements RetailAppService {
|
|
|
|
res.put("compliance_info_lack", true);
|
|
|
|
res.put("compliance_info_lack", true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|