|
|
@@ -12,6 +12,7 @@ import com.fs.common.utils.ParseUtils;
|
|
|
import com.fs.common.utils.ServletUtils;
|
|
|
import com.fs.common.utils.StringUtils;
|
|
|
import com.fs.common.utils.poi.ExcelUtil;
|
|
|
+import com.fs.config.cloud.CloudHostProper;
|
|
|
import com.fs.framework.web.service.TokenService;
|
|
|
import com.fs.his.domain.FsUser;
|
|
|
import com.fs.his.service.IFsUserService;
|
|
|
@@ -68,6 +69,9 @@ public class FsStoreAfterSalesScrmController extends BaseController
|
|
|
@Value("${cloud_host.company_name}")
|
|
|
private String signProjectName;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private CloudHostProper cloudHostProper;
|
|
|
+
|
|
|
/**
|
|
|
* 查询售后记录列表
|
|
|
*/
|
|
|
@@ -78,7 +82,11 @@ public class FsStoreAfterSalesScrmController extends BaseController
|
|
|
startPage();
|
|
|
List<FsStoreAfterSalesVO> list = fsStoreAfterSalesService.selectFsStoreAfterSalesListVO(fsStoreAfterSales);
|
|
|
for (FsStoreAfterSalesVO vo : list){
|
|
|
- vo.setUserPhone(ParseUtils.parsePhone(vo.getUserPhone()));
|
|
|
+ if (!"广州郑多燕".equals(cloudHostProper.getCompanyName())) {
|
|
|
+ vo.setUserPhone(ParseUtils.parsePhone(vo.getUserPhone()));
|
|
|
+ } else {
|
|
|
+ vo.setUserPhone(vo.getUserPhone());
|
|
|
+ }
|
|
|
}
|
|
|
return getDataTable(list);
|
|
|
}
|