From d8dc84a3d56df839895f1c417a4d9cbee763d262 Mon Sep 17 00:00:00 2001
From: 高章伟 <gaozhangwei@prec-tech.com>
Date: 星期五, 03 三月 2023 14:50:59 +0800
Subject: [PATCH] gzw 测试环境代码更新
---
force-app/main/default/classes/CreateRelationListPagingCmpCtrl.cls | 15 +++------------
1 files changed, 3 insertions(+), 12 deletions(-)
diff --git a/force-app/main/default/classes/CreateRelationListPagingCmpCtrl.cls b/force-app/main/default/classes/CreateRelationListPagingCmpCtrl.cls
index c60bbdb..76a49a8 100644
--- a/force-app/main/default/classes/CreateRelationListPagingCmpCtrl.cls
+++ b/force-app/main/default/classes/CreateRelationListPagingCmpCtrl.cls
@@ -21,8 +21,7 @@
public Boolean noSortHeader { get; set; }
public Boolean isRadioBox { get; set; }
public String tabS {get; set;}
- public List<CreateRelationListPagingCtrlBase.WrapperInfo> allrecords{get;set;}
- public transient Boolean userCustomPaging {get; set;}
+ public Boolean userCustomPaging {get; set;}
public Boolean isNeedCheckEvent {
get {
return pageController.isNeedCheckEvent;
@@ -110,10 +109,7 @@
}
if(String.isBlank(pageController.getRecordTypeId() )){
try {
- System.debug('--------2--------'+pageController.getObjName());
-
Map<String, Map<String, String>> editLayoutItemRWMap = SoapApi.getEditLayoutItemRW(pageController.getObjName(), null);
- System.debug('--------1--------'+editLayoutItemRWMap);
if(editLayoutItemRWMap.size() >0){
DESC_RW = editLayoutItemRWMap.values()[0];
}
@@ -307,8 +303,7 @@
String soql ='';
final String soqlStr = 'Select {0} {1} ';
soql += String.format(soqlStr, new String[] {strColumus , pageController.getSelectedDataSql()});
- // system.debug(pageController + 'getSelectedDataInfo soql ' + soql);
- system.debug('zheli~getSelectedDataInfo soql ' + soql);
+ system.debug(pageController + 'getSelectedDataInfo soql ' + soql);
List<sObject> queryList = Database.query(soql);
pageController.selectedData = queryList;
pageController.makeSelectedDataInfo();
@@ -328,8 +323,6 @@
// get selected data
pageController.setViewList(new List<sObject>());
currentPageRecordCnt = pageController.viewList.size();
- allrecords = pageController.viewList;
- System.debug(LoggingLevel.INFO, '*** allrecords: ' + allrecords);
recordAllCount = currentPageRecordCnt;
pageController.sqlWhereStr = '';
return;
@@ -508,8 +501,6 @@
pageController.setViewList(queryList);
currentPageRecordCnt = pageController.viewList.size();
- allrecords = pageController.viewList;
- System.debug(LoggingLevel.INFO, '*** allrecords: ' + allrecords);
system.debug('鈼忊棌鈼忊棌鈼� searchAndPaging END ' );
} catch (Exception e) {
@@ -571,7 +562,7 @@
, orderStr
, limitStr});
- system.debug('makeSoql'+soql);
+ system.debug(soql);
return soql;
}
public void searchGoPage() {
--
Gitblit v1.9.1