| | |
| | | public with sharing class LeadIntentionController { |
| | | public without sharing class LeadIntentionController { |
| | | public List<PCLInfo> pclInfos { get; set; } |
| | | |
| | | /*****************検索用******************/ |
| | |
| | | private String soqlForMoneyWithoutSort = null; |
| | | |
| | | private static Integer searchLimit = 1000; |
| | | public String staticResource {get; set;} |
| | | public String awsDataIds {get; set;} |
| | | public LeadIntentionController() { |
| | | |
| | | pclInfos = new List<PCLInfo>(); |
| | |
| | | |
| | | isActiveFormula = '有效'; |
| | | |
| | | staticResource = JSON.serialize(PIHelper.getPIIntegrationInfo('Inquiry_form__c')); |
| | | } |
| | | |
| | | public PageReference init() { |
| | |
| | | System.debug('最后取得:'+pclInfos.size()); |
| | | pclCount = pclInfos.size(); |
| | | ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '取得最近的 ' + pclCount + ' 条数据')); |
| | | |
| | | |
| | | List<String> a = new List<String>(); |
| | | for(Inquiry_form__c ifc : queryList){ |
| | | a.add(ifc.AWS_Data_Id__c); |
| | | } |
| | | awsDataIds = JSON.serialize(a); |
| | | return null; |
| | | } |
| | | |
| | |
| | | + ' Opp_Name_Search__c, Opportunity_Division__c, LeadSource__c, Campaign__c,' |
| | | + ' Urgent__c, Request_Detail__c ,Contact_Id__c,Hospital_ID__c,Department_ID__c,Opp_Name_Search_ID__c,' |
| | | + 'Campaign_ID__c,Last_Name__c,Family_Name__c,Name,Reasons_options__c,' |
| | | + 'Product1__c,Confirmation_Date__c' |
| | | + 'Product1__c,Confirmation_Date__c,AWS_Data_Id__c' |
| | | //,Lead_link__c |
| | | + ' from Inquiry_form__c where Id != null ' |
| | | + ' from Inquiry_form__c where Id != null '; |
| | | //2021-11-24 mzy 共通平台项目-首页修改 start |
| | | //只查询所有人是当前用户的产品咨询单 |
| | | + ' And OwnerId = \''+UserInfo.getUserId()+'\''; |
| | | //+ ' And OwnerId = \''+UserInfo.getUserId()+'\'' |
| | | //2021-11-24 mzy 共通平台项目-首页修改 end |
| | | |
| | | //状态只显示未跟进 |