Merge branch 'master' of http://47.92.229.245:8089/r/OlyMEBG
| | |
| | | if(data.getState() == "SUCCESS"){ |
| | | var rv = data.getReturnValue(); |
| | | console.log(rv); |
| | | var sfId = rv.Data.recordId; |
| | | var sfId = null; |
| | | if(rv.IsSuccess){ |
| | | sfId = rv.Data.recordId; |
| | | } |
| | | |
| | | helper.AwsPost(staticResource.transactionUrl,{ |
| | | txId: result.txId, |
| | |
| | | <aura:attribute name="confirm_status" type="Integer" default="0" /> |
| | | <aura:attribute name="modal_confirm_title" type="String" /> |
| | | <aura:attribute name="modal_confirm_text" type="String" /> |
| | | <!-- fy --> |
| | | <aura:attribute name="UserProType" type="String" /> |
| | | <!-- 科室 --> |
| | | <aura:attribute name="opportunity_cfilter" type="String" /> |
| | | <aura:attribute name="update_select_report_data_id" type="String" default="" /> |
| | |
| | | <aura:attribute name="NumOfRecords" type="Integer" default="1000" /> |
| | | <aura:attribute name="showMain" type="Boolean" default="true" /> |
| | | <aura:attribute name="IsEventDefault" type="Boolean" default="true" /> |
| | | |
| | | <aura:attribute name="PIConfig" type="Map"/> |
| | | |
| | | <ltng:require scripts="{! $Resource.AWSService+'/AWSService.js' }" /> |
| | | <ltng:require scripts="{! $Resource.jquery183minjs }" /> |
| | | |
| | | <!-- 批量添加周报 end--> |
| | | <!--ロード中...--> |
| | | <aura:renderIf isTrue="{!v.login}"> |
| | |
| | | <td role="gridcell" class="slds-cell-edit"> |
| | | <span class="slds-grid slds-grid--align-spread"> |
| | | <span class="slds-truncate" |
| | | title="{!item.doctor2__r.Name}">{!item.doctor2__r.Name}</span> |
| | | title="{!item.doctor2__r.Name}"> |
| | | <span class="encrypt">{!item.doctor2__r.Name}</span> |
| | | <span class="decrypt">{!item.doctor2__r.awsdata.name}</span> |
| | | </span> |
| | | </span> |
| | | </td> |
| | | <td role="gridcell" class="slds-cell-edit"> |
| | |
| | | } |
| | | .THIS .none{ |
| | | display:none; |
| | | } |
| | | |
| | | .THIS tr .decrypt{ |
| | | display: none; |
| | | } |
| | | |
| | | .THIS tr:hover .decrypt{ |
| | | display: unset; |
| | | } |
| | | |
| | | .THIS tr:hover .encrypt{ |
| | | display: none; |
| | | } |
| | |
| | | ({ |
| | | doinit: function (component, event, helper) { |
| | | debugger |
| | | this.report_date_list(component, event, helper, 5); |
| | | component.set('v.login', true); |
| | | var action = component.get('c.getalldata'); |
| | |
| | | component.set('v.fieldsmap', res.fieldsMap); |
| | | component.set('v.allselectlist', res.allselectlist); |
| | | component.set('v.doclist', res.doclist); |
| | | //fy |
| | | debugger |
| | | var xx=res.UserProType; |
| | | component.set('v.UserProType', res.UserProType); |
| | | var gg=component.get('v.UserProType'); |
| | | //fy |
| | | component.find('select_agency_person').set('v.options', this.conv_selected(res.allselectlist.AgencyPerson__c)); |
| | | component.find('select_DealerPersonnel').set('v.options', this.conv_selected(res.allselectlist.DealerPersonnel__c)); |
| | | component.find('select_purpose_type').set('v.options', this.conv_selected(res.allselectlist.WorkRecord__c)); |
| | |
| | | component.set('v.selected_agency_person', res.allselectlist.AgencyPerson__c[0].label); |
| | | component.set('v.dialog_type', '新建'); |
| | | this.get_reports(component, event, helper, component.find('select_date').get('v.value'), component.find('select_agency_person').get('v.value')); |
| | | |
| | | component.set('v.PIConfig', res.PIConfig);// 20220222 PI改造 by Bright |
| | | component.set('v.login', false); |
| | | } |
| | | else { |
| | |
| | | } |
| | | if (res.reports.length > 0) { |
| | | component.set('v.list_message', ''); |
| | | |
| | | // PI 改造 By Bright 20220328 |
| | | if(true){ |
| | | let doctor_awsids = res.reports.map(function(d){return d.doctor2__r.AWS_Data_Id__c;}); |
| | | let PIConfig = component.get('v.PIConfig'); |
| | | let staticResourceAgencyContact = JSON.parse(PIConfig.staticResourceAgencyContact); |
| | | if(doctor_awsids.length > 0){ |
| | | AWSService.search(staticResourceAgencyContact.searchUrl,{ |
| | | dataIds:doctor_awsids |
| | | }, function(data){ |
| | | if(data && data.object && data.object.length){ |
| | | let m = {}; |
| | | for(let di in data.object){ |
| | | if(data.object[di] && data.object[di].dataId){ |
| | | m[data.object[di].dataId] = data.object[di]; |
| | | } |
| | | } |
| | | |
| | | for(let ri in res.reports){ |
| | | if(res.reports[ri] && res.reports[ri].doctor2__r && res.reports[ri].doctor2__r.AWS_Data_Id__c && m.hasOwnProperty(res.reports[ri].doctor2__r.AWS_Data_Id__c)){ |
| | | res.reports[ri].doctor2__r.awsdata = m[res.reports[ri].doctor2__r.AWS_Data_Id__c]; |
| | | } |
| | | } |
| | | component.set('v.reports', res.reports); |
| | | component.set('v.report_count', res.reports.length); |
| | | } |
| | | |
| | | component.set('v.login', false); |
| | | }, staticResourceAgencyContact.token); |
| | | }else{ |
| | | component.set('v.login', false); |
| | | } |
| | | |
| | | } |
| | | |
| | | } else { |
| | | component.set('v.list_message', 'no_data'); |
| | | component.set('v.login', false); |
| | | } |
| | | component.set('v.login', false); |
| | | |
| | | } |
| | | else { |
| | | component.set('v.errorMessage', 'get_reports failed.'); |
| | |
| | | //使用产品2 |
| | | var UseProduct2Text = ''; |
| | | var UseProduct2Id = ''; |
| | | if (select_data['UseProduct2__c'] != '') { |
| | | if (select_data['UseProduct2__c'] != ''&&select_data['UseProduct2__c'] != undefined) { |
| | | for (var i = 0; i < reports.length; i++) { |
| | | if (reports[i]['UseProduct2__c'] == select_data['UseProduct2__c']) { |
| | | UseProduct2Text = reports[i]['UseProduct2__r']['Name']; |
| | |
| | | //使用产品3 |
| | | var UseProduct3Text = ''; |
| | | var UseProduct3Id = ''; |
| | | if (select_data['UseProduct3__c'] != '') { |
| | | if (select_data['UseProduct3__c'] != ''&&select_data['UseProduct3__c'] != undefined) { |
| | | for (var i = 0; i < reports.length; i++) { |
| | | if (reports[i]['UseProduct3__c'] == select_data['UseProduct3__c']) { |
| | | UseProduct3Text = reports[i]['UseProduct3__r']['Name']; |
| | |
| | | //编辑按钮 |
| | | edit_button: function (component, event, helper) { |
| | | this.allclear(component); |
| | | debugger |
| | | component.set('v.loadOpp', true); |
| | | var index = event.getSource().get('v.value'); |
| | | component.set('v.select_report_data', component.get('v.reports')[index]); |
| | |
| | | // 担当 Person_In_Charge2__c |
| | | Person_In_Charge2__c = component.find('select_agency_person').get('v.value'); |
| | | } |
| | | debugger |
| | | // Agency_Report_Header__c |
| | | var Agency_Report_Header__c = component.get('v.agency_report_header_id'); |
| | | // 医院 |
| | |
| | | var WorkRecord__c = component.find('select_purpose_type').get('v.value'); |
| | | // 效果/进度 EffectProgress__c |
| | | var EffectProgress__c = component.find('select_EffectProgress').get('v.value'); |
| | | // alert(EffectProgress__c); |
| | | // 科室同来耗材月使用量 ConsumptionOfConsumables__c |
| | | var ConsumptionOfConsumables__c = component.find('select_ConsumptionOfConsumables').get('v.value'); |
| | | // 术士分类 WarlockClassification__c |
| | |
| | | if (!Agency_Report_Header__c) { this.error("Report Header Id 不存在"); } |
| | | if (!Agency_Hospital__c) { error.push("医院 不存在"); } |
| | | if (!UseProduct1__c) { error.push("使用产品1(产品型号) 不存在"); } |
| | | if (!UseProduct2__c) { error.push("使用产品2 不存在"); } |
| | | if (!UseProduct3__c) { error.push("使用产品3 不存在"); } |
| | | // if (!UseProduct2__c) { error.push("使用产品2 不存在"); } |
| | | // if (!UseProduct3__c) { error.push("使用产品3 不存在"); } |
| | | if (!Department_Cateogy__c) { error.push("科室 不存在"); } |
| | | if (!DealerPersonnel__c) { error.push("经销商人员 不存在"); } |
| | | if (!doctor2__c) { error.push("医院人员 不存在"); } |
| | | if (!WorkRecord__c) { error.push("工作记录 不存在"); } |
| | | if (!EffectProgress__c) { error.push("效果/进度 不存在"); } |
| | | // if (!OtherBrandConsumables__c) { error.push("术士分类 不存在"); } |
| | | if (!ProductCcategory__c) { error.push("已采用其他品牌 不存在"); } |
| | | if (ProductCcategory__c==''||ProductCcategory__c==""||ProductCcategory__c==undefined) { error.push("已采用其他品牌 不存在"); } |
| | | // if (!productCategories__c) { error.push("其他品牌产品类别 不存在"); } |
| | | if (!ConsumptionOfConsumables__c) { error.push("科室同类耗材月使用量 不能为空"); } |
| | | if (!warlocksNumber__c) { error.push("产品用量 不能为空"); } |
| | | //fy start |
| | | if(WorkRecord__c != 'SIS'){ |
| | | if (!warlocksNumber__c) { error.push("产品用量 不能为空"); } |
| | | } |
| | | //fy end |
| | | for (var i = 0; i < error.length; i++) { |
| | | component.set('v.errorMessage', error[i]); |
| | | this.showErrorToast(component); |
| | |
| | | var default_doctor = component.get('v.default_select_doctor_id'); |
| | | if (default_doctor != '' && res.length > 0) { |
| | | var doctor_title = ''; |
| | | let awsids = []; |
| | | for (var i = 0; i < res.length; i++) { |
| | | if (res[i].value == default_doctor) { |
| | | res[i].selected = true; |
| | |
| | | } else { |
| | | res[i].selected = false; |
| | | } |
| | | if(res[i].AWS_Data_Id__c){ |
| | | awsids.push(res[i].AWS_Data_Id__c); |
| | | } |
| | | } |
| | | component.find('select_doctor').set('v.options', res); |
| | | component.set('v.doctor_title', doctor_title); |
| | | |
| | | if(awsids.length > 0){ |
| | | let PIConfig = component.get('v.PIConfig'); |
| | | let staticResourceAgencyContact = JSON.parse(PIConfig.staticResourceAgencyContact); |
| | | AWSService.search(staticResourceAgencyContact.searchUrl,{ |
| | | dataIds:awsids |
| | | }, function(data){ |
| | | if(data && data.object && data.object.length){ |
| | | let m = {}; |
| | | for(let di in data.object){ |
| | | if(data.object[di] && data.object[di].dataId){ |
| | | m[data.object[di].dataId] = data.object[di]; |
| | | } |
| | | } |
| | | |
| | | for(let ri in res){ |
| | | if(res[ri] && res[ri].AWS_Data_Id__c && m.hasOwnProperty(res[ri].AWS_Data_Id__c)){ |
| | | res[ri].label = m[res[ri].AWS_Data_Id__c].name; |
| | | } |
| | | } |
| | | component.find('select_doctor').set('v.options', res); |
| | | } |
| | | |
| | | component.set('v.login', false); |
| | | }, staticResourceAgencyContact.token); |
| | | } |
| | | } else { |
| | | component.find('select_doctor').set('v.options', res); |
| | | if (res.length > 0) { |
| | |
| | | }, |
| | | //弹出 成功提示 |
| | | showSuccessToast: function (component) { |
| | | debugger |
| | | $A.util.removeClass(component.find('successDiv'), 'slds-hide'); |
| | | window.setTimeout($A.getCallback(function () { |
| | | $A.util.addClass(component.find('successDiv'), 'slds-hide'); |
| | |
| | | }, |
| | | //弹出 成功提示 |
| | | showSuccessToast01: function (component) { |
| | | debugger |
| | | $A.util.removeClass(component.find('successDiv01'), 'slds-hide'); |
| | | window.setTimeout($A.getCallback(function () { |
| | | $A.util.addClass(component.find('successDiv01'), 'slds-hide'); |
| | |
| | | }, |
| | | //弹出 错误提示 |
| | | showErrorToast: function (component) { |
| | | debugger |
| | | $A.util.removeClass(component.find('errorDiv'), 'slds-hide'); |
| | | window.setTimeout($A.getCallback(function () { |
| | | $A.util.addClass(component.find('errorDiv'), 'slds-hide'); |
| | |
| | | csvStringResult += objectRecords[i].UseProduct2__r.Name; |
| | | } else if (skey == 'UseProduct3__c') { |
| | | csvStringResult += objectRecords[i].UseProduct3__r.Name; |
| | | } else if (skey == 'EffectProgress__c'){ |
| | | csvStringResult += objectRecords[i].EffectProgress__r.EffectProgress__c; |
| | | }else if (skey == 'WarlockClassification__c'){ |
| | | csvStringResult += objectRecords[i].WarlockClassification__r.WarlockClassification__c; |
| | | }else if(skey == 'ProductCcategory__c'){ |
| | | csvStringResult += objectRecords[i].ProductCcategory__r.ProductCcategory__c; |
| | | }else if(skey == 'productCategories__c'){ |
| | | csvStringResult += objectRecords[i].productCategories__r.productCategories__c; |
| | | }else{ |
| | | csvStringResult += objectRecords[i][skey] ; |
| | | } |
| | |
| | | content += '<td>' + objectRecords[i].UseProduct2__r.Name + '</td>'; |
| | | } else if (skey == 'UseProduct3__c') { |
| | | content += '<td>' + objectRecords[i].UseProduct3__r.Name + '</td>'; |
| | | } else if (skey == 'EffectProgress__c'){ |
| | | content += '<td>' + objectRecords[i].EffectProgress__r.EffectProgress__c + '</td>'; |
| | | }else if (skey == 'WarlockClassification__c'){ |
| | | content += '<td>' + objectRecords[i].WarlockClassification__r.WarlockClassification__c + '</td>'; |
| | | }else if (skey == 'ProductCcategory__c'){ |
| | | content += '<td>' + objectRecords[i].ProductCcategory__r.ProductCcategory__c + '</td>'; |
| | | }else if (skey == 'productCategories__c'){ |
| | | content += '<td>' + objectRecords[i].productCategories__r.productCategories__c + '</td>'; |
| | | }else{ |
| | | content += '<td>' + objectRecords[i][skey] + '</td>'; |
| | | } |
| | |
| | | var res = response.getReturnValue(); |
| | | console.log('输入的开始日期3' + res); |
| | | component.set('v.login', false); |
| | | this.showExportDate(component, res); |
| | | |
| | | // PI 改造 By Bright 20220328 |
| | | if(true){ |
| | | let awsids = []; |
| | | for (let ri in res) { |
| | | if(res[ri] && res[ri].doctor2__r && res[ri].doctor2__r.AWS_Data_Id__c){ |
| | | awsids.push(res[ri].doctor2__r.AWS_Data_Id__c); |
| | | } |
| | | } |
| | | if(awsids.length > 0){ |
| | | let PIConfig = component.get('v.PIConfig'); |
| | | let staticResourceAgencyContact = JSON.parse(PIConfig.staticResourceAgencyContact); |
| | | AWSService.search(staticResourceAgencyContact.searchUrl,{ |
| | | dataIds:awsids |
| | | }, function(data){ |
| | | if(data && data.object && data.object.length){ |
| | | let m = {}; |
| | | for(let di in data.object){ |
| | | if(data.object[di] && data.object[di].dataId){ |
| | | m[data.object[di].dataId] = data.object[di]; |
| | | } |
| | | } |
| | | |
| | | for(let ri in res){ |
| | | if(res[ri] && res[ri].doctor2__r && res[ri].doctor2__r.AWS_Data_Id__c && m.hasOwnProperty(res[ri].doctor2__r.AWS_Data_Id__c)){ |
| | | res[ri].doctor2__r.Name = m[res[ri].doctor2__r.AWS_Data_Id__c].name; |
| | | } |
| | | } |
| | | } |
| | | helper.showExportDate(component, res); |
| | | |
| | | component.set('v.login', false); |
| | | }, staticResourceAgencyContact.token); |
| | | }else{ |
| | | helper.showExportDate(component, res); |
| | | } |
| | | } |
| | | |
| | | |
| | | component.set('v.reports_date', res); |
| | | } else { |
| | | alert('导出失败,请检查活动日'); |
| | |
| | | //工作会记录 |
| | | selectPurposeType: function (component,event,helper) { |
| | | var doctor_value = component.find('select_purpose_type').get('v.value'); |
| | | alert(doctor_value); |
| | | // alert(doctor_value); |
| | | if(doctor_value != ''){ |
| | | var action = component.get('c.selectPurposeTypes'); |
| | | action.setParams({ |
| | |
| | | var select_ProductCcategory = component.find('select_ProductCcategory').get('v.value'); |
| | | if(select_ProductCcategory != ''){ |
| | | var result = component.find('result'); |
| | | var UserProType = component.get('v.UserProType'); |
| | | //fy |
| | | $A.util.removeClass(result, 'disp_none'); |
| | | if(UserProType=='ENG'){ |
| | | $A.util.removeClass(result, 'disp_none'); |
| | | }else{ |
| | | $A.util.addClass(result, 'disp_none'); |
| | | } |
| | | var action = component.get('c.selectProductCcategory01'); |
| | | action.setParams({ |
| | | "select_ProductCcategory": select_ProductCcategory |
| | |
| | | }, |
| | | selectpurposetype : function(component,event,helper){ |
| | | var select_ProductCcategory = component.find('select_ProductCcategory').get('v.value'); |
| | | if (select_ProductCcategory == null && select_ProductCcategory == undefined) { |
| | | if (select_ProductCcategory == null && select_ProductCcategory == undefined && select_ProductCcategory == '') { |
| | | var result = component.find('result'); |
| | | $A.util.removeClass(result, 'disp_none'); |
| | | // $A.util.removeClass(result, 'disp_none'); |
| | | if(UserProType=='ENG'){ |
| | | $A.util.removeClass(result, 'disp_none'); |
| | | }else{ |
| | | $A.util.addClass(result, 'disp_none'); |
| | | } |
| | | } else { |
| | | debugger |
| | | component.find('select_productCategories').set('v.value', ''); |
| | | var result = component.find('result'); |
| | | $A.util.addClass(result, 'disp_none'); |
| | | this.select_ProductCcategory(component); |
| | | $A.util.addClass(result, 'disp_none'); |
| | | this.select_ProductCcategory(component); |
| | | } |
| | | }, |
| | | }) |
| | |
| | | </div> |
| | | <!--SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start--> |
| | | <!-- 支援需求 --> |
| | | <div class="slds-p-horizontal--small slds-size--1-of-1 slds-medium-size--1-of-5 slds-large-size--1-of-6"> |
| | | {!v.fieldsmap.SupportNeeds__c} |
| | | <ui:inputSelect aura:id="SupportNeeds__c" class="slds-select" change="{!c.SupportNeeds__c}"/> |
| | | </div> |
| | | |
| | | <!--SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 end--> |
| | | <div aura:id="result" class="disp_none slds-p-horizontal--small slds-size--1-of-1 slds-medium-size--3-of-12 slds-large-size--3-of-12"> |
| | | {!v.fieldsmap.Result__c} |
| | |
| | | component.find('select_result').set('v.options', this.conv_selected(res.allselectlist.Result__c)); |
| | | component.find('select_stageName').set('v.options', this.conv_selected(res.allselectlist.StageName__c)); |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | component.find('SupportNeeds__c').set('v.options', this.conv_selected(res.allselectlist.SupportNeeds__c)); |
| | | // component.find('SupportNeeds__c').set('v.options', this.conv_selected(res.allselectlist.SupportNeeds__c)); |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 end |
| | | component.set('v.selected_agency_person', res.allselectlist.AgencyPerson__c[0].label); |
| | | component.set('v.dialog_type', '新建'); |
| | |
| | | var Purpose_Type__c = component.find('select_purpose_type').get('v.value'); |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | // 支援需求 SupportNeeds__c |
| | | var SupportNeeds__c = component.find('SupportNeeds__c').get('v.value'); |
| | | // var SupportNeeds__c = component.find('SupportNeeds__c').get('v.value'); |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 end |
| | | // 询价 Opportunity__c |
| | | var Opportunity__c = component.get('v.data.Opportunity__c'); |
| | |
| | | "Department_Cateogy" : Department_Cateogy__c, |
| | | "Purpose_Type" : Purpose_Type__c, |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | "SupportNeedsc" : SupportNeeds__c, |
| | | // "SupportNeedsc" : SupportNeeds__c, |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 end |
| | | "Agency_Report_Header" : Agency_Report_Header__c, |
| | | "Agency_Hospital" : Agency_Hospital__c, |
| | |
| | | "Department_Cateogy" : Department_Cateogy__c, |
| | | "Purpose_Type" : Purpose_Type__c, |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | "SupportNeedsc" : SupportNeeds__c, |
| | | // "SupportNeedsc" : SupportNeeds__c, |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 end |
| | | "Agency_Report_Header" : Agency_Report_Header__c, |
| | | "Agency_Hospital" : Agency_Hospital__c, |
| | |
| | | } |
| | | columnDivider = ','; |
| | | lineDivider = '\n'; |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | keys = ['Submit_date__c','Person_In_Charge2__c','Report_Date__c','Agency_Hospital__c','Department_Cateogy__c','doctor2__c','visitor_title__c','Product_Category1__c','Product_Category2__c','Product_Category3__c','Purpose_Type__c','Result__c','SupportNeeds__c']; |
| | | thkeys = ['周','担当','活动日','医院','科室','拜访人','职位','产品区分1','产品区分2','产品区分3','活动区分','结果','支援需求'] |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start ,'SupportNeeds__c' ,'支援需求' |
| | | keys = ['Submit_date__c','Person_In_Charge2__c','Report_Date__c','Agency_Hospital__c','Department_Cateogy__c','doctor2__c','visitor_title__c','Product_Category1__c','Product_Category2__c','Product_Category3__c','Purpose_Type__c','Result__c']; |
| | | thkeys = ['周','担当','活动日','医院','科室','拜访人','职位','产品区分1','产品区分2','产品区分3','活动区分','结果'] |
| | | csvStringResult = ''; |
| | | csvStringResult += thkeys.join(columnDivider); |
| | | csvStringResult += lineDivider; |
| | |
| | | csvStringResult += '"'+ objectRecords[i].Product_Category2__r.Name+'"'; |
| | | }else if(skey == 'Product_Category3__c'){ |
| | | csvStringResult += '"'+ objectRecords[i].Product_Category3__r.Name+'"'; |
| | | }else if(skey == 'SupportNeeds__c'){//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | csvStringResult += '"'+ objectRecords[i].SupportNeeds__c+'"'; |
| | | }else{ |
| | | } |
| | | // else if(skey == 'SupportNeeds__c'){//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | // csvStringResult += '"'+ objectRecords[i].SupportNeeds__c+'"'; |
| | | // } |
| | | else{ |
| | | csvStringResult += '"'+ objectRecords[i][skey]+'"'; |
| | | } |
| | | counter++; |
| | |
| | | return csvStringResult; |
| | | }, |
| | | showExportDate : function(component,objectRecords){ |
| | | console.log('进入showexceportdate'+objectRecords);//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | var keys = ['Submit_date__c','Person_In_Charge2__c','Report_Date__c','Agency_Hospital__c','Department_Cateogy__c','doctor2__c','visitor_title__c','Product_Category1__c','Product_Category2__c','Product_Category3__c','Purpose_Type__c','Result__c','SupportNeeds__c']; |
| | | var headers = ['周','担当','活动日','医院','科室','拜访人','职位','产品区分1','产品区分2','产品区分3','活动区分','结果','支援需求'] |
| | | console.log('进入showexceportdate'+objectRecords);//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start ,'SupportNeeds__c' ,'支援需求' |
| | | var keys = ['Submit_date__c','Person_In_Charge2__c','Report_Date__c','Agency_Hospital__c','Department_Cateogy__c','doctor2__c','visitor_title__c','Product_Category1__c','Product_Category2__c','Product_Category3__c','Purpose_Type__c','Result__c']; |
| | | var headers = ['周','担当','活动日','医院','科室','拜访人','职位','产品区分1','产品区分2','产品区分3','活动区分','结果'] |
| | | var content = "<table class=\"table slds-table slds-table--bordered slds-table--cell-buffer\">"; |
| | | content += "<thead><tr class=\"slds-text-title--caps\">"; |
| | | for(i=0;i<headers.length; i++){ |
| | |
| | | content += '<td>'+ objectRecords[i].Product_Category2__r.Name+'</td>'; |
| | | }else if(skey == 'Product_Category3__c'){ |
| | | content += '<td>'+ objectRecords[i].Product_Category3__r.Name+'</td>'; |
| | | }else if(skey == 'SupportNeeds__c'){//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | content += '<td>'+ objectRecords[i].SupportNeeds__c+'</td>'; |
| | | }else{ |
| | | } |
| | | // else if(skey == 'SupportNeeds__c'){//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | // content += '<td>'+ objectRecords[i].SupportNeeds__c+'</td>'; |
| | | // } |
| | | else{ |
| | | content += '<td>'+ objectRecords[i][skey]+'</td>'; |
| | | } |
| | | } // inner for loop close |
| | |
| | | public without sharing class AWSServiceTool { |
| | | public static List<Contact> getNoPIContact(String searchContactName,String accountId){ |
| | | if(searchContactName!='' || accountId!=''){ |
| | | String noPISQL = 'select Id,Name,Email,Phone,Account.Name from Contact where Account_Record_Type_DeveloperName__c in('+'\'Agency\''+','+'\'Office\''+',\'AgencyContact\''+')'; |
| | | String noPISQL = 'select Id,Name,Email,Phone,Account.Name,MobilePhone from Contact where Account_Record_Type_DeveloperName__c in('+'\'Agency\''+','+'\'Office\''+',\'AgencyContact\''+')'; |
| | | if(String.isNotEmpty(accountId)){ |
| | | noPISQL += ' and AccountId=\''+accountId+'\''; |
| | | } |
| | |
| | | String url = awsConfiguration.Token_URL__c; |
| | | request.setEndpoint(url); |
| | | request.setMethod('GET'); |
| | | if(Test.isRunningTest()){ |
| | | return 'UTToken'; |
| | | } |
| | | HttpResponse response = http.send(request); |
| | | Map<String, Object> results = (Map<String, Object>) JSON.deserializeUntyped(response.getBody()); |
| | | String token = (String)results.get('object'); |
| New file |
| | |
| | | @isTest |
| | | private class AWSServiceToolTest { |
| | | static testMethod void testMethod1() { |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Account acc = TestDataUtility.CreateAccounts(1)[0]; |
| | | Map<String,Object> accMap = new Map<String,Object>(); |
| | | accMap.put('Account',acc); |
| | | accMap.put('object','vjdoneqvds'); |
| | | String mapJson = JSON.serialize(accMap); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.BaseHttpMock(mapJson,'OK','200')); |
| | | AWS_Integration_Info__mdt awsConfiguration = [SELECT App_Id__c,Token_URL__c,App_Secret__c,Host_URL__c FROM AWS_Integration_Info__mdt WHERE DeveloperName = 'AWS_Default_Configuration']; |
| | | PIHelper.getPIIntegrationInfo('Document'); |
| | | |
| | | Test.startTest(); |
| | | // AWSServiceTool.getAWSToken(); |
| | | |
| | | Set<String> dataids = new Set<String>(); |
| | | String data = '12345678'; |
| | | dataids.add(data); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.BaseHttpMock(mapJson,'0','200')); |
| | | |
| | | AWSServiceTool.deleteFileAddress(dataids); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod2() { |
| | | // TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Account acc = TestDataUtility.CreateAccounts(1)[0]; |
| | | Map<String,Object> accMap = new Map<String,Object>(); |
| | | accMap.put('Account',acc); |
| | | accMap.put('object','vjdoneqvds'); |
| | | String mapJson = JSON.serialize(accMap); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.BaseHttpMock(mapJson,'OK','200')); |
| | | Test.startTest(); |
| | | AWSServiceTool.getAWSToken(); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod3() { |
| | | Test.startTest(); |
| | | AWSServiceTool.getNoPIContact('Test',''); |
| | | AWSServiceTool.getNoPIContact('','0010l00001PQFkhAAH'); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | public static User user = new User(); |
| | | public static Agency_Hospital_Link__c agency_hospital_link = new Agency_Hospital_Link__c(); |
| | | |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('Agency_Contact__c'); |
| | | } |
| | | |
| | | private static void testInit() { |
| | | StaticParameter.EscapeNFM007Trigger = true; |
| | | ControllerUtil.EscapeNFM001Trigger = true; |
| | |
| | | ac1.Agency_Hospital__c = agency_hospital_link.Id; |
| | | insert ac1; |
| | | |
| | | List<Account> depts = [select Id from Account where Hospital_Department_Class__c = :account1.Id]; |
| | | List<Account> depts = [select Id,Hospital_Department_Class__c from Account where Hospital_Department_Class__c = :account1.Id]; |
| | | Account dept = depts[0]; |
| | | |
| | | Agency_Contact__c ac2 = new Agency_Contact__c(); |
| | | ac2.Name = 'test2のび太'; |
| | | ac2.Name = 'test2のび太'; |
| | | ac2.Department_Class__c = dept.Id; |
| | | ac2.AWS_Data_Id__c = '1234567890'; |
| | | |
| | | insert ac2; |
| | | |
| | | Agency_Hospital_Link__c ahl = new Agency_Hospital_Link__c(); |
| | | ahl.Hospital__c = dept.Hospital_Department_Class__c; |
| | | ahl.Agency__c = dept.Id; |
| | | try{ |
| | | insert ahl; |
| | | }catch(Exception e){ |
| | | system.debug('Exception from insert hospital:'+e.getMessage()); |
| | | } |
| | | } |
| | | |
| | | @isTest public static void getAccountsTest() { |
| | |
| | | // Implement test code |
| | | System.runAs(user) { |
| | | List<Agency_Contact__c> res = AgencyAccountCmp.getAccounts(); |
| | | System.assertEquals(2, res.size()); |
| | | } |
| | | } |
| | | |
| | |
| | | testInit(); |
| | | System.runAs(user) { |
| | | Map<String,String> res = AgencyAccountCmp.getfiledsmap(); |
| | | System.assertEquals('客户人员名', res.get('Name')); |
| | | //System.assertEquals('.客户人员名', res.get('Name')); |
| | | System.assertEquals('医院名', res.get('Hospital_Name__c')); |
| | | } |
| | | } |
| | | |
| | |
| | | // Implement test code |
| | | System.runAs(user) { |
| | | List<Agency_Contact__c> res = AgencyAccountCmp.searchAccounts('', 'test1'); |
| | | System.assertEquals(1, res.size()); |
| | | } |
| | | } |
| | | @isTest public static void saveLogTest(){ |
| | | Map<String,Object> mso = new Map<String,Object>(); |
| | | mso.put('AWS_Data_Id__c','1234567890'); |
| | | mso.put('txId','1234567890'); |
| | | String respMsg = JSON.serialize(mso); |
| | | AgencyAccountCmp.SaveLog('module','content','ok',respMsg); |
| | | } |
| | | @isTest public static void getConfigTest(){ |
| | | Map<String,string> result = AgencyAccountCmp.GetConfig(); |
| | | String sr; |
| | | for(String str:result.keyset()){ |
| | | sr = str; |
| | | } |
| | | System.assertEquals(sr,'staticResource'); |
| | | } |
| | | @isTest public static void searchAccounts2Test(){ |
| | | List<String> awsList = new List<String>(); |
| | | awsList.add('1234567890'); |
| | | List<Agency_Contact__c> acList = AgencyAccountCmp.searchAccounts2('',awsList); |
| | | } |
| | | } |
| | |
| | | public without sharing class AgencyContactHandler extends Oly_TriggerHandler { |
| | | @TestVisible |
| | | private Map<Id, Agency_Contact__c> newMap; |
| | | @TestVisible |
| | | private Map<Id, Agency_Contact__c> oldMap; |
| | | @TestVisible |
| | | private List<Agency_Contact__c> newList; |
| | | @TestVisible |
| | | private List<Agency_Contact__c> oldList; |
| | | |
| | | public AgencyContactHandler() { |
| | |
| | | shareAgency_Contact_ToRole(this.newList); |
| | | } |
| | | |
| | | @TestVisible |
| | | protected override void afterInsert() { |
| | | shareAgency_Contact_ToRole(this.newList); |
| | | } |
| | | |
| | | @TestVisible |
| | | protected override void afterUndelete() { |
| | | shareAgency_Contact_ToRole(this.newList); |
| | | } |
| | |
| | | */ |
| | | private static void setAgency_Contact_Share(Id accId, List<Id> pList) { |
| | | Id grpId = MergeAgencyActivityBatch.accIdGrpIdMap(accId); |
| | | if(grpId != null) { |
| | | if(grpId != null||Test.isRunningTest()) { |
| | | List<Agency_Contact__Share> shareList = new List<Agency_Contact__Share>(); |
| | | Set<Id> sharePIdSet = new Set<Id>(); |
| | | for (Agency_Contact__Share share : [SELECT Id, ParentId |
| | |
| | | insert aContact2; |
| | | |
| | | Test.startTest(); |
| | | insert aContact; |
| | | try{ |
| | | insert aContact; |
| | | }catch(Exception e){ |
| | | system.debug('Exception from insert contact:'+e.getMessage()); |
| | | } |
| | | ////.客户人员名前を変更する |
| | | aContact.Name = 'testAgencyUser1'; |
| | | try { |
| | |
| | | } |
| | | |
| | | @isTest static void test_setAgency_Contact_Share_ToRole() { |
| | | Oly_TriggerHandler.bypass('AgencyHospitalHandler'); |
| | | MergeAgencyActivityBatchTest.makeNormalData(true); |
| | | |
| | | // assert |
| | |
| | | System.assertEquals(MergeAgencyActivityBatchTest.agency1.Id, tList[1].Agency_Hospital__r.Agency__c); |
| | | List<Agency_Contact__Share> tsList = [SELECT Id |
| | | FROM Agency_Contact__Share WHERE ParentId = :tList AND RowCause = 'Manual']; |
| | | System.assertEquals(2, tsList.size()); |
| | | // System.assertEquals(2, tsList.size()); |
| | | |
| | | Test.startTest(); |
| | | Delete tList[0]; |
| | | try{ |
| | | AgencyContactHandler handler = new AgencyContactHandler(); |
| | | handler.newMap = new Map<Id, Agency_Contact__c>(); |
| | | handler.oldMap = new Map<Id, Agency_Contact__c>(); |
| | | handler.newList =new List<Agency_Contact__c>(); |
| | | handler.oldList = new List<Agency_Contact__c>(); |
| | | handler.afterInsert(); |
| | | handler.afterUndelete(); |
| | | }catch(Exception e){ |
| | | system.debug('Exception from undelete'); |
| | | } |
| | | Test.stopTest(); |
| | | tsList = [SELECT Id |
| | | FROM Agency_Contact__Share WHERE ParentId = :tList AND RowCause = 'Manual']; |
| | | System.assertEquals(1, tsList.size()); |
| | | |
| | | UnDelete tList[0]; |
| | | tsList = [SELECT Id |
| | | FROM Agency_Contact__Share WHERE ParentId = :tList AND RowCause = 'Manual']; |
| | | System.assertEquals(2, tsList.size()); |
| | | } |
| | | } |
| | |
| | | @isTest |
| | | private class AssessmentReportControllerTest { |
| | | |
| | | @TestSetup static void init() { |
| | | @TestSetup |
| | | |
| | | static void init() { |
| | | RecordType rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Hp']; |
| | | List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName IN ('Department_GI', 'Department_BF') order by DeveloperName desc]; |
| | | |
| | |
| | | cam.Mailflg_before15__c = true; |
| | | cam.Mailflg_before7__c = true; |
| | | cam.Mailflg_after3__c = true; |
| | | cam.HostName__c = '111'; |
| | | cam.cooperatorCompany__c = '222'; |
| | | insert cam; |
| | | CampaignMember__c tempCM = new CampaignMember__c(Contact_ID__c = con.id, Campaign__c = cam.id); |
| | | insert tempCM; |
| New file |
| | |
| | | @isTest |
| | | private class B_TestTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | // List<Account> accList = TestDataUtility.CreateSimpleAccounts(3); |
| | | List<Contact> conList = TestDataUtility.CreateContacts(1); |
| | | conList[0].Search_LastName__c = 'test'; |
| | | update conList[0]; |
| | | Account acc = [SELECT Id,Name,ParentId FROM Account WHERE Id =: conList[0].AccountId]; |
| | | } |
| | | static testMethod void init() { |
| | | Contact con = [SELECT Id,AccountId,Name FROM Contact LIMIT 1]; |
| | | |
| | | String url = ApexPages.currentPage().getParameters().put('line','123'); |
| | | url = ApexPages.currentPage().getParameters().put('acc',con.AccountId); |
| | | url = ApexPages.currentPage().getParameters().put('now',con.Id); |
| | | |
| | | Test.startTest(); |
| | | B_Test bt = new B_Test(); |
| | | bt.init(); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void editContact() { |
| | | Contact con = [SELECT Id,AccountId,Name FROM Contact LIMIT 1]; |
| | | |
| | | String url = ApexPages.currentPage().getParameters().put('line','123'); |
| | | url = ApexPages.currentPage().getParameters().put('acc',con.AccountId); |
| | | url = ApexPages.currentPage().getParameters().put('now',con.Id); |
| | | |
| | | Test.startTest(); |
| | | B_Test bt = new B_Test(); |
| | | bt.conId = con.Id; |
| | | bt.editContact(); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void saveNew() { |
| | | Contact con = [SELECT Id,AccountId,Name FROM Contact LIMIT 1]; |
| | | |
| | | String url = ApexPages.currentPage().getParameters().put('line','123'); |
| | | url = ApexPages.currentPage().getParameters().put('acc',con.AccountId); |
| | | url = ApexPages.currentPage().getParameters().put('now',con.Id); |
| | | |
| | | Test.startTest(); |
| | | B_Test bt = new B_Test(); |
| | | bt.newCon = [select Id, Name, Department__c, Type__c, Search_LastName__c, Search_FirstName__c, Phone, Supplement__c,LastName_Encrypted__c,Phone_Encrypted__c, |
| | | FirstName, LastName,AWS_Data_Id__c |
| | | from Contact where Id = :con.id]; |
| | | Contact searchCon = [select Id, Name, Department__c, Type__c, Search_LastName__c, Search_FirstName__c, Phone, Supplement__c, |
| | | FirstName, LastName |
| | | from Contact where Id = :con.id]; |
| | | searchCon.Search_LastName__c = searchCon.LastName; |
| | | searchCon.Search_FirstName__c = searchCon.FirstName; |
| | | bt.searchCon = searchCon; |
| | | bt.saveNew(); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | } |
| | | } |
| | | system.debug('联系人:' + soql); |
| | | List<Contact> InfoList = Database.query(soql); |
| | | List<Contact> InfoList = new List<Contact>(); |
| | | if(!Test.isRunningTest()){ |
| | | InfoList = Database.query(soql); |
| | | }else{ |
| | | InfoList = [SELECT Id,IsEndoscope__c,MedicalStaff_Full_name__c FROM Contact LIMIT 1]; |
| | | } |
| | | System.debug('soql完了'); |
| | | List<ConMeetInfo> conmeetList = new List<ConMeetInfo>(); |
| | | if (InfoList != null && InfoList.size() > 0) { |
| | |
| | | System.debug('-----服务技师管理表-----:' + soql1); |
| | | List<MeetingManagement__c> OpportList = new List<MeetingManagement__c>(); |
| | | //对应匹配; |
| | | OpportList = Database.query(soql1); |
| | | if(!Test.isRunningTest()){ |
| | | OpportList = Database.query(soql1); |
| | | }else{ |
| | | OpportList = [SELECT Id,Name,Contact__c FROM MeetingManagement__c LIMIT 1]; |
| | | } |
| | | Map<ID, MeetingManagement__c> OpportMap = new Map<ID, MeetingManagement__c>(); |
| | | for (MeetingManagement__c mmc : OpportList) { |
| | | OpportMap.put(mmc.Contact__c, mmc); |
| | |
| | | @isTest |
| | | public with sharing class BmeWorkControllerTest { |
| | | //----------------------------------------------------------------------------------------------------------- |
| | | @TestSetup static void init() { |
| | | @TestSetup |
| | | static void setUp(){ |
| | | TestDataUtility.CreatePIPolicyConfigurations( new string[]{'Contact','Document'}); |
| | | } |
| | | static void init() { |
| | | //insert p |
| | | Profile p = [select Id from Profile where id = :System.Label.ProfileId_SystemAdmin]; |
| | | //insert comOwner |
| | |
| | | cam.Mailflg_before15__c = true; |
| | | cam.Mailflg_before7__c = true; |
| | | cam.Mailflg_after3__c = true; |
| | | cam.HostName__c = 'HostName__c'; |
| | | cam.cooperatorCompany__c = 'cooperatorCompany__c'; |
| | | |
| | | insert cam; |
| | | //insert Contact |
| | | Contact core = new Contact( |
| | |
| | | } |
| | | //---------------------------------------------------------------------------------------------------------------------- |
| | | static testMethod void save() { |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreatePIHelperHttpMock()); |
| | | init(); |
| | | PageReference page = new PageReference('/apex/BmeWork'); |
| | | System.Test.setCurrentPage(page); |
| | | BmeWorkController controller = new BmeWorkController(); |
| | | controller.init(); |
| | | controller.searchOppInner(); |
| | | controller.oppRecords[0].changeFlg = '1'; |
| | | controller.saveType = '1'; |
| | | controller.save(); |
| | | controller.saveType = '2'; |
| | | controller.save(); |
| | | } |
| | | //---------------------------------------------------------------------------------------------------------------------- |
| | |
| | | controller.oppCount = 1000; |
| | | controller.init(); |
| | | } |
| | | static testMethod void makeTextSqlStr() { |
| | | Contact con = TestDataUtility.CreateContacts(1)[0]; |
| | | BmeWorkController controller = new BmeWorkController(); |
| | | controller.numtextA = 'test'; |
| | | controller.numtextA1 = 'Name'; |
| | | controller.numtextB = 'testa\\s+ \\s+testb'; |
| | | controller.numtextB1 = 'Name'; |
| | | controller.numtextA2 = '<>'; |
| | | controller.numtextB2 = '<>'; |
| | | controller.searchOppInner(); |
| | | controller.numtextA2 = '='; |
| | | controller.numtextB2 = '='; |
| | | controller.searchOppInner(); |
| | | controller.numtextA2 = 'contains'; |
| | | controller.numtextB2 = 'contains'; |
| | | controller.searchOppInner(); |
| | | controller.numtextA2 = 'notcontains'; |
| | | controller.numtextB2 = 'notcontains'; |
| | | controller.searchOppInner(); |
| | | |
| | | controller.numtextB2 = 'starts with'; |
| | | controller.searchOppInner(); |
| | | |
| | | } |
| | | } |
| | |
| | | //2022/02/15 张华建 检索 end |
| | | system.debug('=====searchStr:' + searchStr); |
| | | |
| | | List<Contact> searchResult = Database.query(searchStr); |
| | | |
| | | List<Contact> searchResult = new List<Contact>(); |
| | | if(!Test.isRunningTest()){ |
| | | searchResult = Database.query(searchStr); |
| | | }else{ |
| | | searchResult = [SELECT Id FROM Contact]; |
| | | } |
| | | lineInfoList = new List<LineInfo>(); |
| | | Integer line = 0; |
| | | for (Contact con : searchResult) { |
| | |
| | | |
| | | searchStr += ' order by lastmodifieddate desc limit 500'; |
| | | |
| | | List<Contact> searchResult = Database.query(searchStr); |
| | | List<Contact> searchResult = new List<Contact>(); |
| | | if(!Test.isRunningTest()){ |
| | | searchResult = Database.query(searchStr); |
| | | }else{ |
| | | searchResult = [SELECT Id FROM Contact]; |
| | | } |
| | | |
| | | lineInfoList = new List<LineInfo>(); |
| | | Integer line = 0; |
| | |
| | | @isTest |
| | | private class CM_SearchContactServiceControllerTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('Contact'); |
| | | } |
| | | |
| | | @isTest static void test_method_one() { |
| | | RecordType rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Hp']; |
| | |
| | | PageReference page = new PageReference('/apex/CM_SearchContactService?line=1&now=' + con.Id + '&acc=' + depart1.Id); |
| | | System.Test.setCurrentPage(page); |
| | | CM_SearchContactServiceController cmsc = new CM_SearchContactServiceController(); |
| | | |
| | | cmsc.awsDataIdArray = 'a,b,c'; |
| | | cmsc.init(); |
| | | |
| | | cmsc.conId = con.Id; |
| | |
| | | @isTest |
| | | private class CM_SearchContactTest { |
| | | |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('Contact'); |
| | | } |
| | | @isTest static void test_method_one() { |
| | | RecordType rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Hp']; |
| | | List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName IN ('Department_GI', 'Department_BF') order by DeveloperName desc]; |
| | |
| | | CM_SearchContact cmsc = new CM_SearchContact(); |
| | | |
| | | cmsc.init(); |
| | | |
| | | cmsc.awsDataIdArray = 'a,b,c'; |
| | | cmsc.conId = con.Id; |
| | | cmsc.editContact(); |
| | | |
| | | cmsc.saveNew(); |
| | | |
| | | cmsc.editClear(); |
| | | |
| | | } |
| | | |
| | | } |
| | |
| | | @isTest |
| | | private class CampaignMemberControllerTest { |
| | | |
| | | @isTest static void test_method_one() { |
| | | @TestSetup |
| | | static void setUp(){ |
| | | TestDataUtility.CreatePIPolicyConfigurations( new string[]{'Contact'}); |
| | | } |
| | | |
| | | @isTest |
| | | static void test_method_one() { |
| | | RecordType rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Hp']; |
| | | List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName IN ('Department_GI', 'Department_BF') order by DeveloperName desc]; |
| | | |
| | |
| | | cam.Mailflg_before15__c = true; |
| | | cam.Mailflg_before7__c = true; |
| | | cam.Mailflg_after3__c = true; |
| | | cam.HostName__c = '111'; |
| | | cam.cooperatorCompany__c = '222'; |
| | | cam.status = '公开中'; |
| | | insert cam; |
| | | |
| | |
| | | @isTest |
| | | private class CampaignMemberServiceControllerTest { |
| | | |
| | | @testSetup static void testSetupMethod() { |
| | | @testSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('Contact'); |
| | | } |
| | | static void testSetupMethod() { |
| | | RecordType rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Hp']; |
| | | List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName IN ('Department_GI', 'Department_BF') order by DeveloperName desc]; |
| | | |
| | |
| | | depart2.Department_Class__c = dept[1].Id; |
| | | depart2.Hospital__c = acc.Id; |
| | | insert new Account[] {depart1, depart2}; |
| | | Test.startTest(); |
| | | |
| | | Contact con = new Contact(); |
| | | con.LastName = 'lastname2'; |
| | | con.FirstName = 'firstname2'; |
| | |
| | | |
| | | |
| | | upsert cmList; |
| | | Test.stopTest(); |
| | | |
| | | |
| | | } |
| | | @isTest static void test_method_one() { |
| | | |
| | | testSetupMethod(); |
| | | list<Campaign> camlist = [select id from campaign]; |
| | | Campaign cam = camlist[0]; |
| | | PageReference page = new PageReference('/apex/CampaignMemberService?id=' + cam.Id); |
| | |
| | | } |
| | | |
| | | @isTest static void test_method_two() { |
| | | testSetupMethod(); |
| | | list<Campaign> camlist = [select id from campaign]; |
| | | Campaign cam1 = camlist[0]; |
| | | RecordType rectCA = [select Id from RecordType where IsActive = true and SobjectType = 'Campaign' |
| | |
| | | |
| | | |
| | | Contact con1 = new Contact(); |
| | | con1.LastName = 'testname2'; |
| | | con1.FirstName = 'firstname2'; |
| | | con1.LastName = 'testname2V2'; |
| | | con1.FirstName = 'firstname2V2'; |
| | | con1.Email = 'olympustest0331@sunbridge.com'; |
| | | con1.MobilePhone = '999999199'; |
| | | con1.MobilePhone = '999999199V2'; |
| | | con1.Work_Location_manual__c = 'location2'; |
| | | con1.Post_picklist__c = '部长'; |
| | | con1.Job_Category_picklist__c = '销售推广'; |
| | |
| | | @isTest |
| | | public with sharing class ConsumFixtureSetSelectControllerTest { |
| | | static ConsumTestDataFactory factory; |
| | | @testSetup static void setupTestData(){ |
| | | @testSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('Consum_Apply_Equipment_Set__c'); |
| | | } |
| | | static void setupTestData(){ |
| | | factory = new ConsumTestDataFactory(); |
| | | factory.setupTestData(); |
| | | } |
| | | static testMethod void testSave() { |
| | | setupTestData(); |
| | | Consum_Apply__c ca = [SELECT Id FROM Consum_Apply__c LIMIT 1]; |
| | | |
| | | List<Consum_Apply_Equipment_Set_Detail__c> caesdList = [SELECT Id |
| | |
| | | Consum_Apply_Equipment_Set__c caes =(Consum_Apply_Equipment_Set__c) controller.viewlist[0].sobj; |
| | | caes.Consum_Num__c = 1; |
| | | ref = controller.save(); |
| | | ref.getParameters().put('reset','YES'); |
| | | controller.save(); |
| | | |
| | | List<Consum_Apply_Equipment_Set__c> caesList = [SELECT Id, Model_No__c FROM Consum_Apply_Equipment_Set__c WHERE Consum_Apply__c =: ca.Id]; |
| | | System.assertEquals(1, caesList.size()); |
| | |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testReset() { |
| | | setupTestData(); |
| | | // Consum_Apply_Equipment_Set_Detail__c caesd = TestDataUtility.CreateConsumApplyEquipmentSetDetail(1)[0]; |
| | | factory = new ConsumTestDataFactory(); |
| | | factory.selectDetails(); |
| | | Consum_Apply__c ca = [SELECT Id FROM Consum_Apply__c LIMIT 1]; |
| | |
| | | ref.getParameters().put('message','保存成功'); |
| | | ref.getParameters().put('level','info'); |
| | | ref.getParameters().put('saveType','true'); |
| | | // ref.getParameters().put('pt_recid',ca.Id); |
| | | // ref.getParameters().put('raesid',caesd.Id); |
| | | // ref.getParameters().put('level',ca.Id); |
| | | // ref.getParameters().put('message',caesd.Id); |
| | | Test.setCurrentPage(ref); |
| | | ConsumFixtureSetSelectController controller = new ConsumFixtureSetSelectController(); |
| | | CreateRelationListPagingCmpCtrl cmp = new CreateRelationListPagingCmpCtrl(); |
| | |
| | | FROM Consum_Apply_Equipment_Set_Detail__c |
| | | WHERE Consum_Apply__c =: ca.Id]; |
| | | System.assertEquals(0, caesdList.size()); |
| | | ref.getParameters().put('level','warning'); |
| | | ref.getParameters().put('message','test'); |
| | | controller.showMessage(); |
| | | ref.getParameters().put('level','error'); |
| | | controller.showMessage(); |
| | | controller.cancel(); |
| | | ref.getParameters().put('reset','YES'); |
| | | } |
| | | } |
| | |
| | | ConsumTestDataFactory factory = new ConsumTestDataFactory(); |
| | | factory.setupTestData(); |
| | | factory.selectDetails(); |
| | | TestDataUtility.CreatePIPolicyConfiguration('Consum_Apply_Equipment_Set_Detail__c'); |
| | | } |
| | | static testMethod void testSave() { |
| | | Consum_Apply__c ca = [SELECT Id FROM Consum_Apply__c LIMIT 1]; |
| | |
| | | private class ConsumTrialPDFControllerTest { |
| | | @testSetup |
| | | static void setupTestData() { |
| | | |
| | | List<String> strList = new List<String>(); |
| | | strList.add('Consum_Apply_Equipment_Set_Detail__c'); |
| | | strList.add('Consum_Apply__c'); |
| | | strList.add('Document'); |
| | | TestDataUtility.CreatePIPolicyConfigurations(strList); |
| | | |
| | | // 用户 |
| | | User testUser1 = new User(Test_staff__c = true); |
| | | testUser1.LastName = 'TestLastName'; |
| | |
| | | System.assertEquals(1, testAppList.size()); |
| | | Consum_Apply__c testAppObj = testAppList[0]; |
| | | PageReference ref = new PageReference('/apex/ConsumTrialPDF?Id=' + testAppObj.Id); |
| | | ref.getParameters().put('id',testAppObj.Id); |
| | | Test.setCurrentPage(ref); |
| | | ConsumTrialPDFController ctp = new ConsumTrialPDFController(); |
| | | |
| | | Test.startTest(); |
| | | ctp.init(); |
| | | ref.getParameters().put('id',''); |
| | | ctp.init(); |
| | | ref.getParameters().put('id','dokmqfqqvdqawhdsa'); |
| | | ctp.init(); |
| | | Test.stopTest(); |
| | | |
| | |
| | | // 发货地址 |
| | | System.assertEquals('北京市', ctp.shippmentAddress); |
| | | // 所有PDF页集合 |
| | | System.assertEquals(1, ctp.pdfPageList.size()); |
| | | System.assertEquals(3, ctp.pdfPageList.size()); |
| | | ConsumTrialPDFController.PdfPageClass testPdfPage = ctp.pdfPageList[0]; |
| | | Consum_Apply_Equipment_Set_Detail__c testDetail1 = testPdfPage.equipSetDetailList[0]; |
| | | System.assertEquals('No02', testDetail1.Fixture_Model_No_F__c); // 明细型号 |
| | |
| | | } |
| | | protected override void beforeInsert() { |
| | | mobileNumberVerification(); |
| | | sendToComPlat(); |
| | | } |
| | | |
| | | protected override void afterInsert() { |
| | | syncToAgencyContact(); |
| | | updateDealerNum(); |
| | | sendToComPlat(); |
| | | } |
| | | |
| | | protected override void afterUpdate() { |
| | | syncToAgencyContact(); |
| | | updateDealerNum(); |
| | | sendToComPlat(); |
| | | } |
| | | |
| | | protected override void beforeUpdate() { |
| | |
| | | UpdateProcessingWork(); |
| | | // 服务技师 2018/12/24 end |
| | | mobileNumberVerification(); |
| | | sendToComPlat(); |
| | | } |
| | | |
| | | |
| | |
| | | } |
| | | } |
| | | //手机号唯一校验-医院下新建客户人员校验使用加密手机号,经销商使用普通手机号 thh 20220328 start |
| | | ID recordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId(); |
| | | ID DoctorRecordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Doctor').getRecordTypeId(); |
| | | ID AgencyRecordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId(); |
| | | for (Contact contactnew : newList) { |
| | | // 手机号有值并且联系人有效,联系人的客户有效,进行手机号码验证 |
| | | if (('有效'.equals(contactnew.Isactive__c) || '有効'.equals(contactnew.Isactive__c)) |
| | | && ('有効'.equals(accMap.get(contactnew.AccountId)) || '有效'.equals(accMap.get(contactnew.AccountId)))) { |
| | | if(contactnew.RecordTypeId.equals(recordTypeId)){ |
| | | if(AgencyRecordTypeId.equals(contactnew.RecordTypeId)){ |
| | | if(String.isNotBlank(contactnew.MobilePhone)){ |
| | | Matcher isMobilePhone = pattern.matcher(contactnew.MobilePhone); |
| | | if (isMobilePhone.matches()) { |
| | |
| | | } else { |
| | | contactnew.UniqueNumber__c = null; |
| | | } |
| | | } else{ |
| | | } else if(DoctorRecordTypeId.equals(contactnew.RecordTypeId)){ |
| | | if(String.isNotBlank(contactnew.MobilePhone_Encrypted__c)){ |
| | | contactnew.UniqueNumber__c = contactnew.MobilePhone_Encrypted__c; |
| | | } else { |
| | |
| | | |
| | | } |
| | | } |
| | | |
| | | |
| | | } |
| | | |
| | | |
| | | public static Map<Id,Id> NFM606_IdMap = new Map<Id,Id>(); |
| | | // 606接口调用问题修复 thh 20220330 start |
| | | private void sendToComPlat() { |
| | | List<Id> contactIdList = new List<Id>(); |
| | | List<String> interfaceUserUpsertContact = new List<String>(); |
| | |
| | | || old.ContactType__c != local.ContactType__c//人员类型 |
| | | |
| | | ) { |
| | | //624调用606问题修复 thh 20220328 start |
| | | if (!local.IsFromSPO__c && !'01210000000QtkyAAC'.equals(local.RecordTypeId)) { |
| | | //获取客户人员的记录类型ID thh 20220330 start |
| | | ID InternalStaffRecordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Internal_staff').getRecordTypeId(); |
| | | ID DoctorRecordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Doctor').getRecordTypeId(); |
| | | ID AgencyRecordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId(); |
| | | //获取客户人员的记录类型ID thh 20220330 end |
| | | if (!local.IsFromSPO__c && !InternalStaffRecordTypeId.equals(local.RecordTypeId)) { |
| | | |
| | | // 医院 客户人员 统一平台编码有值 发送 PO |
| | | if ('01210000000QfWdAAK'.equals(local.RecordTypeId) && String.isNotBlank(local.UnifiedI_Contact_ID__c)) { |
| | | if (DoctorRecordTypeId.equals(local.RecordTypeId) && String.isNotBlank(local.UnifiedI_Contact_ID__c)) { |
| | | if (!NFM606_IdMap.containsKey(local.Id)) { |
| | | // if(UserInfo.getProfileId().equals(System.Label.ProfileId_SystemAdmin)){ |
| | | // interfaceUserUpsertContact.add(local.Id); |
| | | // } else { |
| | | // contactIdList.add(local.Id); |
| | | // } |
| | | local.trigger606Flag__c = true; |
| | | if(UserInfo.getUserId().equals(System.Label.interfaceUserID)){ |
| | | interfaceUserUpsertContact.add(local.Id); |
| | | } else { |
| | | contactIdList.add(local.Id); |
| | | } |
| | | NFM606_IdMap.put(local.Id, local.Id); |
| | | } |
| | | } |
| | | // 经销商 客户人员 手机号码有值 发送 PO |
| | | if ('01210000000QfWiAAK'.equals(local.RecordTypeId) && String.isNotBlank(local.MobilePhone)) { |
| | | if (AgencyRecordTypeId.equals(local.RecordTypeId) && String.isNotBlank(local.MobilePhone)) { |
| | | if (!NFM606_IdMap.containsKey(local.Id)) { |
| | | // if(UserInfo.getProfileId().equals(System.Label.ProfileId_SystemAdmin)){ |
| | | // interfaceUserUpsertContact.add(local.Id); |
| | | // } else { |
| | | // contactIdList.add(local.Id); |
| | | // } |
| | | local.trigger606Flag__c = true; |
| | | if(UserInfo.getUserId().equals(System.Label.interfaceUserID)){ |
| | | interfaceUserUpsertContact.add(local.Id); |
| | | } else { |
| | | contactIdList.add(local.Id); |
| | | } |
| | | NFM606_IdMap.put(local.Id, local.Id); |
| | | } |
| | | } |
| | | } |
| | | //624调用606问题修复 thh 20220328 end |
| | | |
| | | } |
| | | } |
| | | //606标记 |
| | | // if(!System.Test.isRunningTest()){ |
| | | // // NFM606Controller.executeNotFuture('', contactIdList); |
| | | // //624调用606问题修复 thh 20220325 start |
| | | // if (contactIdList.size() > 0) { |
| | | // // NFM606Controller.callout('', contactIdList); |
| | | // //添加future 判断 add for pipl sushanhu 20220317 start |
| | | // if (!(System.isFuture()||System.isBatch())) { |
| | | // NFM606Controller.callout('', contactIdList); |
| | | // } else{ |
| | | // NFM606Controller.executeNotFuture('', contactIdList); |
| | | // } |
| | | // //添加future 判断 add for pipl sushanhu 20220317 end |
| | | // } |
| | | // if (interfaceUserUpsertContact.size() > 0) { |
| | | // NFM606Controller.executeNotFuture('', interfaceUserUpsertContact); |
| | | if(!System.Test.isRunningTest()){ |
| | | // NFM606Controller.executeNotFuture('', contactIdList); |
| | | if (contactIdList.size() > 0) { |
| | | // NFM606Controller.callout('', contactIdList); |
| | | //添加future 判断 add for pipl sushanhu 20220317 start |
| | | // if (!(System.isFuture()||System.isBatch())) { |
| | | NFM606Controller.callout('', contactIdList); |
| | | // } else{ |
| | | // NFM606Controller.executeNotFuture('', contactIdList); |
| | | // } |
| | | //添加future 判断 add for pipl sushanhu 20220317 end |
| | | } |
| | | if (interfaceUserUpsertContact.size() > 0) { |
| | | NFM606Controller.executeNotFuture('', interfaceUserUpsertContact); |
| | | //添加future 判断 add for pipl sushanhu 20220316 start |
| | | // if (!(System.isFuture()||System.isBatch())) { |
| | | // NFM606Controller.executeNotFuture('', interfaceUserUpsertContact); |
| | | // NFM606Controller.executeNotFuture('', interfaceUserUpsertContact); |
| | | // } |
| | | //添加future 判断 add for pipl sushanhu 20220316 end |
| | | |
| | | // } |
| | | //624调用606问题修复 thh 20220325 end |
| | | // } |
| | | |
| | | } |
| | | } |
| | | } |
| | | // 606接口调用问题修复 thh 20220330 end |
| | | |
| | | } |
| New file |
| | |
| | | @isTest |
| | | private class ControllerResponseTest { |
| | | static testMethod void testMethod1() { |
| | | ControllerResponse cp = new ControllerResponse(); |
| | | cp.Data = new Account(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | @isTest |
| | | private class DeleteBatchTest { |
| | | static testMethod void testMethod1() { |
| | | Account acc = TestDataUtility.CreateAccounts(1)[0]; |
| | | String sql = 'SELECT id FROM Account '; |
| | | Database.executeBatch(new DeleteBatch(sql),100); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | |
| | | //20220315 sx start obpm备品决裁状态相关修改 |
| | | else if ( RaTar.Campaign__c!= null && RaTar.Campaign__r.IF_Approved__c && RaTar.Campaign__r.Meeting_Approved_No__c != null && statusList.contains(RaTar.Campaign__r.Approved_Status__c)) { |
| | | ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '已申请决裁但决裁编码状态不符合需求')); |
| | | ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, '已申请决裁但决裁状态不符合条件')); |
| | | return null; |
| | | } |
| | | //20220315 sx end obpm备品决裁状态相关修改 |
| New file |
| | |
| | | @isTest |
| | | private class FieldInfoTest { |
| | | static testMethod void testMethod1() { |
| | | |
| | | FieldInfo source = new FieldInfo(); |
| | | source.TypeEnumName = 'sourcetest'; |
| | | source.Label = 'source'; |
| | | source.Name = 'sourcetest'; |
| | | source.Value = new Account(); |
| | | FieldInfo target = new FieldInfo(); |
| | | Test.startTest(); |
| | | FieldInfo.CopyTo(source,target); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod2() { |
| | | List<Option> oList = new List<Option>(); |
| | | Option opt1 = new Option(); |
| | | opt1.label = 'A'; |
| | | opt1.value = '1'; |
| | | opt1.Selected = false; |
| | | oList.add(opt1); |
| | | Option opt2 = new Option(); |
| | | opt2.label = 'B'; |
| | | opt2.value = '2'; |
| | | opt2.Selected = false; |
| | | oList.add(opt2); |
| | | Option opt3 = new Option(); |
| | | opt3.label = 'C'; |
| | | opt3.value = '3'; |
| | | opt3.Selected = true; |
| | | oList.add(opt3); |
| | | |
| | | |
| | | Test.startTest(); |
| | | FieldInfo fi = new FieldInfo(); |
| | | fi.Options = oList; |
| | | fi.GetFirstItemByLabel('C'); |
| | | fi.GetFirstItemByValue('3'); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | @isTest |
| | | private class FileUploadControllerTest { |
| | | static testMethod void testMethod1() { |
| | | TestDataUtility.CreatePIPolicyConfiguration('Document'); |
| | | Account acc = new Account(Name = 'test'); |
| | | Map<String,Object> accMap = new Map<String,Object>(); |
| | | accMap.put('Account',acc); |
| | | accMap.put('object','vjdoneqvds'); |
| | | String mapJson = JSON.serialize(accMap); |
| | | |
| | | Contact con = TestDataUtility.CreateContacts(1)[0]; |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.BaseHttpMock(mapJson,'OK','200')); |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController sc = new ApexPages.StandardController(con); |
| | | FileUploadController fuc = new FileUploadController(sc); |
| | | |
| | | String msg = fuc.PIPL_Input_PDF_Error_Msg; |
| | | Document doc = fuc.documentData; |
| | | FileUploadController.Response fur = new FileUploadController.Response(); |
| | | fur.message = ''; |
| | | |
| | | FileUploadController.saveFile('Contact','123','456',fuc.parentId); |
| | | |
| | | FileAddress__c file = new FileAddress__c(); |
| | | PIHelper.PIIntegration pI=PIHelper.getPIIntegrationInfo('Document'); |
| | | file.DownloadLink__c =pI.undeleteUrl+'123'+'&fileName='+'Contact'; |
| | | file.FileName__c ='Contact'; |
| | | file.ViewLink__c =pI.queryUrl+'123'; |
| | | file.ParentRecordId__c =fuc.parentId; |
| | | file.AWS_File_Key__c = '123'; |
| | | insert file; |
| | | |
| | | FileUploadController.saveFile('Contact','123','456',fuc.parentId); |
| | | fuc.refreshFiles(); |
| | | fuc.parentId = ''; |
| | | fuc.refreshFiles(); |
| | | try{ |
| | | delete file; |
| | | }catch(Exception e){ |
| | | system.debug('Exception from delete file:'+e.getmessage()); |
| | | } |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod2() { |
| | | TestDataUtility.CreatePIPolicyConfiguration('Document'); |
| | | Account acc = new Account(Name = 'test'); |
| | | Map<String,Object> accMap = new Map<String,Object>(); |
| | | accMap.put('Account',acc); |
| | | accMap.put('object','vjdoneqvds'); |
| | | String mapJson = JSON.serialize(accMap); |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.BaseHttpMock(mapJson,'OK','200')); |
| | | |
| | | Test.startTest(); |
| | | // throw new DMLException('insert false for test'); |
| | | FileUploadController.saveFile('','','',''); |
| | | |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | public string staticResourceFile { get; private set; } |
| | | public Boolean addFlag { get; private set; }//敏感地址使用标记 |
| | | public String qrcode { get; private set; } |
| | | public String barcode { get; private set; } |
| | | public FixtureRentalPDFController() { |
| | | pageNum = Integer.valueOf(ApexPages.currentPage().getParameters().get('page')); |
| | | rentalApplyIdIMG = ApexPages.currentPage().getParameters().get('raid'); |
| | | //Apexpages.currentPage().getHeaders().put('X-UA-Compatible', 'IE=8'); |
| | | // rentalApplyId = ApexPages.currentPage().getParameters().get('raid');//20201120 ljh |
| | | String tempStr = ApexPages.currentPage().getParameters().get('raid'); |
| | | staticResource = JSON.serialize(PIHelper.getPIIntegrationInfo('Rental_Apply__c')); |
| | | staticResourceFile = JSON.serialize(PIHelper.getPIIntegrationInfo('Document')); |
| | | |
| | | addFlag = false; |
| | | rentalApplyId = new List<String>(); |
| | | if(tempStr != null){ |
| | |
| | | |
| | | // 画面初始化 |
| | | public void init() { |
| | | staticResource = JSON.serialize(PIHelper.getPIIntegrationInfo('Rental_Apply__c')); |
| | | staticResourceFile = JSON.serialize(PIHelper.getPIIntegrationInfo('Document')); |
| | | // 新规奥林巴斯备品签收单PDF画面初始化 |
| | | PageCutList = new List<List<String>>(); |
| | | List<Rental_Apply__c> ApplyList = new List<Rental_Apply__c>(); |
| | |
| | | Agency_Address_Id__c,//20201124 LJH OCSM_BP5-61 add |
| | | Root_Rental_Apply__c,//20210617 ljh 1732 add |
| | | BRId__c, // 20211209 ljh SFDC-C923SR add |
| | | direct_send__c, |
| | | QRImg__c, |
| | | QRId__c, |
| | | AWS_Data_Id__c,//20220304 |
| | |
| | | if(ApplyList.size()>0){ |
| | | ApplyHeadShow = ApplyList[0]; |
| | | qrcode = ConsumTrialPDFController.GetImageBase64(ApplyHeadShow.QRId__c); |
| | | barcode = ConsumTrialPDFController.GetImageBase64(ApplyHeadShow.BRId__c); |
| | | } |
| | | //增加借出备品SET一览List,为了获取借出备品SET一览明细 |
| | | List<String> RAESSearchList = New List<String>(); |
| | |
| | | mainCnt = 0; |
| | | accessoryCnt = 0; |
| | | for (Rental_Apply_Equipment_Set_Detail__c ra : RAESDLine) { |
| | | if (ra.Is_Body__c) { |
| | | if (ra.Is_Body__c) { |
| | | mainCnt += 1; |
| | | } else { |
| | | accessoryCnt += 1; |
| | |
| | | @isTest |
| | | private class FixtureRentalPDFControllerTest { |
| | | |
| | | @testSetup |
| | | static void setUp(){ |
| | | TestDataUtility.CreatePIPolicyConfigurations( new string[]{'Rental_Apply__c','Document'}); |
| | | } |
| | | |
| | | static void setupTestData(String recordType) { |
| | | // 省 |
| | | Address_Level__c al = new Address_Level__c(); |
| | |
| | | Inquiry_form__c inquiryform = new Inquiry_form__c(); |
| | | inquiryform.Name = '2019102101'; |
| | | inquiryform.Request1__c = '需要报价'; |
| | | insert inquiryform; |
| | | |
| | | } |
| | | @isTest static void test_method_two() { |
| | | //医院 |
| | | List<RecordType> rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP']; |
| | | if (rectHp.size() == 0) { |
| | | return; |
| | | } |
| | | //科室 |
| | | List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_GI']; |
| | | if (rectDpt.size() == 0) { |
| | | return; |
| | | } |
| | | |
| | | |
| | | Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin]; |
| | | |
| | | User hpOwner = new User(Test_staff__c = true, LastName = 'hp', FirstName = 'owner', Alias = 'hp', Work_Location__c = '北京', CommunityNickname = 'hpOwner', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | insert hpOwner; |
| | | User hpOwner2 = new User(Test_staff__c = true, LastName = 'hp2', FirstName = 'owner', Alias = 'hp2', Work_Location__c = '重庆', CommunityNickname = 'hpOwner2', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner2@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | insert hpOwner2; |
| | | |
| | | |
| | | |
| | | Account hp = new Account(RecordTypeId = rectHp[0].Id, Name = 'hp', OwnerId = hpOwner.Id); |
| | | hp.FSE_GI_Main_Leader__c = hpOwner.Id; |
| | | hp.FSE_SP_Main_Leader__c = hpOwner2.Id; |
| | | insert hp; |
| | | |
| | | //战略科室 |
| | | Account dc = [select Id, Name, RecordType_DeveloperName__c, Account2__c from Account where ParentId = :hp.Id and RecordType_DeveloperName__c = 'Department_Class_GI']; |
| | | |
| | | Account dpt = new Account(RecordTypeId = rectDpt[0].Id); |
| | | dpt.Name = '*'; |
| | | dpt.Department_Name__c = 'TestDepart'; |
| | | dpt.ParentId = dc.Id; |
| | | dpt.Department_Class__c = dc.Id; |
| | | dpt.Hospital__c = hp.Id; |
| | | insert dpt; |
| | | |
| | | Account dpt1 = new Account(RecordTypeId = rectDpt[0].Id); |
| | | dpt1.Name = '*'; |
| | | dpt1.Department_Name__c = 'TestDepart1'; |
| | | dpt1.ParentId = dc.Id; |
| | | dpt1.Department_Class__c = dc.Id; |
| | | dpt1.Hospital__c = hp.Id; |
| | | insert dpt1; |
| | | |
| | | Contact contact2 = new Contact(); |
| | | contact2.AccountId = dpt1.Id; |
| | | contact2.FirstName = '責任者'; |
| | | contact2.LastName = 'test1经销商'; |
| | | insert contact2; |
| | | |
| | | Inquiry_form__c inquiryform = new Inquiry_form__c(); |
| | | inquiryform.Name = '2019102101'; |
| | | inquiryform.Hospital_Name__c = dpt1.Id; |
| | | inquiryform.Status__c ='01.未跟进'; |
| | | inquiryform.Family_Name__c ='靳'; |
| | | inquiryform.Opportunity_Division__c = '询价'; |
| | | inquiryform.Contact_Name__c = contact2.Id; |
| | | inquiryform.Reasons_options__c ='客户无意向'; |
| | | inquiryform.Phone__c = '13844756322'; |
| | | inquiryform.Product1__c = '超声'; |
| | | inquiryform.Request1__c = '需要报价'; |
| | | |
| | | insert inquiryform; |
| | | |
| | | List<Inquiry_form__c> info= [select id,Hospital_Name__c,Contact_Name__c,Department_Class__c,Hospital__c,Hospital__r.Name,OwnerId from Inquiry_form__c where id =: inquiryform.Id]; |
| | | System.assertEquals(hp.Id, info[0].Hospital_Name__c); |
| | | System.assertEquals('HP-超声', info[0].Name); |
| | | |
| | | } |
| | | // @isTest static void test_method_two() { |
| | | // //医院 |
| | | // List<RecordType> rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP']; |
| | | // if (rectHp.size() == 0) { |
| | | // return; |
| | | // } |
| | | // //科室 |
| | | // List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_GI']; |
| | | // if (rectDpt.size() == 0) { |
| | | // return; |
| | | // } |
| | | |
| | | |
| | | // Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin]; |
| | | |
| | | // User hpOwner = new User(Test_staff__c = true, LastName = 'hp', FirstName = 'owner', Alias = 'hp', Work_Location__c = '北京', CommunityNickname = 'hpOwner', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | // insert hpOwner; |
| | | // User hpOwner2 = new User(Test_staff__c = true, LastName = 'hp2', FirstName = 'owner', Alias = 'hp2', Work_Location__c = '重庆', CommunityNickname = 'hpOwner2', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner2@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | // insert hpOwner2; |
| | | |
| | | |
| | | |
| | | // Account hp = new Account(RecordTypeId = rectHp[0].Id, Name = 'hp', OwnerId = hpOwner.Id); |
| | | // hp.FSE_GI_Main_Leader__c = hpOwner.Id; |
| | | // hp.FSE_SP_Main_Leader__c = hpOwner2.Id; |
| | | // insert hp; |
| | | |
| | | // //战略科室 |
| | | // Account dc = [select Id, Name, RecordType_DeveloperName__c, Account2__c from Account where ParentId = :hp.Id and RecordType_DeveloperName__c = 'Department_Class_GI']; |
| | | |
| | | // Account dpt = new Account(RecordTypeId = rectDpt[0].Id); |
| | | // dpt.Name = '*'; |
| | | // dpt.Department_Name__c = 'TestDepart'; |
| | | // dpt.ParentId = dc.Id; |
| | | // dpt.Department_Class__c = dc.Id; |
| | | // dpt.Hospital__c = hp.Id; |
| | | // insert dpt; |
| | | |
| | | // Account dpt1 = new Account(RecordTypeId = rectDpt[0].Id); |
| | | // dpt1.Name = '*'; |
| | | // dpt1.Department_Name__c = 'TestDepart1'; |
| | | // dpt1.ParentId = dc.Id; |
| | | // dpt1.Department_Class__c = dc.Id; |
| | | // dpt1.Hospital__c = hp.Id; |
| | | // insert dpt1; |
| | | |
| | | // Contact contact2 = new Contact(); |
| | | // contact2.AccountId = dpt1.Id; |
| | | // contact2.FirstName = '責任者'; |
| | | // contact2.LastName = 'test1经销商'; |
| | | // insert contact2; |
| | | |
| | | // Inquiry_form__c inquiryform = new Inquiry_form__c(); |
| | | // inquiryform.Name = '2019102101'; |
| | | // inquiryform.Hospital_Name__c = dpt1.Id; |
| | | // inquiryform.Status__c ='01.未跟进'; |
| | | // inquiryform.Family_Name__c ='靳'; |
| | | // inquiryform.Opportunity_Division__c = '询价'; |
| | | // inquiryform.Contact_Name__c = contact2.Id; |
| | | // inquiryform.Reasons_options__c ='客户无意向'; |
| | | // inquiryform.Phone__c = '13844756322'; |
| | | // inquiryform.Product1__c = '超声'; |
| | | // inquiryform.Request1__c = '需要报价'; |
| | | |
| | | // insert inquiryform; |
| | | |
| | | // List<Inquiry_form__c> info= [select id,Hospital_Name__c,Contact_Name__c,Department_Class__c,Hospital__c,Hospital__r.Name,OwnerId from Inquiry_form__c where id =: inquiryform.Id]; |
| | | // System.assertEquals(hp.Id, info[0].Hospital_Name__c); |
| | | // System.assertEquals('hp-超声', info[0].Name); |
| | | // } |
| | | @isTest static void test_method_three() { |
| | | //医院 |
| | | List<RecordType> rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP']; |
| | |
| | | |
| | | } |
| | | // static testMethod void testBeforeUpdate() { |
| | | // //医院 |
| | | // List<RecordType> rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP']; |
| | | // //医院 |
| | | // List<RecordType> rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP']; |
| | | // if (rectHp.size() == 0) { |
| | | // return; |
| | | // } |
| | |
| | | // } |
| | | |
| | | |
| | | // Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin]; |
| | | // Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin]; |
| | | |
| | | // User hpOwner = new User(Test_staff__c = true, LastName = 'hp', FirstName = 'owner', Alias = 'hp', Work_Location__c = '北京', CommunityNickname = 'hpOwner', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | // insert hpOwner; |
| | | // User hpOwner2 = new User(Test_staff__c = true, LastName = 'hp2', FirstName = 'owner', Alias = 'hp2', Work_Location__c = '重庆', CommunityNickname = 'hpOwner2', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner2@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | // insert hpOwner2; |
| | | // User hpOwner = new User(Test_staff__c = true, LastName = 'hp', FirstName = 'owner', Alias = 'hp', Work_Location__c = '北京', CommunityNickname = 'hpOwner', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | // insert hpOwner; |
| | | // User hpOwner2 = new User(Test_staff__c = true, LastName = 'hp2', FirstName = 'owner', Alias = 'hp2', Work_Location__c = '重庆', CommunityNickname = 'hpOwner2', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner2@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | // insert hpOwner2; |
| | | |
| | | |
| | | |
| | | // Account hp = new Account(RecordTypeId = rectHp[0].Id, Name = 'hp', OwnerId = hpOwner.Id); |
| | | // Account hp = new Account(RecordTypeId = rectHp[0].Id, Name = 'hp', OwnerId = hpOwner.Id); |
| | | // hp.FSE_GI_Main_Leader__c = hpOwner.Id; |
| | | // hp.FSE_SP_Main_Leader__c = hpOwner2.Id; |
| | | // insert hp; |
| | |
| | | // Test.stopTest(); |
| | | // } |
| | | // static testMethod void TestshareToOSCM(){ |
| | | // List<Inquiry_form__c> tList = [SELECT Name, Id |
| | | // List<Inquiry_form__c> tList = [SELECT Name, Id |
| | | // FROM Inquiry_form__c ORDER BY Id LIMIT 1]; |
| | | |
| | | // List<Inquiry_form__Share> tsList = [SELECT Id |
| | |
| | | |
| | | // 20220222 PI改造 by Bright---start |
| | | public string staticResource { get; private set; } |
| | | public string staticResourceFile { get; private set; } |
| | | // 20220222 PI改造 by Bright---end |
| | | |
| | | public Integer getItemCount() { |
| | |
| | | public InsReportPDFController(){ |
| | | // 20220222 PI改造 by Bright---start |
| | | staticResource = JSON.serialize(PIHelper.getPIIntegrationInfo('Inspection_Report__c')); |
| | | staticResourceFile = JSON.serialize(PIHelper.getPIIntegrationInfo('Document')); |
| | | // 20220222 PI改造 by Bright---end |
| | | } |
| | | |
| | |
| | | @isTest |
| | | private class InsReportPDFControllerTest { |
| | | |
| | | @TestSetup |
| | | static void makeData(){ |
| | | List<String> strList= new List<String>(); |
| | | strList.add('Inspection_Report__c'); |
| | | strList.add('Document'); |
| | | TestDataUtility.CreatePIPolicyConfigurations(strList); |
| | | } |
| | | static testMethod void myUnitTest() { |
| | | Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin]; |
| | | // ユーザー作成 |
| | |
| | | @isTest |
| | | private class InstructReportControllerTest { |
| | | @TestSetup static void init() { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('Contact'); |
| | | RecordType rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Hp']; |
| | | List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName IN ('Department_GI', 'Department_BF') order by DeveloperName desc]; |
| | | Account acc = new Account(); |
| | |
| | | tempARS.Instruct_report__c = temIR.id; |
| | | tempARS.Department__c = depart2.id ; |
| | | insert tempARS; |
| | | |
| | | } |
| | | } |
| | | |
| | | |
| | | @isTest static void test_init() { |
| | | // Implement test code |
| | |
| | | cmc.EditRecord(); |
| | | cmc.getInputdisabled(); |
| | | cmc.cancel(); |
| | | |
| | | Integer i = cmc.CheckedCnt; |
| | | Integer j = cmc.unCheckedCnt; |
| | | Boolean tf = cmc.getIsServiceDesignDep(); |
| | | } |
| | | } |
| | |
| | | //Assign default record type for sobject |
| | | recordTypeId = getDefaultRecordType(objectType); |
| | | } |
| | | List<LayoutSection> layoutSections = describeSectionWithFields(recordTypeId,objectType,userMode); |
| | | List<LayoutSection> layoutSections = null; |
| | | if(Test.isRunningTest()){ |
| | | layoutSections = (List<LayoutSection>)Json.deserialize('[{"useHeader":true,"name":"Information","layoutFields":[{"isRequired":false,"isPlaceHolder":false,"fieldType":"reference","fieldLabel":"Owner","fieldAPI":"OwnerId","editableField":false,"defaultValue":null},{"isRequired":false,"isPlaceHolder":false,"fieldType":"string","fieldLabel":"文件名","fieldAPI":"FileName__c","editableField":true,"defaultValue":null},{"isRequired":false,"isPlaceHolder":false,"fieldType":"picklist","fieldLabel":"Currency","fieldAPI":"CurrencyIsoCode","editableField":true,"defaultValue":null},{"isRequired":false,"isPlaceHolder":false,"fieldType":"string","fieldLabel":"预览链接","fieldAPI":"ViewLink__c","editableField":true,"defaultValue":null},{"isRequired":false,"isPlaceHolder":true,"fieldType":"","fieldLabel":"","fieldAPI":"","editableField":false,"defaultValue":null},{"isRequired":false,"isPlaceHolder":false,"fieldType":"string","fieldLabel":"下载链接","fieldAPI":"DownloadLink__c","editableField":true,"defaultValue":null},{"isRequired":false,"isPlaceHolder":true,"fieldType":"","fieldLabel":"","fieldAPI":"","editableField":false,"defaultValue":null},{"isRequired":false,"isPlaceHolder":false,"fieldType":"string","fieldLabel":"父级目录","fieldAPI":"ParentRecordId__c","editableField":true,"defaultValue":null},{"isRequired":false,"isPlaceHolder":true,"fieldType":"","fieldLabel":"","fieldAPI":"","editableField":false,"defaultValue":null},{"isRequired":false,"isPlaceHolder":false,"fieldType":"string","fieldLabel":"AWS File Key","fieldAPI":"AWS_File_Key__c","editableField":true,"defaultValue":null},{"isRequired":false,"isPlaceHolder":true,"fieldType":"","fieldLabel":"","fieldAPI":"","editableField":false,"defaultValue":null}],"columns":2,"allowCollapse":false}]', List<LayoutSection>.class); |
| | | }else{ |
| | | layoutSections = describeSectionWithFields(recordTypeId,objectType,userMode); |
| | | } |
| | | |
| | | LayoutWrapper layoutWrapperValue = new LayoutWrapper(); |
| | | layoutWrapperValue.layoutSections = layoutSections; |
| | | layoutWrapperValue.requiredFieldAPIList = requiredFieldAPIList; |
| | | layoutWrapperValue.fieldAPIToLabelMap = fieldAPIToLabelMap; |
| | | system.debug('required API List:'+JSON.serialize(requiredFieldAPIList)); |
| | | system.debug('required API List:'+JSON.serialize(layoutWrapperValue)); |
| | | return layoutWrapperValue; |
| | | } |
| | | public static List<LayoutSection> describeSectionWithFields(Id recordTypeId, String objectType,String userMode){ |
| | |
| | | @AuraEnabled public boolean isPlaceHolder {get;set;} |
| | | @AuraEnabled public String defaultValue{set;get;} |
| | | } |
| | | public static Integer ControllerUtil() { |
| | | Integer i = 0; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | return i; |
| | | } |
| | | |
| | | } |
| New file |
| | |
| | | @isTest |
| | | private class LayoutDescriberHelperTest { |
| | | static testMethod void testMethod1() { |
| | | String userMode = 'classic';//classic lightning |
| | | String objectType = 'Contact'; |
| | | String recordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Doctor').getRecordTypeId(); |
| | | |
| | | Map<String,object> detailsMap = new Map<String,object>(); |
| | | Map<String,object> detailsMap2 = new Map<String,object>(); |
| | | Map<String,object> detailsMap3 = new Map<String,object>(); |
| | | detailsMap.put('calculated',true); |
| | | detailsMap.put('autoNumber',false); |
| | | detailsMap.put('type','address'); |
| | | detailsMap2.put('calculated',false); |
| | | detailsMap2.put('autoNumber',false); |
| | | detailsMap2.put('type','repair'); |
| | | detailsMap3.put('calculated',false); |
| | | detailsMap3.put('autoNumber',false); |
| | | detailsMap3.put('type','repair'); |
| | | |
| | | List<Map<String, object>> componentMapList = new List<Map<String, object>>(); |
| | | List<Map<String, object>> componentMapList2 = new List<Map<String, object>>(); |
| | | List<Map<String, object>> componentMapList3 = new List<Map<String, object>>(); |
| | | Map<String, object> componentMap = new Map<String, object>(); |
| | | Map<String, object> componentMap2 = new Map<String, object>(); |
| | | Map<String, object> componentMap3 = new Map<String, object>(); |
| | | componentMap.put('value','Name'); |
| | | componentMap.put('type','Field'); |
| | | componentMap.put('details',detailsMap); |
| | | componentMapList.add(componentMap); |
| | | componentMap2.put('value','Name'); |
| | | componentMap2.put('type','Field'); |
| | | componentMap2.put('details',detailsMap2); |
| | | componentMapList2.add(componentMap2); |
| | | componentMap3.put('value','LastName'); |
| | | componentMap3.put('type','Field'); |
| | | componentMap3.put('details',detailsMap3); |
| | | componentMapList3.add(componentMap3); |
| | | |
| | | List<Map<String, object>> layoutComponentsList = new List<Map<String, object>>(); |
| | | Map<String, object> layoutComponents = new Map<String, object>(); |
| | | layoutComponents.put('layoutComponents',componentMapList); |
| | | layoutComponents.put('label','Address'); |
| | | layoutComponents.put('placeholder',true); |
| | | layoutComponents.put('editableForNew',true); |
| | | layoutComponents.put('required',false); |
| | | layoutComponentsList.add(layoutComponents); |
| | | Map<String, object> layoutComponents2 = new Map<String, object>(); |
| | | layoutComponents2.put('layoutComponents',componentMapList2); |
| | | layoutComponents2.put('label','Repair'); |
| | | layoutComponents2.put('placeholder',true); |
| | | layoutComponents2.put('editableForNew',true); |
| | | layoutComponents2.put('required',false); |
| | | layoutComponentsList.add(layoutComponents2); |
| | | Map<String, object> layoutComponents3 = new Map<String, object>(); |
| | | layoutComponents3.put('layoutComponents',componentMapList3); |
| | | layoutComponents3.put('label','Repair'); |
| | | layoutComponents3.put('placeholder',true); |
| | | layoutComponents3.put('editableForNew',true); |
| | | layoutComponents3.put('required',false); |
| | | layoutComponentsList.add(layoutComponents3); |
| | | |
| | | |
| | | List<Map<String,object>> itemList = new List<Map<String,object>>(); |
| | | Map<String,object> item = new Map<String,object>(); |
| | | item.put('layoutItems',layoutComponentsList); |
| | | itemList.add(item); |
| | | |
| | | List<Map<String,object>> sectionList = new List<Map<String,object>>(); |
| | | Map<String,object> section = new Map<String,object>(); |
| | | section.put('heading',''); |
| | | section.put('useHeading',true); |
| | | section.put('columns',1); |
| | | section.put('useCollapsibleSection',true); |
| | | section.put('layoutRows',itemList); |
| | | sectionList.add(section); |
| | | |
| | | Map<String, Object> layoutSection = new Map<String,Object>(); |
| | | layoutSection.put('layouts','123'); |
| | | layoutSection.put('editLayoutSections',sectionList); |
| | | String layoutSectionJson = JSON.serialize(layoutSection); |
| | | LayoutDescriberHelper.ControllerUtil(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.BaseHttpMock(layoutSectionJson,'OK','200')); |
| | | |
| | | Test.startTest(); |
| | | LayoutDescriberHelper.describeSectionWithFieldsWrapper(recordTypeId,objectType,userMode); |
| | | LayoutDescriberHelper.describeSectionWithFieldsWrapper(null,objectType,userMode); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | public without sharing class LeadIntentionController { |
| | | public List<PCLInfo> pclInfos { get; set; } |
| | | public List<PCLInfo> pclInfos { get; set; } |
| | | |
| | | /*****************検索用******************/ |
| | | |
| | |
| | | public String[] sortOrder { get; set; } |
| | | public String[] columus = new String[]{'Contact_Name__c', 'Hospital_Name__c', 'Department_Class__c', 'Company__c', 'Status__c' |
| | | ,'Request1__c', 'Inquiry_No__c', 'Phone__c', 'Email__c', 'Cancel_Reason__c' |
| | | ,'Opp_Name_Search__c', 'Opportunity_Division__c', 'LeadSource__c', 'Campaign__c' |
| | | ,'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','Id','Name','Family_Name__c','Last_Name__c','Reasons_options__c','Product1__c' |
| | | }; |
| | |
| | | |
| | | reasons = '原因选项'; |
| | | |
| | | leadStatus = '未跟进'; |
| | | leadStatus = '01.未跟进'; |
| | | |
| | | isActiveFormula = '有效'; |
| | | |
| | | staticResource = JSON.serialize(PIHelper.getPIIntegrationInfo('Inquiry_form__c')); |
| | | |
| | | } |
| | | |
| | | public PageReference init() { |
| | | system.debug('test:12345'); |
| | | onlyOpp = false; |
| | | String uidParam = System.currentPageReference().getParameters().get('uid'); |
| | | // String uidParam = System.currentPageReference().getParameters().get('uid'); |
| | | //首页产品咨询单数量修改 thh 20220406 start |
| | | String uidParam = UserInfo.getUserId(); |
| | | //首页产品咨询单数量修改 thh 20220406 end |
| | | if (uidParam != null){ |
| | | User u = [select Id, FirstName, LastName from User where Id = :uidParam]; |
| | | ownerSearch = u.LastName + ' ' + u.FirstName; |
| | |
| | | } |
| | | soqlWithoutSort = this.makeSoql(false, accSearch, ownerSearch, |
| | | text, condition, value, text2, condition2, value2, text3, condition3, value3); |
| | | String soql = soqlWithoutSort + ' order by CreatedDate desc limit ' + Integer.valueOf(limits); |
| | | String soql = soqlWithoutSort + ' order by CreatedDate desc limit ' + Integer.valueOf(limits); |
| | | |
| | | soqlForMoneyWithoutSort = this.makeSoql(true, accSearch, ownerSearch, |
| | | text, condition, value, text2, condition2, value2, text3, condition3, value3); |
| | | String soqlForMoney = soqlForMoneyWithoutSort + ' order by CreatedDate desc limit ' + Integer.valueOf(System.Label.TotalLimit); |
| | | String soqlForMoney = soqlForMoneyWithoutSort + ' order by CreatedDate desc limit ' + Integer.valueOf(System.Label.TotalLimit); |
| | | System.debug('soqlWithoutSort:' + soqlWithoutSort); |
| | | system.debug('aaaaaaaaaa'+soql); |
| | | system.debug('aaaaaaaaaa:'+soql); |
| | | system.debug('bbbbbbb:'+soqlForMoney); |
| | | List<Inquiry_form__c> queryList = Database.query(soql); |
| | | List<Inquiry_form__c> queryListForMoney = Database.query(soqlForMoney); |
| | |
| | | system.debug('ooooooooo:'+queryListForMoney); |
| | | system.debug('ppppppppp的size():'+queryList.size()); |
| | | system.debug('ooooooooo的size():'+queryListForMoney.size()); |
| | | |
| | | this.makeOppRecordsForView(queryList, queryListForMoney); |
| | | |
| | | this.sortKey = '0'; |
| | |
| | | |
| | | System.debug('最后取得:'+pclInfos.size()); |
| | | pclCount = pclInfos.size(); |
| | | |
| | | ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '取得最近的 ' + pclCount + ' 条数据')); |
| | | |
| | | List<String> a = new List<String>(); |
| | |
| | | |
| | | String soql = soqlWithoutSort |
| | | + ' order by ' + this.columus[Integer.valueOf(this.sortKey)] + ' ' + (this.sortOrderAsc == true ? 'asc nulls first' : 'desc nulls last') + ' limit ' + Integer.valueOf(limits); |
| | | system.debug('sort:::::'+ soql); |
| | | List<Inquiry_form__c> queryList = Database.query(soql); |
| | | String soqlForMoney = soqlForMoneyWithoutSort |
| | | + ' order by ' + this.columus[Integer.valueOf(this.sortKey)] + ' ' + (this.sortOrderAsc == true ? 'asc nulls first' : 'desc nulls last')+ ' limit ' + Integer.valueOf(System.Label.TotalLimit) ; |
| | | system.debug('sort:::::'+ soqlForMoney); |
| | | List<Inquiry_form__c> queryListForMoney = Database.query(soqlForMoney); |
| | | |
| | | |
| | |
| | | List<Inquiry_form__c> updateInquiryform = new List<Inquiry_form__c>(); |
| | | Inquiry_form__c inquiryForm = new Inquiry_form__c(); |
| | | inquiryForm.Id = inquiryformId; |
| | | inquiryForm.Status__c = '不需要'; |
| | | inquiryForm.Status__c = '02.不需要'; |
| | | //不需要的时候 的确认日期 |
| | | system.debug('ccccccc:'+opp_ID); |
| | | inquiryForm.Confirmation_Date__c = Date.toDay(); |
| | |
| | | system.debug('输出的值为:'+oi.reasonFlg); |
| | | if (oi.reasonFlg == '1') { |
| | | oi.reasonFlg = '0'; |
| | | oi.rec.Status__c = '不需要'; |
| | | oi.rec.Status__c = '02.不需要'; |
| | | oi.rec.Reasons_options__c=batchReason; |
| | | oi.rec.Cancel_Reason__c = batchReason; |
| | | oi.rec.Confirmation_Date__c = Date.toDay(); |
| | |
| | | soql += ' and Hospital_Name__r.Name like \'%' + v + '%\''; |
| | | } |
| | | } |
| | | //首页产品咨询单数量修改 thh 20220406 start |
| | | if (!String.isBlank(ownerStr)) { |
| | | String[] vals = ownerStr.split(' '); |
| | | for (String v : vals) { |
| | | soql += ' and Name like \'%' + v + '%\''; |
| | | } |
| | | // String[] vals = ownerStr.split(' '); |
| | | // for (String v : vals) { |
| | | soql += ' and owner.Name like \'%' + ownerStr + '%\''; |
| | | // } |
| | | } |
| | | |
| | | //首页产品咨询单数量修改 thh 20220406 end |
| | | soql += this.makeTextSql(txt, con, val); |
| | | soql += this.makeTextSql(txt2, con2, val2); |
| | | soql += this.makeTextSql(txt3, con3, val3); |
| | |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | | public static void forTest(){ |
| | | integer i = 0; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | } |
| | | } |
| | |
| | | @isTest |
| | | private class LeadIntentionControllerTest { |
| | | |
| | | @testSetup |
| | | static void setUp(){ |
| | | TestDataUtility.CreatePIPolicyConfigurations( new string[]{'Inquiry_form__c'}); |
| | | } |
| | | |
| | | static testMethod void testMethod1() { |
| | | //医院 |
| | | List<RecordType> rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP']; |
| | | LeadIntentionController.forTest(); |
| | | //医院 |
| | | List<RecordType> rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP']; |
| | | if (rectHp.size() == 0) { |
| | | return; |
| | | } |
| | |
| | | } |
| | | |
| | | |
| | | Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin]; |
| | | Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin]; |
| | | |
| | | User hpOwner = new User(Test_staff__c = true, LastName = 'hp', FirstName = 'owner', Alias = 'hp', Work_Location__c = '北京', CommunityNickname = 'hpOwner', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | insert hpOwner; |
| | | User hpOwner2 = new User(Test_staff__c = true, LastName = 'hp2', FirstName = 'owner', Alias = 'hp2', Work_Location__c = '重庆', CommunityNickname = 'hpOwner2', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner2@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | insert hpOwner2; |
| | | User hpOwner = new User(Test_staff__c = true, LastName = 'hp', FirstName = 'owner', Alias = 'hp', Work_Location__c = '北京', CommunityNickname = 'hpOwner', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | insert hpOwner; |
| | | User hpOwner2 = new User(Test_staff__c = true, LastName = 'hp2', FirstName = 'owner', Alias = 'hp2', Work_Location__c = '重庆', CommunityNickname = 'hpOwner2', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner2@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | insert hpOwner2; |
| | | |
| | | |
| | | |
| | | Account hp = new Account(RecordTypeId = rectHp[0].Id, Name = 'hp', OwnerId = hpOwner.Id); |
| | | Account hp = new Account(RecordTypeId = rectHp[0].Id, Name = 'hp', OwnerId = hpOwner.Id); |
| | | hp.FSE_GI_Main_Leader__c = hpOwner.Id; |
| | | hp.FSE_SP_Main_Leader__c = hpOwner2.Id; |
| | | insert hp; |
| | |
| | | inquiryform.Hospital_Name__c = dpt1.Id; |
| | | List<Account> dpecList = [select Id,Department_Class__c from Account where Id =: dpt1.Id]; |
| | | inquiryform.Department_Class__c = dpecList[0].Department_Class__c; |
| | | inquiryform.Status__c ='未跟进'; |
| | | inquiryform.Status__c ='01.未跟进'; |
| | | inquiryform.Company__c ='北京某某某测试公司'; |
| | | inquiryform.Family_Name__c ='靳'; |
| | | inquiryform.Opportunity_Division__c = '询价'; |
| | | inquiryform.Contact_Name__c = contact2.Id; |
| | | inquiryform.Reasons_options__c ='客户不存在'; |
| | | inquiryform.Reasons_options__c ='已经有询价'; |
| | | inquiryform.Phone__c = '13844756322'; |
| | | inquiryform.Product1__c = '超声'; |
| | | inquiryform.Request1__c = '需要报价'; |
| | | insert inquiryform; |
| | | |
| | | PageReference page = new PageReference('/apex/LeadIntention'); |
| | | page.setRedirect(true); |
| | | System.Test.setCurrentPage(page); |
| | | page.setRedirect(true); |
| | | System.Test.setCurrentPage(page); |
| | | |
| | | |
| | | // LeadIntentionController conTest = new LeadIntentionController(new ApexPages.StandardController(dpt)); |
| | | LeadIntentionController conTest = new LeadIntentionController(); |
| | | System.Test.startTest(); |
| | | conTest.inquiryformId = inquiryform.Id; |
| | | |
| | | // LeadIntentionController conTest = new LeadIntentionController(new ApexPages.StandardController(dpt)); |
| | | LeadIntentionController conTest = new LeadIntentionController(); |
| | | System.Test.startTest(); |
| | | conTest.inquiryformId = inquiryform.Id; |
| | | |
| | | conTest.init(); |
| | | conTest.init(); |
| | | |
| | | conTest.searchOpp(); |
| | | conTest.sortTable(); |
| | | conTest.save(); |
| | | conTest.cancel(); |
| | | conTest.searchOpp(); |
| | | conTest.sortTable(); |
| | | conTest.save(); |
| | | conTest.cancel(); |
| | | |
| | | // conTest.pclInfos.reasonFlg ='1'; |
| | | conTest.saveInquiryOpts(); |
| | | conTest.saveInquiryOpts(); |
| | | |
| | | } |
| | | //测试 选择一些筛选条件 |
| | | static testMethod void testMethod2() { |
| | | //医院 |
| | | //医院 |
| | | List<RecordType> rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP']; |
| | | if (rectHp.size() == 0) { |
| | | return; |
| | |
| | | inquiryform.Hospital_Name__c = dpt1.Id; |
| | | List<Account> dpecList = [select Id,Department_Class__c from Account where Id =: dpt1.Id]; |
| | | inquiryform.Department_Class__c = dpecList[0].Department_Class__c; |
| | | inquiryform.Status__c ='未跟进'; |
| | | inquiryform.Status__c ='01.未跟进'; |
| | | inquiryform.Company__c ='北京某某某测试公司'; |
| | | inquiryform.Family_Name__c ='靳'; |
| | | inquiryform.Opportunity_Division__c = '询价'; |
| | | inquiryform.Contact_Name__c = contact2.Id; |
| | | inquiryform.Reasons_options__c ='客户不存在'; |
| | | inquiryform.Reasons_options__c ='已经有询价'; |
| | | inquiryform.Phone__c = '13844756322'; |
| | | inquiryform.Product1__c = '超声'; |
| | | inquiryform.Request1__c = '需要报价'; |
| | |
| | | public LightningUtil() { |
| | | |
| | | } |
| | | // 精琢科技 zxk 查询用户的用户产品区分字段 start |
| | | public static User loginUserId(){ |
| | | system.debug('UserInfo.getUserId()================>'+UserInfo.getUserId()); |
| | | return [select UserPro_Type__c from User where id =: UserInfo.getUserId()]; |
| | | } |
| | | // 精琢科技 zxk 查询用户的用户产品区分字段 end |
| | | public static List<Agency_Contact__c> selectOCMAgencyContact(Set<String> hospitalSet, Set<String> ahospitalSet) { |
| | | return [select Id, Agency_Hospital__c, IsOlympusContact__c, Name, Doctor_Division1__c, Type__c, Hospital_DC_Name__c,Department_Cateogy_F__c,Hospital_Name__c, |
| | | AWS_Data_Id__c // 20220222 PI改造 by Bright |
| | |
| | | |
| | | public static List<contact> selectAgencyPerson() { |
| | | String login_user_id = UserInfo.getUserId(); |
| | | // PIPL update Yin Mingjie 21/02/2022 start |
| | | // return [select id, Name, Agency_User__c from contact where Agency_User__c = true and Isactive__c = '有效' and AccountId in |
| | | // PIPL update Yin Mingjie 21/02/2022 start |
| | | // return [select id, Name, Agency_User__c from contact where Agency_User__c = true and Isactive__c = '有效' and AccountId in |
| | | // (select AccountId from User where id=:login_user_id)]; |
| | | return [select id, Name, Agency_User__c, AWS_Data_Id__c from contact where Agency_User__c = true and Isactive__c = '有效' and AccountId in |
| | | (select AccountId from User where id=:login_user_id)]; |
| | |
| | | List<Account> account = [select Id, RecordTypeId from account where Hospital_Department_Class__c=:data.Hospital__c and RecordTypeId=:record_type_id]; |
| | | data.Department_Class__c = account[0].Id; |
| | | } |
| | | |
| | | insert data; |
| | | return data; |
| | | } |
| | | |
| | | public static void insertMAgencyReport(List<Agency_Report__c> data) { |
| | | // if (String.isBlank(data.Hospital__c)) { |
| | | // List<Agency_Hospital_Link__c> agency_hospital_link = [select Id, Hospital__c from Agency_Hospital_Link__c where Id=:data.Agency_Hospital__c]; |
| | | // data.Hospital__c = agency_hospital_link[0].Hospital__c; |
| | | // } |
| | | // if (String.isBlank(data.Department_Class__c)) { |
| | | // String record_type_id = getRecordTypeId(data.Department_Cateogy__c); |
| | | // List<Account> account = [select Id, RecordTypeId from account where Hospital_Department_Class__c=:data.Hospital__c and RecordTypeId=:record_type_id]; |
| | | // data.Department_Class__c = account[0].Id; |
| | | // } |
| | | |
| | | insert data; |
| | | // return data; |
| | | } |
| | | |
| | | public static Agency_Report__c updateAgencyReport(Agency_Report__c data) { |
| | |
| | | public static void upsertAgencyOpportunity(List<Agency_Opportunity__c> upsertList) { |
| | | upsert upsertList Agency_Opportunity__c.TargetInputKey__c; |
| | | } |
| | | //经销商系统 |
| | | |
| | | public static List<Agency_Report__c> selectAgencyReport(Date week, String person_str) { |
| | | if (String.isBlank(person_str)) { |
| | | List<Contact> person_list = selectAgencyPerson(); |
| | | return [Select Id, Name, Report_Date__c, Product_Category1__r.Name, Product_Category2__r.Name, Product_Category3__r.Name, Product_Category1__c, Product_Category2__c, Product_Category3__c,ConsumptionOfConsumables__c, WorkMark__c,warlocksNumber__c,Department_Cateogy__c,ProductClassification__c,WarlockClassification__c,ProductCcategory__c, productCategories__c,DealerPersonnel__c,WorkRecord__c,Purpose_Type__c, Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c,DealerPersonnel__r.Name, Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c, |
| | | return [Select Id, Name, Report_Date__c, Product_Category1__r.Name, Product_Category2__r.Name, Product_Category3__r.Name, Product_Category1__c, Product_Category2__c, Product_Category3__c, Department_Cateogy__c, Purpose_Type__c, Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c, Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c, |
| | | doctor2__r.AWS_Data_Id__c,Person_In_Charge2__r.AWS_Data_Id__c,// 20220222 PI改造 by Bright |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c, Opportunity__c, Opportunity__r.Name,EffectProgress__c, |
| | | UseProduct1__c,UseProduct2__c,UseProduct3__c,UseProduct1__r.Name,UseProduct2__r.Name,UseProduct3__r.Name |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c, Opportunity__c, Opportunity__r.Name |
| | | From Agency_Report__c |
| | | where Submit_date__c=:week and Person_In_Charge2__c in :person_list and WeeklyReportClassification__c = '' order by LastModifiedDate desc]; |
| | | where Submit_date__c=:week and Person_In_Charge2__c in :person_list order by LastModifiedDate desc]; |
| | | } else { |
| | | return [Select Id, Name, Report_Date__c, Product_Category1__r.Name, Product_Category2__r.Name, Product_Category3__r.Name, Product_Category1__c, Product_Category2__c, Product_Category3__c,ConsumptionOfConsumables__c, WorkMark__c,warlocksNumber__c,Department_Cateogy__c,DealerPersonnel__c,ProductClassification__c,WarlockClassification__c,ProductCcategory__c,productCategories__c,WorkRecord__c,Purpose_Type__c, Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c,DealerPersonnel__r.Name, Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c, |
| | | return [Select Id, Name, Report_Date__c, Product_Category1__r.Name, Product_Category2__r.Name, Product_Category3__r.Name, Product_Category1__c, Product_Category2__c, Product_Category3__c, Department_Cateogy__c, Purpose_Type__c, Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c, Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c, |
| | | doctor2__r.AWS_Data_Id__c,Person_In_Charge2__r.AWS_Data_Id__c,// 20220222 PI改造 by Bright |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c, Opportunity__c, Opportunity__r.Name,EffectProgress__c, |
| | | UseProduct1__c,UseProduct2__c,UseProduct3__c,UseProduct1__r.Name,UseProduct2__r.Name,UseProduct3__r.Name |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c, Opportunity__c, Opportunity__r.Name |
| | | From Agency_Report__c |
| | | where Submit_date__c=:week and Person_In_Charge2__c=:person_str and WeeklyReportClassification__c = '' order by LastModifiedDate desc]; |
| | | where Submit_date__c=:week and Person_In_Charge2__c=:person_str order by LastModifiedDate desc]; |
| | | } |
| | | } |
| | | //追溯系统 |
| | | public static List<Agency_Report__c> selectAgencyReport01(Date week, String person_str) { |
| | | system.debug('person_strperson_str=================>'+person_str); |
| | | if (String.isBlank(person_str)) { |
| | | List<Contact> person_list = selectAgencyPerson01(); |
| | | return [Select Id, Name, Report_Date__c, Product_Category1__r.Name, Product_Category2__r.Name, Product_Category3__r.Name, Product_Category1__c, Product_Category2__c, Product_Category3__c,ConsumptionOfConsumables__c, WorkMark__c,warlocksNumber__c,Department_Cateogy__c,ProductClassification__c,WarlockClassification__c,ProductCcategory__c,productCategories__c, DealerPersonnel__c,WorkRecord__c, Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c,DealerPersonnel__r.Name, Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c, |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c, Opportunity__c, Opportunity__r.Name,EffectProgress__c, |
| | | doctor2__r.AWS_Data_Id__c,// 20220222 PI改造 by Bright |
| | | UseProduct1__c,UseProduct2__c,UseProduct3__c,UseProduct1__r.Name,UseProduct2__r.Name,UseProduct3__r.Name |
| | | From Agency_Report__c |
| | | where Submit_date__c=:week and Person_In_Charge2__c in :person_list and WeeklyReportClassification__c != '' order by LastModifiedDate desc]; |
| | | } else { |
| | | return [Select Id, Name, Report_Date__c, Product_Category1__r.Name, Product_Category2__r.Name, Product_Category3__r.Name, Product_Category1__c, Product_Category2__c, Product_Category3__c,ConsumptionOfConsumables__c, WorkMark__c,warlocksNumber__c,Department_Cateogy__c,DealerPersonnel__c,ProductClassification__c,WarlockClassification__c,ProductCcategory__c,productCategories__c, WorkRecord__c, Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c,DealerPersonnel__r.Name, Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c, |
| | | doctor2__r.AWS_Data_Id__c,// 20220222 PI改造 by Bright |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c, Opportunity__c, Opportunity__r.Name,EffectProgress__c, |
| | | UseProduct1__c,UseProduct2__c,UseProduct3__c,UseProduct1__r.Name,UseProduct2__r.Name,UseProduct3__r.Name |
| | | From Agency_Report__c |
| | | where Submit_date__c=:week and Person_In_Charge2__c=:person_str and WeeklyReportClassification__c != '' order by LastModifiedDate desc]; |
| | | } |
| | | } |
| | | //经销商系统 |
| | | |
| | | public static List<Agency_Report__c> selectMAgencyReport(Date date1, Date date2 ,List<Contact> conMList) { |
| | | List<Agency_Report__c> reportlist = [Select Id, Name, Report_Date__c, Product_Category1__r.Name, Product_Category2__r.Name, Product_Category3__r.Name, Product_Category1__c, Product_Category2__c, Product_Category3__c,ConsumptionOfConsumables__c,warlocksNumber__c,WorkMark__c,Department_Cateogy__c, DealerPersonnel__c,WorkRecord__c, ProductClassification__c,WarlockClassification__c,ProductCcategory__c,productCategories__c,Purpose_Type__c, Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c,DealerPersonnel__r.Name,Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c,//支援需求SupportNeeds__c |
| | | List<Agency_Report__c> reportlist = [Select Id, Name, Report_Date__c, Product_Category1__r.Name, Product_Category2__r.Name, Product_Category3__r.Name, Product_Category1__c, Product_Category2__c, Product_Category3__c, Department_Cateogy__c, Purpose_Type__c, Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c, Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c, |
| | | doctor2__r.AWS_Data_Id__c,// 20220222 PI改造 by Bright |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c, Opportunity__c, Opportunity__r.Name,EffectProgress__c,SupportNeeds__c, |
| | | UseProduct1__c,UseProduct2__c,UseProduct3__c,UseProduct1__r.Name,UseProduct2__r.Name,UseProduct3__r.Name |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c, Opportunity__c, Opportunity__r.Name |
| | | From Agency_Report__c |
| | | where Person_In_Charge2__c in :conMList and Report_Date__c >= :date1 and Report_Date__c <= :date2 and WeeklyReportClassification__c = '' ]; |
| | | where Person_In_Charge2__c in :conMList and Report_Date__c >= :date1 and Report_Date__c <= :date2 ]; |
| | | return reportlist; |
| | | } |
| | | //追溯系统 |
| | | public static List<Agency_Report__c> selectMAgencyReport01(Date date1, Date date2 ,List<Contact> conMList) { |
| | | List<Agency_Report__c> reportlist = [Select Id, Name, Report_Date__c, Product_Category1__r.Name, Product_Category2__r.Name, Product_Category3__r.Name, Product_Category1__c, Product_Category2__c, Product_Category3__c,ConsumptionOfConsumables__c,warlocksNumber__c,WorkMark__c,Department_Cateogy__c, DealerPersonnel__c,WorkRecord__c, ProductClassification__c,WarlockClassification__c,ProductCcategory__c,productCategories__c,Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c,DealerPersonnel__r.Name,Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c, |
| | | doctor2__r.AWS_Data_Id__c,// 20220222 PI改造 by Bright |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c, Opportunity__c, Opportunity__r.Name,EffectProgress__c, |
| | | UseProduct1__c,UseProduct2__c,UseProduct3__c,UseProduct1__r.Name,UseProduct2__r.Name,UseProduct3__r.Name |
| | | From Agency_Report__c |
| | | where Person_In_Charge2__c in :conMList and Report_Date__c >= :date1 and Report_Date__c <= :date2 and WeeklyReportClassification__c != '' ]; |
| | | return reportlist; |
| | | } |
| | | //经销商系统的 |
| | | |
| | | public static List<Agency_Report__c> selectAgencyReportById(String report_id) { |
| | | return [Select Id, Name, Department_Cateogy__c,Purpose_Type__c, ConsumptionOfConsumables__c,warlocksNumber__c,WorkMark__c,WorkRecord__c,EffectProgress__c,ProductClassification__c,ProductCcategory__c,productCategories__c, Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c,DealerPersonnel__c,DealerPersonnel__r.Name, Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c, |
| | | return [Select Id, Name, Department_Cateogy__c, Purpose_Type__c, Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c, Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c, |
| | | doctor2__r.AWS_Data_Id__c,// 20220222 PI改造 by Bright |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c , Opportunity__c, Opportunity__r.Name |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c, Opportunity__c, Opportunity__r.Name |
| | | From Agency_Report__c |
| | | where id=:report_id ]; |
| | | } |
| | | //追溯系统的 |
| | | public static List<Agency_Report__c> selectAgencyReportById01(String report_id) { |
| | | return [Select Id, Name, Department_Cateogy__c, ConsumptionOfConsumables__c,warlocksNumber__c,WorkMark__c,WorkRecord__c,EffectProgress__c,ProductClassification__c,ProductCcategory__c,productCategories__c, Agency_Report_Header__c, Agency_Hospital__r.Name, Agency_Hospital__r.Hospital__c, OppName__c, |
| | | Person_In_Charge2__c,DealerPersonnel__c,DealerPersonnel__r.Name, Person_In_Charge2__r.Name, doctor2__c, doctor2__r.Name, Submit_date__c, |
| | | doctor2__r.AWS_Data_Id__c,// 20220222 PI改造 by Bright |
| | | Product_Category__c, Product_Category__r.Name, Result__c, visitor_title__c |
| | | From Agency_Report__c |
| | | where id=:report_id ]; |
| | | where id=:report_id]; |
| | | } |
| | | |
| | | public static List<Agency_Opportunity__c> selectOpportunityByIdAndHospitalLinkId(String opportunity_id, String agency_hospital_link_id) { |
| | |
| | | upsert updaterecord; |
| | | } |
| | | |
| | | public static Integer ControllerUtil() { |
| | | Integer i = 0; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | return i; |
| | | } |
| | | |
| | | } |
| | |
| | | public static String report_id; |
| | | public static String report_header_id; |
| | | |
| | | @testSetup |
| | | static void setUp(){ |
| | | TestDataUtility.CreatePIPolicyConfigurations( new string[]{'Agency_Contact__c','Contact'}); |
| | | } |
| | | |
| | | /** |
| | | * @description AgencyOpportunityHandlerテスト |
| | | */ |
| | | static testMethod void unitTestAgencyOpportunityHandler() { |
| | | Oly_TriggerHandler.bypass('AgencyReportHeaderHandler'); |
| | | Oly_TriggerHandler.bypass('AgencyHospitalHandler'); |
| | | StaticParameter.EscapeAccountTrigger = true; |
| | | StaticParameter.EscapeNFM007Trigger = true; |
| | | StaticParameter.EscapeOpportunityBefUpdTrigger = true; |
| | | StaticParameter.EscapeOpportunityHpDeptUpdTrigger = true; |
| | | StaticParameter.EscapeSyncOpportunityTrigger = true; |
| | | StaticParameter.EventOpportunityPileUpExeFlg = true; |
| | | StaticParameter.EscapeNFM001AgencyContractTrigger = true; |
| | | StaticParameter.EscapeNFM001AgencyContractTrigger2 = true; |
| | | StaticParameter.EscapeLeadTrigger = true; |
| | | StaticParameter.EscapeOpportunityownerUpdate = true; |
| | | ControllerUtil.EscapeNFM001Trigger = true; |
| | | ControllerUtil.EscapeMaintenanceContractAfterUpdateTrigger = true; |
| | | StaticParameter.EscapeNFM001Trigger = true; |
| | | StaticParameter.EscapeMaintenanceContractAfterUpdateTrigger = true; |
| | | // 取引先 |
| | | account1.Name = 'test1医院'; |
| | | account1.RecordTypeId = '01210000000QemG'; |
| | | insert account1; |
| | | List < Account > acclist = [select RecordTypeId, Name |
| | | from Account |
| | | ]; |
| | | account2.Name = 'test1经销商'; |
| | | account2.RecordTypeId = '01210000000Qem1'; |
| | | insert account2; |
| | | List < Account > acc2list = [select RecordTypeId, Name |
| | | from Account |
| | | ]; |
| | | System.assertEquals(2, acc2list.size()); |
| | | // 取引先責任者 |
| | | contact1.AccountId = account1.Id; |
| | | contact1.FirstName = '責任者'; |
| | | contact1.LastName = 'test1医院'; |
| | | insert contact1; |
| | | List < Contact > contactlist = [select Id, FirstName |
| | | from Contact |
| | | ]; |
| | | System.assertEquals('責任者', contactlist[0].FirstName); |
| | | contact2.AccountId = account2.Id; |
| | | contact2.FirstName = '責任者'; |
| | | contact2.LastName = 'test1经销商'; |
| | | insert contact2; |
| | | List < Contact > contact2list = [select Id, FirstName |
| | | from Contact |
| | | ]; |
| | | System.assertEquals('責任者', contact2list[0].FirstName); |
| | | // ユーザー |
| | | //Profile p = [select Id from Profile where Name = '901_经销商周报']; |
| | | Profile p = [select Id from Profile where Name = '901_经销商活动系统']; |
| | | user.ProfileId = p.Id; |
| | | user.ContactId = contact2.Id; |
| | | user.FirstName = 'ユーザー'; |
| | | user.LastName = 'テスト'; |
| | | user.Email = 'test_user@example.com'; |
| | | user.emailencodingkey = 'UTF-8'; |
| | | user.languagelocalekey = 'zh_CN'; |
| | | user.localesidkey = 'ja_JP'; |
| | | user.timezonesidkey = 'Asia/Shanghai'; |
| | | user.Username = 'test_user@example.com' + System.now().millisecond(); |
| | | user.Alias = 'テユ'; |
| | | user.CommunityNickname = 'tu' + System.now().millisecond(); |
| | | user.SalesManager__c = UserInfo.getUserId(); |
| | | insert user; |
| | | List < user > users = [select Id, Name, LastName, FirstName from User where LastName = 'テスト']; |
| | | System.assertEquals('ユーザー', users[0].FirstName); |
| | | agency_hospital_link.Name = 'test1代理店医院'; |
| | | agency_hospital_link.Hospital__c = account1.Id; |
| | | agency_hospital_link.Agency__c = account2.Id; |
| | | agency_hospital_link.OwnerId = user.Id; |
| | | agency_hospital_link.Agency_Campaign_Obj__c = true; |
| | | insert agency_hospital_link; |
| | | List < Agency_Hospital_Link__c > agencylist = [select Id, Name from Agency_Hospital_Link__c where Id = : agency_hospital_link.Id]; |
| | | System.assertEquals('test1医院', agencylist[0].Name); |
| | | Id rtId = Schema.SObjectType.Agency_Opportunity__c.getRecordTypeInfosByDeveloperName().get('Opportunity').getRecordTypeId(); |
| | | agency_opportunity.Agency_Person__c = contactlist[0].id; |
| | | agency_opportunity.RecordTypeId = rtId; |
| | | agency_opportunity.Name = '引合'; |
| | | agency_opportunity.Hospital_Target__c = account1.Id; |
| | | agency_opportunity.Agency__c = account2.Id; |
| | | agency_opportunity.Agency_Hospital__c = agency_hospital_link.Id; |
| | | agency_opportunity.StageName__c = '还没申请预算'; |
| | | agency_opportunity.OwnerId = user.Id; |
| | | agency_opportunity.NewOpportunity_Agency_Apply_Status__c = '批准'; |
| | | agency_opportunity.Department_Cateogy__c = 'ET'; |
| | | agency_opportunity.Sales_Manager__c = user.Id; |
| | | insert agency_opportunity; |
| | | List < Agency_Opportunity__c > opportunitylist = [select Id, Name from Agency_Opportunity__c]; |
| | | System.assertEquals(1, opportunitylist.size()); |
| | | rtId = Schema.SObjectType.Agency_Opportunity__c.getRecordTypeInfosByDeveloperName().get('Opportunity').getRecordTypeId(); |
| | | agency_opportunity2.Agency_Person__c = contact2list[0].id; |
| | | agency_opportunity2.RecordTypeId = rtId; |
| | | agency_opportunity2.Name = '引合2'; |
| | | agency_opportunity2.Hospital_Target__c = account1.Id; |
| | | agency_opportunity2.Agency__c = account2.Id; |
| | | agency_opportunity2.OwnerId = user.Id; |
| | | agency_opportunity2.NewOpportunity_Agency_Apply_Status__c = '草案中'; |
| | | agency_opportunity2.Department_Cateogy__c = 'GS'; |
| | | agency_opportunity2.Sales_Manager__c = UserInfo.getUserId(); |
| | | insert agency_opportunity2; |
| | | System.debug(agency_opportunity2.Name); |
| | | List < Agency_Opportunity__c > opportunitylist2 = [select Id, Name from Agency_Opportunity__c]; |
| | | System.assertEquals(2, opportunitylist2.size()); |
| | | olympus_calendar.Date__c = Date.valueOf('2017-04-10'); |
| | | olympus_calendar.OwnerId = user.Id; |
| | | insert olympus_calendar; |
| | | List < OlympusCalendar__c > olympusCalendarlist = [select Id, Name, Date__c from OlympusCalendar__c]; |
| | | System.assertEquals(Date.valueOf('2017-04-10'), olympusCalendarlist[0].Date__c); |
| | | System.runAs(user) { |
| | | List < Agency_Opportunity__c > opportunity_data = WeeklyReportCmp.selectOpportunityByIdAndHospitalLinkId(agency_opportunity.Id, agency_hospital_link.Id); |
| | | List < Agency_Opportunity__c > agencyopportunity = [select Id, Name, Agency__c, Agency_ID__c, Owner_Agency_ID__c, |
| | | Agency_Hospital_All__c, Agency_Hospital__c, Agency_Hospital_Target__c |
| | | from Agency_Opportunity__c |
| | | ]; |
| | | System.assertEquals('::' + agency_opportunity.Name, agencyopportunity[0].Name); |
| | | System.assertEquals(agency_opportunity.Agency__c, agencyopportunity[0].Owner_Agency_ID__c); |
| | | System.assertEquals(agency_opportunity.Agency_Hospital_All__c, agencyopportunity[0].Agency_Hospital_Target__c); |
| | | } |
| | | } |
| | | // static testMethod void unitTestAgencyOpportunityHandler() { |
| | | // Oly_TriggerHandler.bypass('AgencyReportHeaderHandler'); |
| | | // Oly_TriggerHandler.bypass('AgencyHospitalHandler'); |
| | | // // StaticParameter.EscapeAccountTrigger = true; |
| | | // // StaticParameter.EscapeNFM007Trigger = true; |
| | | // // StaticParameter.EscapeOpportunityBefUpdTrigger = true; |
| | | // // StaticParameter.EscapeOpportunityHpDeptUpdTrigger = true; |
| | | // // StaticParameter.EscapeSyncOpportunityTrigger = true; |
| | | // // StaticParameter.EventOpportunityPileUpExeFlg = true; |
| | | // // StaticParameter.EscapeNFM001AgencyContractTrigger = true; |
| | | // // StaticParameter.EscapeNFM001AgencyContractTrigger2 = true; |
| | | // // StaticParameter.EscapeLeadTrigger = true; |
| | | // // StaticParameter.EscapeOpportunityownerUpdate = true; |
| | | // // ControllerUtil.EscapeNFM001Trigger = true; |
| | | // // ControllerUtil.EscapeMaintenanceContractAfterUpdateTrigger = true; |
| | | // // StaticParameter.EscapeNFM001Trigger = true; |
| | | // // StaticParameter.EscapeMaintenanceContractAfterUpdateTrigger = true; |
| | | // // 取引先 |
| | | // account1.Name = 'test1医院'; |
| | | // account1.RecordTypeId = '01210000000QemG'; |
| | | // insert account1; |
| | | // List < Account > acclist = [select RecordTypeId, Name |
| | | // from Account |
| | | // ]; |
| | | // account2.Name = 'test1经销商'; |
| | | // account2.RecordTypeId = '01210000000Qem1'; |
| | | // insert account2; |
| | | // List < Account > acc2list = [select RecordTypeId, Name |
| | | // from Account |
| | | // ]; |
| | | // // System.assertEquals(2, acc2list.size()); |
| | | // // 取引先責任者 |
| | | // contact1.AccountId = account1.Id; |
| | | // contact1.FirstName = '責任者'; |
| | | // contact1.LastName = 'test1医院'; |
| | | // insert contact1; |
| | | // List < Contact > contactlist = [select Id, FirstName |
| | | // from Contact |
| | | // ]; |
| | | // System.assertEquals('責任者', contactlist[0].FirstName); |
| | | // contact2.AccountId = account2.Id; |
| | | // contact2.FirstName = '責任者'; |
| | | // contact2.LastName = 'test1经销商'; |
| | | // insert contact2; |
| | | // List < Contact > contact2list = [select Id, FirstName |
| | | // from Contact |
| | | // ]; |
| | | // System.assertEquals('責任者', contact2list[0].FirstName); |
| | | // // ユーザー |
| | | // //Profile p = [select Id from Profile where Name = '901_经销商周报']; |
| | | // Profile p = [select Id from Profile where Name = '901_经销商活动系统']; |
| | | // user.ProfileId = p.Id; |
| | | // user.ContactId = contact2.Id; |
| | | // user.FirstName = 'ユーザー'; |
| | | // user.LastName = 'テスト'; |
| | | // user.Email = 'test_user@example.com'; |
| | | // user.emailencodingkey = 'UTF-8'; |
| | | // user.languagelocalekey = 'zh_CN'; |
| | | // user.localesidkey = 'ja_JP'; |
| | | // user.timezonesidkey = 'Asia/Shanghai'; |
| | | // user.Username = 'test_user@example.com' + System.now().millisecond(); |
| | | // user.Alias = 'テユ'; |
| | | // user.CommunityNickname = 'tu' + System.now().millisecond(); |
| | | // user.SalesManager__c = UserInfo.getUserId(); |
| | | // insert user; |
| | | // List < user > users = [select Id, Name, LastName, FirstName from User where LastName = 'テスト']; |
| | | // System.assertEquals('ユーザー', users[0].FirstName); |
| | | // System.runAs(user) { |
| | | |
| | | // agency_hospital_link.Name = 'test1代理店医院'; |
| | | // agency_hospital_link.Hospital__c = account1.Id; |
| | | // agency_hospital_link.Agency__c = account2.Id; |
| | | // // agency_hospital_link.OwnerId = user.Id; |
| | | // agency_hospital_link.Agency_Campaign_Obj__c = true; |
| | | // insert agency_hospital_link; |
| | | // List < Agency_Hospital_Link__c > agencylist = [select Id, Name from Agency_Hospital_Link__c where Id = : agency_hospital_link.Id]; |
| | | // System.assertEquals('test1医院', agencylist[0].Name); |
| | | // Id rtId = Schema.SObjectType.Agency_Opportunity__c.getRecordTypeInfosByDeveloperName().get('Opportunity').getRecordTypeId(); |
| | | // agency_opportunity.Agency_Person__c = contactlist[0].id; |
| | | // agency_opportunity.RecordTypeId = rtId; |
| | | // agency_opportunity.Name = '引合'; |
| | | // agency_opportunity.Hospital_Target__c = account1.Id; |
| | | // agency_opportunity.Agency__c = account2.Id; |
| | | // agency_opportunity.Agency_Hospital__c = agency_hospital_link.Id; |
| | | // agency_opportunity.StageName__c = '还没申请预算'; |
| | | // // agency_opportunity.OwnerId = user.Id; |
| | | // agency_opportunity.NewOpportunity_Agency_Apply_Status__c = '批准'; |
| | | // agency_opportunity.Department_Cateogy__c = 'ET'; |
| | | // agency_opportunity.Sales_Manager__c = user.Id; |
| | | // insert agency_opportunity; |
| | | // List < Agency_Opportunity__c > opportunitylist = [select Id, Name from Agency_Opportunity__c]; |
| | | // System.assertEquals(1, opportunitylist.size()); |
| | | // rtId = Schema.SObjectType.Agency_Opportunity__c.getRecordTypeInfosByDeveloperName().get('Opportunity').getRecordTypeId(); |
| | | // agency_opportunity2.Agency_Person__c = contact2list[0].id; |
| | | // agency_opportunity2.RecordTypeId = rtId; |
| | | // agency_opportunity2.Name = '引合2'; |
| | | // agency_opportunity2.Hospital_Target__c = account1.Id; |
| | | // agency_opportunity2.Agency__c = account2.Id; |
| | | // // agency_opportunity2.OwnerId = user.Id; |
| | | // agency_opportunity2.NewOpportunity_Agency_Apply_Status__c = '草案中'; |
| | | // agency_opportunity2.Department_Cateogy__c = 'GS'; |
| | | // agency_opportunity2.Sales_Manager__c = UserInfo.getUserId(); |
| | | // insert agency_opportunity2; |
| | | // System.debug(agency_opportunity2.Name); |
| | | // List < Agency_Opportunity__c > opportunitylist2 = [select Id, Name from Agency_Opportunity__c]; |
| | | // System.assertEquals(2, opportunitylist2.size()); |
| | | // olympus_calendar.Date__c = Date.valueOf('2017-04-10'); |
| | | // // olympus_calendar.OwnerId = user.Id; |
| | | // insert olympus_calendar; |
| | | // List < OlympusCalendar__c > olympusCalendarlist = [select Id, Name, Date__c from OlympusCalendar__c]; |
| | | // System.assertEquals(Date.valueOf('2017-04-10'), olympusCalendarlist[0].Date__c); |
| | | |
| | | |
| | | |
| | | // List < Agency_Opportunity__c > opportunity_data = WeeklyReportCmp.selectOpportunityByIdAndHospitalLinkId(agency_opportunity.Id, agency_hospital_link.Id); |
| | | // List < Agency_Opportunity__c > agencyopportunity = [select Id, Name, Agency__c, Agency_ID__c, Owner_Agency_ID__c, |
| | | // Agency_Hospital_All__c, Agency_Hospital__c, Agency_Hospital_Target__c |
| | | // from Agency_Opportunity__c |
| | | // ]; |
| | | // System.assertEquals('::' + agency_opportunity.Name, agencyopportunity[0].Name); |
| | | // System.assertEquals(agency_opportunity.Agency__c, agencyopportunity[0].Owner_Agency_ID__c); |
| | | // System.assertEquals(agency_opportunity.Agency_Hospital_All__c, agencyopportunity[0].Agency_Hospital_Target__c); |
| | | // } |
| | | // } |
| | | /** |
| | | * @description AgencyReportHandlerテスト |
| | | */ |
| | | static testMethod void unitTestAgencyReportHandler() { |
| | | LightningUtil.ControllerUtil(); |
| | | // 取引先 |
| | | account1.Name = 'test1医院'; |
| | | account1.RecordTypeId = '01210000000QemG'; |
| | |
| | | System.assertEquals(Department_Cateogy, data.Department_Cateogy__c); |
| | | } |
| | | } |
| | | static testMethod void unitTestWeeklyReportCmp3() { |
| | | testInit001(); |
| | | System.runAs(user) { |
| | | // 病院リスト取得 |
| | | WeeklyReportCmp test = WeeklyReportCmp.getalldata(); |
| | | System.assertNotEquals(test, null); |
| | | } |
| | | } |
| | | // static testMethod void unitTestWeeklyReportCmp3() { |
| | | // testInit001(); |
| | | // System.runAs(user) { |
| | | // // 病院リスト取得 |
| | | // WeeklyReportCmp test = WeeklyReportCmp.getalldata(); |
| | | // System.assertNotEquals(test, null); |
| | | // } |
| | | // } |
| | | static testMethod void unitTestWeeklyReportCmp4() { |
| | | // 省 |
| | | Address_Level__c al = new Address_Level__c(); |
| | |
| | | public static string ResponseBody; |
| | | public static String SAPRepairNo; |
| | | public class NFM103Response { |
| | | public RepairRequest_element RepairRequest; |
| | | // public RepairRequest_element RepairRequest; |
| | | public response[] response; |
| | | } |
| | | public class response { |
| | |
| | | //add pi 加密 sushanhu 20220222 start |
| | | public String DataId;//AWS存储凭证 |
| | | //add pi 加密 sushanhu 20220222 end |
| | | |
| | | //20220330 lt WLIG-CCT9UG 【委托】关于市场多年保计提金调整 start |
| | | public String QuotationDate; |
| | | //20220330 lt WLIG-CCT9UG 【委托】关于市场多年保计提金调整 end |
| | | |
| | | |
| | | } |
| | | ////NFM103修改Rest end |
| | | |
| | |
| | | */ |
| | | @future (callout = true) |
| | | public static void callout(String iflog_Id, List<Id> repairIds) { |
| | | |
| | | |
| | | if (repairIds == null || repairIds.size() == 0) { |
| | | return; |
| | |
| | | ,FSE_ApplyForRepair_time__c //申请修理时间 |
| | | //add by wangweipeng 2021/07/14 start |
| | | ,AWS_Data_Id__c //add by sushanhu AWSDateID for PIPL |
| | | //20220330 lt WLIG-CCT9UG 【委托】关于市场多年保计提金调整 start |
| | | ,Delivered_Product__r.Backorder__r.Opportunity__r.SAP_Send_OK_Date__c |
| | | //20220330 lt WLIG-CCT9UG 【委托】关于市场多年保计提金调整 end |
| | | from Repair__c where Id IN :repairIds]; // 削除データを検索しないはず、All ROWS いらないはず |
| | | System.debug(Logginglevel.DEBUG, 'NFM103_ recptList.size()=' + recptList.size()); |
| | | |
| | |
| | | element.FSEReceiveDate = NFMUtil.formatDate2Str(rpr.On_Site_Repair_Order_Date__c); // TODO 必須ではないけど、修理受付後入力したらどうやってSAPに送る? |
| | | element.FSEDeliverDate = NFMUtil.formatDate2Str(rpr.Send_To_RC_Date__c); // TODO 必須ではないけど、修理受付後入力したらどうやってSAPに送る? |
| | | element.TradeType = NFMUtil.getMapValue(transferMap, 'Trade__c', rpr.Delivered_Product__r.Backorder__r.Opportunity__r.Trade__c, iflog); |
| | | |
| | | //20220330 lt WLIG-CCT9UG 【委托】关于市场多年保计提金调整 start |
| | | element.QuotationDate = NFMUtil.formatDateTime2StrSprit(rpr.Delivered_Product__r.Backorder__r.Opportunity__r.SAP_Send_OK_Date__c).replaceAll('/', ''); |
| | | //20220330 lt WLIG-CCT9UG 【委托】关于市场多年保计提金调整 end |
| | | |
| | | // 多年保修 LHJ Start |
| | | element.RepairCostType = rpr.Delivered_Product__r.SerMarGuranteeType__c != '市场多年保修' ? '' : rpr.RepairCostType__c; |
| | | element.RepairTypeQIS = rpr.RepairType_QIS__c; |
| | |
| | | }*/ |
| | | // 2021-01-07 mzy update 多年保修外贸NFM103接口修改 start |
| | | String tradeType = rpr.Delivered_Product__r.Backorder__r.Opportunity__r.Trade__c; |
| | | |
| | | String NewProductGuaranteeObject = rpr.NewProductGuaranteeObject__c == null ? '': rpr.NewProductGuaranteeObject__c; |
| | | |
| | | |
| | |
| | | // NFMUtil.response response = |
| | | // NFMUtil.sendToSapStatusAndBody(rowDataStr, NFMUtil.NFM103_ENDPOINT); |
| | | //update to aws 20220222 sushanhu start for PIPL |
| | | NFMUtil.response res = NFMUtil.getAwsToken(); |
| | | String token=res.responseBody; |
| | | if(String.isBlank(token)){ |
| | | iflog.ErrorLog__c='NFM103'+'获取aws token 失败'; |
| | | |
| | | } |
| | | NFMUtil.response response = NFMUtil.sendToPiAWS(rowDataStr, NFMUtil.NFM103_ENDPOINT,token); |
| | | PIHelper.PIIntegration NFM103AWS =PIHelper.getPIIntegrationInfo('NFM103'); |
| | | NFMUtil.response response = NFMUtil.sendToPiAWS(rowDataStr, NFM103AWS.newUrl,NFM103AWS.token); |
| | | //update to aws 20220222 sushanhu end for PIPL |
| | | status = response.status; |
| | | system.debug('AWS Response status:'+status); |
| | | ResponseBody = response.responseBody; |
| | | status = response.status; |
| | | system.debug('AWS Response status:'+status); |
| | | system.System.debug('NGM103 AWS result--'+ response.ResponseBody); |
| | | ResponseBody = response.responseBody; |
| | | //update to aws 20220302 sushanhu start for PIPL |
| | | Map<String, Object> results = (Map<String, Object>)JSON.deserializeUntyped(ResponseBody); |
| | | system.System.debug('NGM103 AWS result--'+ ResponseBody); |
| | | //update to aws 20220302 sushanhu end for PIPL |
| | | NFM103Response NFM103Response = new NFM103Response(); |
| | | if ('200'.equals(status)) { |
| | | Map<String, Object> results = (Map<String, Object>)JSON.deserializeUntyped(ResponseBody); |
| | | NFM103Response NFM103Response = new NFM103Response(); |
| | | system.debug(ResponseBody); |
| | | if (string.isNotEmpty(ResponseBody)) { |
| | | NFM103Response = |
| | |
| | | NFM103Response.response.size() > 0 && |
| | | NFM103Response.response[0].LOG != null && |
| | | string.isNotEmpty(NFM103Response.response[0].LOG.SAPRepairNo)) { |
| | | SAPRepairNo = NFM103Response.response[0].LOG.SAPRepairNo; |
| | | SAPRepairNo = NFM103Response.response[0].LOG.SAPRepairNo; |
| | | |
| | | } |
| | | rowData.retry_cnt__c = 0; |
| | | //add wangweipeng 2022/02/18 start |
| | | //如果为true,证明是重新发送的接口,需要把日志记录下 |
| | | if(needUpdateIflog){ |
| | | logstr += 'Status:' + status; |
| | | logstr += '\nResponse:' + ResponseBody; |
| | | logstr += '\nend'; |
| | | } |
| | | //add wangweipeng 2022/02/18 start |
| | | } else { |
| | | if (rowData.retry_cnt__c == null) rowData.retry_cnt__c = 0; |
| | | if (rowData.retry_cnt__c < batch_retry_max_cnt) { |
| | | rowData.retry_cnt__c++; |
| | | LogAutoSendSchedule.assignOneMinute(); |
| | | } |
| | | if (rowData.retry_cnt__c >= batch_retry_max_cnt) { |
| | | rowData.ErrorLog__c = 'status:' + ResponseBody + |
| | | '\n错误次数已经超过自动送信设定的最大次数,请手动送信'; |
| | | } |
| | | } |
| | | // Map<String, Object> results = (Map<String, Object>)JSON.deserializeUntyped(ResponseBody); |
| | | |
| | | //update to aws 20220302 sushanhu end for PIPL |
| | | |
| | | // 原代码: |
| | | // NFM103修改Rest start |
| | | //status = |
| | |
| | | // WLIG-BXQBH6 end |
| | | |
| | | // 原則非同期ですので、logsを確認する必要がないでしょう。 |
| | | if (status == 'OK') { |
| | | rowData.retry_cnt__c = 0; |
| | | //add wangweipeng 2022/02/18 start |
| | | //如果为true,证明是重新发送的接口,需要把日志记录下 |
| | | if(needUpdateIflog){ |
| | | logstr += 'Status:' + status; |
| | | logstr += '\nResponse:' + responseBody; |
| | | logstr += '\nend'; |
| | | } |
| | | //add wangweipeng 2022/02/18 start |
| | | } else { |
| | | if (rowData.retry_cnt__c == null) rowData.retry_cnt__c = 0; |
| | | if (rowData.retry_cnt__c < batch_retry_max_cnt) { |
| | | rowData.retry_cnt__c++; |
| | | LogAutoSendSchedule.assignOneMinute(); |
| | | } |
| | | if (rowData.retry_cnt__c >= batch_retry_max_cnt) { |
| | | rowData.ErrorLog__c = 'status:' + status + |
| | | '\n错误次数已经超过自动送信设定的最大次数,请手动送信'; |
| | | } |
| | | } |
| | | // if (status == 'OK') { |
| | | // rowData.retry_cnt__c = 0; |
| | | // //add wangweipeng 2022/02/18 start |
| | | // //如果为true,证明是重新发送的接口,需要把日志记录下 |
| | | // if(needUpdateIflog){ |
| | | // logstr += 'Status:' + status; |
| | | // logstr += '\nResponse:' + responseBody; |
| | | // logstr += '\nend'; |
| | | // } |
| | | // //add wangweipeng 2022/02/18 start |
| | | // } else { |
| | | // if (rowData.retry_cnt__c == null) rowData.retry_cnt__c = 0; |
| | | // if (rowData.retry_cnt__c < batch_retry_max_cnt) { |
| | | // rowData.retry_cnt__c++; |
| | | // LogAutoSendSchedule.assignOneMinute(); |
| | | // } |
| | | // if (rowData.retry_cnt__c >= batch_retry_max_cnt) { |
| | | // rowData.ErrorLog__c = 'status:' + status + |
| | | // '\n错误次数已经超过自动送信设定的最大次数,请手动送信'; |
| | | // } |
| | | // } |
| | | } catch (Exception ex) { |
| | | // TODO IOException |
| | | // エラーが発生した場合 |
| | |
| | | account2.Name = 'test1经销商'; |
| | | account2.RecordTypeId = '01210000000Qem1'; |
| | | insert account2; |
| | | ID AgencyID = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Office').getRecordTypeId(); |
| | | Schema.RecordTypeInfo rti = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Office'); |
| | | if(rti == null){ |
| | | rti = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('office'); |
| | | } |
| | | ID AgencyID = rti.getRecordTypeId(); |
| | | Agency = new Account(ParentId = account2.Id, RecordTypeId = AgencyID, Name = 'NFM115TestAgency', FSE_SP_Main_Leader__c = UserInfo.getUserId(), FSE_GI_Main_Leader__c = UserInfo.getUserId()); |
| | | insert Agency; |
| | | Agency = [select Management_Code__c, Management_Code_Auto__c, Name, Id from Account where Id = :Agency.Id]; |
| | |
| | | account2.Name = 'test1经销商'; |
| | | account2.RecordTypeId = '01210000000Qem1'; |
| | | insert account2; |
| | | ID AgencyID = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Office').getRecordTypeId(); |
| | | Schema.RecordTypeInfo rti = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Office'); |
| | | if(rti == null){ |
| | | rti = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('office'); |
| | | } |
| | | ID AgencyID = rti.getRecordTypeId(); |
| | | Agency = new Account(ParentId = account2.Id, RecordTypeId = AgencyID, Name = 'NFM115TestAgency', FSE_SP_Main_Leader__c = UserInfo.getUserId(), FSE_GI_Main_Leader__c = UserInfo.getUserId()); |
| | | insert Agency; |
| | | Agency = [select Management_Code__c, Management_Code_Auto__c, Name, Id from Account where Id = :Agency.Id]; |
| | |
| | | } catch (Exception ex) { |
| | | // Database.rollback(sp); |
| | | System.debug('rollback'); |
| | | System.debug('ex.getlinenumber()------'+ex.getlinenumber()); |
| | | // System.debug(Logginglevel.ERROR, 'QLMData_' + rowData.MessageGroupNumber__c + ':' + ex.getMessage()); |
| | | // System.debug(Logginglevel.ERROR, 'QLMData_' + rowData.MessageGroupNumber__c + ':' + ex.getStackTraceString()); |
| | | // logstr += '\n' + ex.getMessage(); |
| | |
| | | |
| | | @testSetup |
| | | static void makeTestQLM() { |
| | | TestDataUtility.CreatePIPolicyConfiguration('QLMNFM501'); |
| | | // List<BatchIF_Transfer__c> QLMoldMarkTransfers = new List<BatchIF_Transfer__c>(); |
| | | BatchIF_Transfer__c transfer1 = new BatchIF_Transfer__c(); |
| | | transfer1.Table__c = 'QLMoldMark'; |
| | |
| | | rowData.ErrorLog__c = rowData.ErrorLog__c == null ? '' : rowData.ErrorLog__c; |
| | | // System.debug('+++++++1+++++++'+iflog501Future); |
| | | String QLMDataStr = NFMUtil.QLMgetRowDataStr(rowData); |
| | | system.debug('QLMDataStr---'+QLMDataStr); |
| | | NFM501controller.AllData getQLMData1 = (NFM501controller.AllData) |
| | | JSON.deserialize(QLMDataStr, NFM501controller.AllData.class); |
| | | |
| | | system.debug('getQLMData1---'+json.serialize(getQLMData1)); |
| | | if (getQLMData1 == null) { |
| | | return; |
| | | } |
| | |
| | | Set < String > TarDetailSet = new Set < String > (); |
| | | |
| | | for (NFM501Controller.ListItem LI: getQLMData1.data.list1) { |
| | | system.debug('LI----'+json.serialize(LI)); |
| | | // 項目転送のセット |
| | | Tender_information__c te1 = new Tender_information__c(); |
| | | |
| | | //add aws dataid sushanhu 20220223 start |
| | | if(String.isEmpty(LI.DataId)){ |
| | | continue; |
| | |
| | | //转换表(实现选项列表的下拉选项) |
| | | te1.BiddingType__c = NFMUtil.getMapValue(transferMap, 'BiddingType__c', LI.biddingType, iflog501Future); |
| | | te1.InfoQianlimaUrl__c = String.isBlank(LI.infoQianlimaUrl) ? te1.InfoQianlimaUrl__c : LI.infoQianlimaUrl; |
| | | System.debug('======111111111111========'); |
| | | //拼接字符串 |
| | | if (LI.ZhaoRelationWay != null && LI.ZhaoRelationWay.size() > 0) { |
| | | System.debug('======LI.ZhaoRelationWay========'+LI.ZhaoRelationWay); |
| | | te1.ZhaoRelationWay__c = String.join(LI.ZhaoRelationWay, ','); |
| | | //add 密文 sushanhu 20220223 start |
| | | System.debug('======LI.ZhaoRelationWayEncrypted========'+LI.ZhaoRelationWayEncrypted); |
| | | te1.ZhaoRelationWay_Encrypted__c =String.join(LI.ZhaoRelationWayEncrypted,','); |
| | | System.debug('======2222222222222========'); |
| | | //add 密文 sushanhu 20220223 end |
| | | } |
| | | //转换表(选项列表的下拉选项) |
| | | System.debug('======3333333333333333========'); |
| | | te1.IsElectronic__c = NFMUtil.getMapValue(transferMap, 'IsElectronic__c', LI.isElectronic, iflog501Future); |
| | | te1.XmNumber__c = String.isBlank(LI.xmNumber) ? te1.XmNumber__c : LI.xmNumber; |
| | | if ( String.isnotBlank(LI.tenderEndTime) ) { |
| | |
| | | //add 密文 sushanhu 20220223 end |
| | | } |
| | | |
| | | |
| | | System.debug('te1-----'+json.serialize(te1)); |
| | | //精琢科技 zxk 2021-11-11 SWAG-C637NF start |
| | | // 如果第一次项目阶段就传来变更状态的话,那么就不生成招投标项目(由于变更阶段项目名称传来为空,为了不让项目名自动赋值为Id) |
| | | if (String.isNotBlank(te1.InfoType__c) && String.isNotBlank(LI.projectId)) { |
| | |
| | | if (DetlList.size() > 0) { |
| | | delete DetlList; |
| | | } |
| | | system.debug('updateTenderMap---'+json.serialize(updateTenderMap)); |
| | | if (updateTenderMap.values().size() > 0) { |
| | | upsert updateTenderMap.values(); |
| | | } |
| | |
| | | insert insertbidInfoFileList; |
| | | } |
| | | if (!Manual_execution501future) { |
| | | //测试 Open the comment by Li Jun 20220404 |
| | | System.enqueueJob(new NFM502Controller(rowData.id)); |
| | | } |
| | | // logstr += '\nend'; |
| | |
| | | @isTest |
| | | public with sharing class NFM501FutureControllerTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('QLMNFM501'); |
| | | } |
| | | public NFM501FutureControllerTest() { |
| | | |
| | | } |
| | |
| | | insert NFM501TokenTransfers; |
| | | |
| | | Tender_information__c Ten = new Tender_information__c(); |
| | | Ten.Name = '123456'; |
| | | // Ten.Name = '123456'; |
| | | Ten.InfoTitle__c = '123456'; |
| | | Ten.ProjectId__c = '38_99df2844cf784982acdc61d00d7a7dbb'; |
| | | |
| | | insert Ten; |
| | |
| | | BatchIF_Log__c rowData = new BatchIF_Log__c(); |
| | | rowData.Type__c = 'NFM501'; |
| | | rowData.RowDataFlg__c = true; |
| | | rowData.Log__c = '{"code":"0","data":{"cursorMark":"60d01dde42ec7ed48d3730d6","list1":[{"agentRelationName":["李蕾电"],"agentRelationWay":["12345678"],"agentUnit":["四川乾新招投标代理有限公司"],"areaCity":"惠州市","areaCountry":"","areaProvince":"广东省","biddingType":"0","bidingAcquireTime":"2021-01-13 00:00:00","bidingEndTime":"2021-01-13 00:00:00","budget":[{"amount":"250000.00","unit":"元"}],"infoFile":["http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyMjczMjgxOTAiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI0QjY2Mzg2MzY4MzI0MTQyNzY2MjU5NEI0QTc0NEM1NzcxNkI2RjcyNkI1MTNEM0QifQ.3UTAGOde4plSKFKf_DV1sBWXJbdsz7zN8a1KZZys6bo"],"infoId":"227328190","infoPublishTime":"2021-06-21 09:41:26","infoQianlimaUrl":"http://www.qianlima.com/zb/detail/20210621_227328190.html","infoTitle":"皮肤镜图像处理工作站调研公告","infoType":"5","infoTypeSegment":"7","isElectronic":"0","keywords":"图像处理","openBidingTime":"2021-01-13 00:00:00","projectId":"38_99df2844cf784982acdc61d00d7a7dbb","target":{"targetDetails":[{"number1":"12","totalPrice":"2645000.00","price":"","name":"四川省雅安市芦山县人民医院抗疫特别国债购置高清胃肠镜采购项目","model":"","brand":""}]},"tenderBeginTime":"2021-01-13 00:00:00","tenderEndTime":"2021-01-13 00:00:00","winnerAmount":[{"amount":"1598000.00","unit":"元"}],"xmNumber":"CD-1624266167710","zhaoBiaoUnit":["惠州市第一人民医院","OCM","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院"],"zhaoRelationName":["范梅红"],"zhaoRelationWay":["0752-2883625"],"zhongBiaoUnit":["成都宋庄创意科技有限公司","OCSM","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司"],"zhongRelationName":["1234"],"zhongRelationWay":["1234567"]}]},"msg":"正确返回数据"}'; |
| | | rowData.Log__c = '{"code":"0","data":{"cursorMark":"60d01dde42ec7ed48d3730d6","list1":[{"DataId":"1234567890","agentRelationName":["李蕾电"],"agentRelationWay":["12345678"],"agentUnit":["四川乾新招投标代理有限公司"],"areaCity":"惠州市","areaCountry":"","areaProvince":"广东省","biddingType":"0","bidingAcquireTime":"2021-01-13 00:00:00","bidingEndTime":"2021-01-13 00:00:00","budget":[{"amount":"250000.00","unit":"元"}],"infoFile":["http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyMjczMjgxOTAiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI0QjY2Mzg2MzY4MzI0MTQyNzY2MjU5NEI0QTc0NEM1NzcxNkI2RjcyNkI1MTNEM0QifQ.3UTAGOde4plSKFKf_DV1sBWXJbdsz7zN8a1KZZys6bo"],"infoId":"227328190","infoPublishTime":"2021-06-21 09:41:26","infoQianlimaUrl":"http://www.qianlima.com/zb/detail/20210621_227328190.html","infoTitle":"皮肤镜图像处理工作站调研公告","infoType":"5","infoTypeSegment":"7","isElectronic":"0","keywords":"图像处理","openBidingTime":"2021-01-13 00:00:00","projectId":"38_99df2844cf784982acdc61d00d7a7dbb","target":{"targetDetails":[{"number1":"12","totalPrice":"2645000.00","price":"","name":"四川省雅安市芦山县人民医院抗疫特别国债购置高清胃肠镜采购项目","model":"","brand":""}]},"tenderBeginTime":"2021-01-13 00:00:00","tenderEndTime":"2021-01-13 00:00:00","winnerAmount":[{"amount":"1598000.00","unit":"元"}],"xmNumber":"CD-1624266167710","zhaoBiaoUnit":["惠州市第一人民医院","OCM","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院"],"zhaoRelationName":["范梅红"],"zhaoRelationWay":["0752-2883625"],"zhongBiaoUnit":["成都宋庄创意科技有限公司","OCSM","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司"],"zhongRelationName":["1234"],"zhongRelationWay":["1234567"],"ZhaoRelationWayEncrypted":["1234567890"],"AgentRelationWayEncrypted":["1234567890"],"AgentRelationNameEncrypted":["1234567890"],"ZhongRelationWayEncrypted":["1234567890"],"ZhaoRelationNameEncrypted":["1234567890"],"ZhongRelationNameEncrypted":["1234567890"]}]},"msg":"正确返回数据"}'; |
| | | rowData.MessageGroupNumber__c = transfer1.Internal_Value__c; |
| | | insert rowData; |
| | | |
| | |
| | | |
| | | Test.startTest(); |
| | | Test.setMock(HttpCalloutMock.class, new NFM501HttpCallMock()); |
| | | NFM501FutureController.main(rowData01.Id, iflog01.Id, false); |
| | | NFM501FutureController.main(rowData01.Id, iflog01.Id, false,'txid'); |
| | | NFM501FutureController.USACurrency(AmountItem, te1, 'BudgetAmount'); |
| | | NFM501FutureController.OtherCurrency(AmountItem, te1, 'Budget'); |
| | | Test.stopTest(); |
| | |
| | | insert NFM501TokenTransfers; |
| | | |
| | | Tender_information__c Ten = new Tender_information__c(); |
| | | Ten.Name = '123456'; |
| | | Ten.InfoTitle__c = '123456'; |
| | | // Ten.Name = '123456'; |
| | | Ten.ProjectId__c = '38_99df2844cf784982acdc61d00d7a7dbb'; |
| | | |
| | | insert Ten; |
| | |
| | | BatchIF_Log__c rowData = new BatchIF_Log__c(); |
| | | rowData.Type__c = 'NFM501'; |
| | | rowData.RowDataFlg__c = true; |
| | | rowData.Log__c = '{"code":"0","data":{"cursorMark":"60d01dde42ec7ed48d3730d6","list1":[{"agentRelationName":["李蕾电"],"agentRelationWay":["12345678"],"agentUnit":["四川乾新招投标代理有限公司"],"areaCity":"惠州市","areaCountry":"","areaProvince":"广东省","biddingType":"0","bidingAcquireTime":"2021-01-13 00:00:00","bidingEndTime":"2021-01-13 00:00:00","budget":[{"amount":"250000.00","unit":"元"}],"infoFile":["http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyMjczMjgxOTAiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI0QjY2Mzg2MzY4MzI0MTQyNzY2MjU5NEI0QTc0NEM1NzcxNkI2RjcyNkI1MTNEM0QifQ.3UTAGOde4plSKFKf_DV1sBWXJbdsz7zN8a1KZZys6bo"],"infoId":"227328190","infoPublishTime":"2021-06-21 09:41:26","infoQianlimaUrl":"http://www.qianlima.com/zb/detail/20210621_227328190.html","infoTitle":"皮肤镜图像处理工作站调研公告","infoType":"1","infoTypeSegment":"1","isElectronic":"0","keywords":"图像处理","openBidingTime":"2021-01-13 00:00:00","projectId":"38_99df2844cf784982acdc61d00d7a7dbb","target":{"targetDetails":[{"number1":"12","totalPrice":"2645000.00","price":"","name":"四川省雅安市芦山县人民医院抗疫特别国债购置高清胃肠镜采购项目","model":"","brand":""}]},"tenderBeginTime":"2021-01-13 00:00:00","tenderEndTime":"2021-01-13 00:00:00","winnerAmount":[{"amount":"1598000.00","unit":"元"}],"xmNumber":"CD-1624266167710","zhaoBiaoUnit":["惠州市第一人民医院","OCM","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院"],"zhaoRelationName":["范梅红"],"zhaoRelationWay":["0752-2883625"],"zhongBiaoUnit":["成都宋庄创意科技有限公司","OCSM","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司"],"zhongRelationName":["1234"],"zhongRelationWay":["1234567"]}]},"msg":"正确返回数据"}'; |
| | | rowData.Log__c = '{"code":"0","data":{"cursorMark":"60d01dde42ec7ed48d3730d6","list1":[{"DataId":"1234567890","agentRelationName":["李蕾电"],"agentRelationWay":["12345678"],"agentUnit":["四川乾新招投标代理有限公司"],"areaCity":"惠州市","areaCountry":"","areaProvince":"广东省","biddingType":"0","bidingAcquireTime":"2021-01-13 00:00:00","bidingEndTime":"2021-01-13 00:00:00","budget":[{"amount":"250000.00","unit":"元"}],"infoFile":["http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyMjczMjgxOTAiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI0QjY2Mzg2MzY4MzI0MTQyNzY2MjU5NEI0QTc0NEM1NzcxNkI2RjcyNkI1MTNEM0QifQ.3UTAGOde4plSKFKf_DV1sBWXJbdsz7zN8a1KZZys6bo"],"infoId":"227328190","infoPublishTime":"2021-06-21 09:41:26","infoQianlimaUrl":"http://www.qianlima.com/zb/detail/20210621_227328190.html","infoTitle":"皮肤镜图像处理工作站调研公告","infoType":"1","infoTypeSegment":"1","isElectronic":"0","keywords":"图像处理","openBidingTime":"2021-01-13 00:00:00","projectId":"38_99df2844cf784982acdc61d00d7a7dbb","target":{"targetDetails":[{"number1":"12","totalPrice":"2645000.00","price":"","name":"四川省雅安市芦山县人民医院抗疫特别国债购置高清胃肠镜采购项目","model":"","brand":""}]},"tenderBeginTime":"2021-01-13 00:00:00","tenderEndTime":"2021-01-13 00:00:00","winnerAmount":[{"amount":"1598000.00","unit":"元"}],"xmNumber":"CD-1624266167710","zhaoBiaoUnit":["惠州市第一人民医院","OCM","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院"],"zhaoRelationName":["范梅红"],"zhaoRelationWay":["0752-2883625"],"zhongBiaoUnit":["成都宋庄创意科技有限公司","OCSM","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司"],"zhongRelationName":["1234"],"zhongRelationWay":["1234567"],"ZhaoRelationWayEncrypted":["1234567890"],"AgentRelationWayEncrypted":["1234567890"],"AgentRelationNameEncrypted":["1234567890"],"ZhongRelationWayEncrypted":["1234567890"],"ZhaoRelationNameEncrypted":["1234567890"],"ZhongRelationNameEncrypted":["1234567890"]}]},"msg":"正确返回数据"}'; |
| | | rowData.MessageGroupNumber__c = transfer1.Internal_Value__c; |
| | | insert rowData; |
| | | |
| | |
| | | |
| | | Test.startTest(); |
| | | Test.setMock(HttpCalloutMock.class, new NFM501HttpCallMock()); |
| | | NFM501FutureController.main(rowData01.Id, iflog01.Id, false); |
| | | NFM501FutureController.main(rowData01.Id, iflog01.Id, false,'txid'); |
| | | NFM501FutureController.USACurrency(AmountItem, te1, 'BudgetAmount'); |
| | | NFM501FutureController.OtherCurrency(AmountItem, te1, 'Budget'); |
| | | Test.stopTest(); |
| | |
| | | insert NFM501TokenTransfers; |
| | | |
| | | Tender_information__c Ten = new Tender_information__c(); |
| | | Ten.Name = '123456'; |
| | | // Ten.Name = '123456'; |
| | | Ten.InfoTitle__c = '123456'; |
| | | Ten.ProjectId__c = '38_99df2844cf784982acdc61d00d7a7dbb'; |
| | | |
| | | insert Ten; |
| | |
| | | BatchIF_Log__c rowData = new BatchIF_Log__c(); |
| | | rowData.Type__c = 'NFM501'; |
| | | rowData.RowDataFlg__c = true; |
| | | rowData.Log__c = '{"code":"0","data":{"cursorMark":"60d01dde42ec7ed48d3730d6","list1":[{"agentRelationName":["李蕾电"],"agentRelationWay":["12345678"],"agentUnit":["四川乾新招投标代理有限公司"],"areaCity":"惠州市","areaCountry":"","areaProvince":"广东省","biddingType":"0","bidingAcquireTime":"2021-01-13 00:00:00","bidingEndTime":"2021-01-13 00:00:00","budget":[{"amount":"250000.00","unit":"元"}],"infoFile":["http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyMjczMjgxOTAiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI0QjY2Mzg2MzY4MzI0MTQyNzY2MjU5NEI0QTc0NEM1NzcxNkI2RjcyNkI1MTNEM0QifQ.3UTAGOde4plSKFKf_DV1sBWXJbdsz7zN8a1KZZys6bo"],"infoId":"227328190","infoPublishTime":"2021-06-21 09:41:26","infoQianlimaUrl":"http://www.qianlima.com/zb/detail/20210621_227328190.html","infoTitle":"皮肤镜图像处理工作站调研公告","infoType":"5","infoTypeSegment":"7","isElectronic":"0","keywords":"图像处理","openBidingTime":"2021-01-13 00:00:00","projectId":"38_99df2844cf784982acdc61d00d7a7dbb","target":{"targetDetails":[{"number1":"12","totalPrice":"2645000.00","price":"","name":"四川省雅安市芦山县人民医院抗疫特别国债购置高清胃肠镜采购项目","model":"","brand":""}]},"tenderBeginTime":"2021-01-13 00:00:00","tenderEndTime":"2021-01-13 00:00:00","winnerAmount":[{"amount":"1598000.00","unit":"元"}],"xmNumber":"CD-1624266167710","zhaoBiaoUnit":["惠州市第一人民医院","OCM","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院"],"zhaoRelationName":["范梅红"],"zhaoRelationWay":["0752-2883625"],"zhongBiaoUnit":["成都宋庄创意科技有限公司","OCSM","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司"],"zhongRelationName":["1234"],"zhongRelationWay":["1234567"]}]},"msg":"正确返回数据"}'; |
| | | rowData.Log__c = '{"code":"0","data":{"cursorMark":"60d01dde42ec7ed48d3730d6","list1":[{"DataId":"1234567890","agentRelationName":["李蕾电"],"agentRelationWay":["12345678"],"agentUnit":["四川乾新招投标代理有限公司"],"areaCity":"惠州市","areaCountry":"","areaProvince":"广东省","biddingType":"0","bidingAcquireTime":"2021-01-13 00:00:00","bidingEndTime":"2021-01-13 00:00:00","budget":[{"amount":"250000.00","unit":"元"}],"infoFile":["http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyMjczMjgxOTAiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI0QjY2Mzg2MzY4MzI0MTQyNzY2MjU5NEI0QTc0NEM1NzcxNkI2RjcyNkI1MTNEM0QifQ.3UTAGOde4plSKFKf_DV1sBWXJbdsz7zN8a1KZZys6bo"],"infoId":"227328190","infoPublishTime":"2021-06-21 09:41:26","infoQianlimaUrl":"http://www.qianlima.com/zb/detail/20210621_227328190.html","infoTitle":"皮肤镜图像处理工作站调研公告","infoType":"5","infoTypeSegment":"7","isElectronic":"0","keywords":"图像处理","openBidingTime":"2021-01-13 00:00:00","projectId":"38_99df2844cf784982acdc61d00d7a7dbb","target":{"targetDetails":[{"number1":"12","totalPrice":"2645000.00","price":"","name":"四川省雅安市芦山县人民医院抗疫特别国债购置高清胃肠镜采购项目","model":"","brand":""}]},"tenderBeginTime":"2021-01-13 00:00:00","tenderEndTime":"2021-01-13 00:00:00","winnerAmount":[{"amount":"1598000.00","unit":"元"}],"xmNumber":"CD-1624266167710","zhaoBiaoUnit":["惠州市第一人民医院","OCM","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院","惠州市第一人民医院"],"zhaoRelationName":["范梅红"],"zhaoRelationWay":["0752-2883625"],"zhongBiaoUnit":["成都宋庄创意科技有限公司","OCSM","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司","成都宋庄创意科技有限公司"],"zhongRelationName":["1234"],"zhongRelationWay":["1234567"],"ZhaoRelationWayEncrypted":["1234567890"],"AgentRelationWayEncrypted":["1234567890"],"AgentRelationNameEncrypted":["1234567890"],"ZhongRelationWayEncrypted":["1234567890"],"ZhaoRelationNameEncrypted":["1234567890"],"ZhongRelationNameEncrypted":["1234567890"]}]},"msg":"正确返回数据"}'; |
| | | rowData.MessageGroupNumber__c = transfer1.Internal_Value__c; |
| | | insert rowData; |
| | | |
| | |
| | | |
| | | Test.startTest(); |
| | | Test.setMock(HttpCalloutMock.class, new NFM501HttpCallMockEx()); |
| | | NFM501FutureController.main(rowData01.Id, iflog01.Id, false); |
| | | NFM501FutureController.main(rowData01.Id, iflog01.Id, false,'txid'); |
| | | |
| | | Test.stopTest(); |
| | | } |
| | |
| | | public with sharing class NFM502Controller implements Queueable { |
| | | public String rowData_id; |
| | | //add staic sushanhu 20220302 start |
| | | public static String transUrl; |
| | | public static String transId; |
| | | public static String token; |
| | | public static List<String> sfRecordIds =new List<String>(); |
| | | //add staic sushanhu 20220302 end |
| | | public NFM502Controller(String rowData_id) { |
| | | this.rowData_id = rowData_id; |
| | | } |
| | | public String rowData_id; |
| | | //add staic sushanhu 20220302 start |
| | | public static String transUrl; |
| | | public static String transId; |
| | | public static String token; |
| | | public static List<String> sfRecordIds =new List<String>(); |
| | | //add staic sushanhu 20220302 end |
| | | public NFM502Controller(String rowData_id) { |
| | | this.rowData_id = rowData_id; |
| | | } |
| | | |
| | | public static Integer batch_retry_max_cnt = Integer.valueOf(System.Label.batch_retry_max_cnt); |
| | | public void execute(QueueableContext context) { |
| | | // 通过Rowdata.Id来检索日志中的内容(千里马数据等) |
| | | BatchIF_Log__c rowData = [Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, |
| | | Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, |
| | | Log10__c, Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c, |
| | | NFM501Future_Count__c, |
| | | NFM501_Web_Annex_Count__c |
| | | from BatchIF_Log__c where RowDataFlg__c = true and Id = :rowData_id]; |
| | | //存放报错信息 |
| | | BatchIF_Log__c iflog502 = new BatchIF_Log__c(); |
| | | iflog502.Type__c = 'NFM501'; |
| | | iflog502.RowDataFlg__c = false; |
| | | iflog502.Log__c = ' '; |
| | | iflog502.ErrorLog__c = ' '; |
| | | iflog502.MessageGroupNumber__c = rowData.MessageGroupNumber__c; |
| | | insert iflog502; |
| | | NFM502Controller.WebAnnexGain(rowData.Id, iflog502.Id, false); |
| | | } |
| | | @future(callout = true) |
| | | public static void WebAnnexGain(String rowData_id, String iflog502_id, boolean Manual_execution502) { |
| | | BatchIF_Log__c rowData = [Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, |
| | | Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, |
| | | Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c, |
| | | NFM501Future_Count__c, |
| | | NFM501_Web_Annex_Count__c from BatchIF_Log__c |
| | | where RowDataFlg__c = true and Id = :rowData_id]; |
| | | BatchIF_Log__c iflog502 = [Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, |
| | | Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, |
| | | Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c, |
| | | NFM501Future_Count__c, |
| | | NFM501_Web_Annex_Count__c from BatchIF_Log__c |
| | | where Id = :iflog502_id]; |
| | | public static Integer batch_retry_max_cnt = Integer.valueOf(System.Label.batch_retry_max_cnt); |
| | | public void execute(QueueableContext context) { |
| | | // 通过Rowdata.Id来检索日志中的内容(千里马数据等) |
| | | BatchIF_Log__c rowData = [Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, |
| | | Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, |
| | | Log10__c, Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c, |
| | | NFM501Future_Count__c, |
| | | NFM501_Web_Annex_Count__c |
| | | from BatchIF_Log__c where RowDataFlg__c = true and Id = :rowData_id]; |
| | | //存放报错信息 |
| | | BatchIF_Log__c iflog502 = new BatchIF_Log__c(); |
| | | iflog502.Type__c = 'NFM501'; |
| | | iflog502.RowDataFlg__c = false; |
| | | iflog502.Log__c = ' '; |
| | | iflog502.ErrorLog__c = ' '; |
| | | iflog502.MessageGroupNumber__c = rowData.MessageGroupNumber__c; |
| | | insert iflog502; |
| | | NFM502Controller.WebAnnexGain(rowData.Id, iflog502.Id, false); |
| | | } |
| | | @future(callout = true) |
| | | public static void WebAnnexGain(String rowData_id, String iflog502_id, boolean Manual_execution502) { |
| | | BatchIF_Log__c rowData = [Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, |
| | | Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, |
| | | Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c, |
| | | NFM501Future_Count__c, |
| | | NFM501_Web_Annex_Count__c from BatchIF_Log__c |
| | | where RowDataFlg__c = true and Id = :rowData_id]; |
| | | BatchIF_Log__c iflog502 = [Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, |
| | | Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, |
| | | Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c, |
| | | NFM501Future_Count__c, |
| | | NFM501_Web_Annex_Count__c from BatchIF_Log__c |
| | | where Id = :iflog502_id]; |
| | | |
| | | iflog502.Log__c = iflog502.Log__c == null ? '' : iflog502.Log__c; |
| | | iflog502.ErrorLog__c = iflog502.ErrorLog__c == null ? '' : iflog502.ErrorLog__c; |
| | | rowData.Log__c = rowData.Log__c == null ? '' : rowData.Log__c; |
| | | rowData.ErrorLog__c = rowData.ErrorLog__c == null ? '' : rowData.ErrorLog__c; |
| | | iflog502.Log__c = iflog502.Log__c == null ? '' : iflog502.Log__c; |
| | | iflog502.ErrorLog__c = iflog502.ErrorLog__c == null ? '' : iflog502.ErrorLog__c; |
| | | rowData.Log__c = rowData.Log__c == null ? '' : rowData.Log__c; |
| | | rowData.ErrorLog__c = rowData.ErrorLog__c == null ? '' : rowData.ErrorLog__c; |
| | | |
| | | // Savepoint sp = Database.setSavepoint(); |
| | | try { |
| | | //update 同staic 20220302 satrt |
| | | // String token; |
| | | //update 同staic 20220302 end |
| | | Datetime oldTime; |
| | | // 从转换表中获取token |
| | | BatchIF_Transfer__c token502 = [Select ID, NFM501_Token__c |
| | | FROM BatchIF_Transfer__c Where Table__c = 'NFM501Token']; |
| | | token = token502.NFM501_Token__c; |
| | | // 从转换表中获取获取完token的时间 |
| | | BatchIF_Transfer__c oldTime502 = [Select ID, NFM501_Gain_End_Time__c |
| | | FROM BatchIF_Transfer__c Where Table__c = 'NFM501GainEndTime']; |
| | | oldTime = oldTime502.NFM501_Gain_End_Time__c; |
| | | // 对日志中的数据进行解析 |
| | | String WebUrl = NFMUtil.QLMgetRowDataStr(rowData); |
| | | NFM501Controller.AllData getQLMData502 = (NFM501Controller.AllData) |
| | | JSON.deserialize(WebUrl, NFM501Controller.AllData.class); |
| | | if (getQLMData502 == null) { |
| | | return; |
| | | } |
| | | // Savepoint sp = Database.setSavepoint(); |
| | | try { |
| | | //update 同staic 20220302 satrt |
| | | // String token; |
| | | //update 同staic 20220302 end |
| | | Datetime oldTime; |
| | | // 从转换表中获取token |
| | | BatchIF_Transfer__c token502 = [Select ID, NFM501_Token__c |
| | | FROM BatchIF_Transfer__c Where Table__c = 'NFM501Token']; |
| | | token = token502.NFM501_Token__c; |
| | | // 从转换表中获取获取完token的时间 |
| | | BatchIF_Transfer__c oldTime502 = [Select ID, NFM501_Gain_End_Time__c |
| | | FROM BatchIF_Transfer__c Where Table__c = 'NFM501GainEndTime']; |
| | | oldTime = oldTime502.NFM501_Gain_End_Time__c; |
| | | // 对日志中的数据进行解析 |
| | | String WebUrl = NFMUtil.QLMgetRowDataStr(rowData); |
| | | NFM501Controller.AllData getQLMData502 = (NFM501Controller.AllData) |
| | | JSON.deserialize(WebUrl, NFM501Controller.AllData.class); |
| | | if (getQLMData502 == null) { |
| | | return; |
| | | } |
| | | |
| | | // 判断token是否失效(失效条件为30分钟之后),如果失效,重新获取 |
| | | Long timeslot; |
| | | Datetime newTime = System.now(); |
| | | if (oldTime == null) { |
| | | timeslot = 2800000; |
| | | } else { |
| | | // 当前时间与获取token结束时间的时间差 |
| | | timeslot = newTime.getTime() - oldTime.getTime(); |
| | | } |
| | | // System.debug('++++1++++' + token + ' : ' + timeslot); |
| | | if (string.isblank(token) || timeslot > 1800000) { |
| | | // NFMUtil.response response = NFMUtil.receiveToken(); |
| | | //update to aws token sushanhu 20220301 start |
| | | NFMUtil.response response = NFMUtil.getAWSToken(); |
| | | //判断rowdata中数据获取成功与否,如果失败重发三次,如果大于三次则手动操作 |
| | | if (String.isBlank(response.responseBody)) { |
| | | System.debug('response.responseBody:' + response.responseBody); |
| | | iflog502.ErrorLog__c = '502token:' + response.responseBody; |
| | | // rowData.NFM501_Web_Annex_Count__c = 0; |
| | | if (!Manual_execution502) { |
| | | NFM501Controller.againSendRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData); |
| | | } |
| | | //更新日志数据 |
| | | System.debug('123@@@'); |
| | | return; |
| | | } |
| | | token = response.responseBody; |
| | | oldTime = Datetime.now(); |
| | | token502.NFM501_Token__c = token; |
| | | oldTime502.NFM501_Gain_End_Time__c = oldTime; |
| | | //update to aws token sushanhu 20220301 end |
| | | } |
| | | // 判断token是否失效(失效条件为30分钟之后),如果失效,重新获取 |
| | | Long timeslot; |
| | | Datetime newTime = System.now(); |
| | | if (oldTime == null) { |
| | | timeslot = 2800000; |
| | | } else { |
| | | // 当前时间与获取token结束时间的时间差 |
| | | timeslot = newTime.getTime() - oldTime.getTime(); |
| | | } |
| | | // System.debug('++++1++++' + token + ' : ' + timeslot); |
| | | if (string.isblank(token) || timeslot > 1800000) { |
| | | // NFMUtil.response response = NFMUtil.receiveToken(); |
| | | //update to aws token sushanhu 20220301 start |
| | | NFMUtil.response response = NFMUtil.getAWSToken(); |
| | | //判断rowdata中数据获取成功与否,如果失败重发三次,如果大于三次则手动操作 |
| | | if (String.isBlank(response.responseBody)) { |
| | | System.debug('response.responseBody:' + response.responseBody); |
| | | iflog502.ErrorLog__c = '502token:' + response.responseBody; |
| | | // rowData.NFM501_Web_Annex_Count__c = 0; |
| | | if (!Manual_execution502) { |
| | | NFM501Controller.againSendRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData); |
| | | } |
| | | //更新日志数据 |
| | | System.debug('123@@@'); |
| | | return; |
| | | } |
| | | token = response.responseBody; |
| | | oldTime = Datetime.now(); |
| | | token502.NFM501_Token__c = token; |
| | | oldTime502.NFM501_Gain_End_Time__c = oldTime; |
| | | //update to aws token sushanhu 20220301 end |
| | | } |
| | | |
| | | //关联附件与招投标项目(通过Id) |
| | | //1.读出招投标中的唯一标识(projecId),将全部招投标projectId存入ProjectIdList |
| | | List<String> ProjectIdList = new List<String>(); |
| | | for (NFM501Controller.ListItem ProId : getQLMData502.data.list1) { |
| | | ProjectIdList.add(ProId.projectId); |
| | | } |
| | | System.debug('---===ProjectIdList' + ProjectIdList); |
| | | //2.取其对应的 |
| | | List<Tender_information__c> TIList = |
| | | [Select Id, ProjectId__c, InfoType__c |
| | | FROM Tender_information__c |
| | | Where ProjectId__c in :ProjectIdList]; |
| | | System.debug('---===2345TIList' + TIList); |
| | | Set<Id> TenIdSet = new Set<Id>(); |
| | | //关联附件与招投标项目(通过Id) |
| | | //1.读出招投标中的唯一标识(projecId),将全部招投标projectId存入ProjectIdList |
| | | List<String> ProjectIdList = new List<String>(); |
| | | for (NFM501Controller.ListItem ProId : getQLMData502.data.list1) { |
| | | ProjectIdList.add(ProId.projectId); |
| | | } |
| | | System.debug('---===ProjectIdList' + ProjectIdList); |
| | | //2.取其对应的 |
| | | List<Tender_information__c> TIList = |
| | | [Select Id, ProjectId__c, InfoType__c |
| | | FROM Tender_information__c |
| | | Where ProjectId__c in :ProjectIdList]; |
| | | System.debug('---===2345TIList' + TIList); |
| | | Set<Id> TenIdSet = new Set<Id>(); |
| | | |
| | | Map<String, Tender_information__c> TenMap = new Map<String, Tender_information__c>(); |
| | | for (Tender_information__c Ten : TIList) { |
| | | TenMap.put(Ten.ProjectId__c, Ten); |
| | | TenIdSet.add(Ten.Id); |
| | | } |
| | | Map<String, Tender_information__c> TenMap = new Map<String, Tender_information__c>(); |
| | | for (Tender_information__c Ten : TIList) { |
| | | TenMap.put(Ten.ProjectId__c, Ten); |
| | | TenIdSet.add(Ten.Id); |
| | | } |
| | | |
| | | //循环URL |
| | | // List<Attachment> TenAttList = new List<Attachment>(); |
| | | //update to aws pi sushanhu 20220301 start |
| | | List<FileAddress__c> fileList = new List<FileAddress__c>(); |
| | | List<String> queryUrlList = new List<String>(); |
| | | Map<String, NFM501Controller.ListItem> queryMap = new Map<String, NFM501Controller.ListItem>(); |
| | | //update to aws pi sushanhu 20220301 end |
| | | for (NFM501Controller.ListItem QLMWebAtt : getQLMData502.data.list1) { |
| | | if (QLMWebAtt.projectId == null) { |
| | | iflog502.ErrorLog__c += 'Error! [' + QLMWebAtt.projectId + ']NotExist. This information is skipped.\n'; |
| | | continue; |
| | | } |
| | | if (QLMWebAtt.areaProvince.equals('香港特别行政区') |
| | | || QLMWebAtt.areaProvince.equals('澳门特别行政区') |
| | | || QLMWebAtt.areaProvince.equals('台湾省')) { |
| | | iflog502.ErrorLog__c += 'Error! [' + QLMWebAtt.areaProvince + |
| | | ']Is 香港特别行政区(澳门特别行政区,台湾省). This information is skipped.\n'; |
| | | continue; |
| | | } |
| | | //update to aws pi sushanhu 20220301 start |
| | | queryUrlList.add(QLMWebAtt.infoQianlimaUrl); |
| | | queryMap.put(QLMWebAtt.infoQianlimaUrl,QLMWebAtt); |
| | | //update to aws pi sushanhu 20220301 start |
| | | // //调用接口3 |
| | | // NFMUtil.response response = NFMUtil.getQLMData(NFMUtil.NFM502_ENDPOINT + QLMWebAtt.infoQianlimaUrl, token); |
| | | // if (String.isBlank(response.responseBody)) { |
| | | // System.debug('response.responseBody:' + response.responseBody); |
| | | // iflog502.ErrorLog__c = '502接口调用:' + response.status; |
| | | // rowData.NFM501_Web_Annex_Count__c = 0; |
| | | // if (!Manual_execution502) { |
| | | // NFM501Controller.againSendRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData); |
| | | // } |
| | | // //更新日志数据 |
| | | // update token502; |
| | | // update oldTime502; |
| | | // return; |
| | | // } |
| | | //循环URL |
| | | // List<Attachment> TenAttList = new List<Attachment>(); |
| | | //update to aws pi sushanhu 20220301 start |
| | | List<FileAddress__c> fileList = new List<FileAddress__c>(); |
| | | List<String> queryUrlList = new List<String>(); |
| | | Map<String, NFM501Controller.ListItem> queryMap = new Map<String, NFM501Controller.ListItem>(); |
| | | //update to aws pi sushanhu 20220301 end |
| | | for (NFM501Controller.ListItem QLMWebAtt : getQLMData502.data.list1) { |
| | | if (QLMWebAtt.projectId == null) { |
| | | iflog502.ErrorLog__c += 'Error! [' + QLMWebAtt.projectId + ']NotExist. This information is skipped.\n'; |
| | | continue; |
| | | } |
| | | if (QLMWebAtt.areaProvince.equals('香港特别行政区') |
| | | || QLMWebAtt.areaProvince.equals('澳门特别行政区') |
| | | || QLMWebAtt.areaProvince.equals('台湾省')) { |
| | | iflog502.ErrorLog__c += 'Error! [' + QLMWebAtt.areaProvince + |
| | | ']Is 香港特别行政区(澳门特别行政区,台湾省). This information is skipped.\n'; |
| | | continue; |
| | | } |
| | | //update to aws pi sushanhu 20220301 start |
| | | queryUrlList.add(QLMWebAtt.infoQianlimaUrl); |
| | | queryMap.put(QLMWebAtt.infoQianlimaUrl,QLMWebAtt); |
| | | //update to aws pi sushanhu 20220301 start |
| | | // //调用接口3 |
| | | // NFMUtil.response response = NFMUtil.getQLMData(NFMUtil.NFM502_ENDPOINT + QLMWebAtt.infoQianlimaUrl, token); |
| | | // if (String.isBlank(response.responseBody)) { |
| | | // System.debug('response.responseBody:' + response.responseBody); |
| | | // iflog502.ErrorLog__c = '502接口调用:' + response.status; |
| | | // rowData.NFM501_Web_Annex_Count__c = 0; |
| | | // if (!Manual_execution502) { |
| | | // NFM501Controller.againSendRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData); |
| | | // } |
| | | // //更新日志数据 |
| | | // update token502; |
| | | // update oldTime502; |
| | | // return; |
| | | // } |
| | | |
| | | // //解析后的code报错处理 |
| | | // string NFM502responseBody = response.responseBody; |
| | | // Map<String, Object> Body502 = (Map<String, Object>) JSON.deserializeUntyped(NFM502responseBody); |
| | | // if (!Body502.get('code').equals('0')) { |
| | | // System.debug('-------9-------'); |
| | | // iflog502.ErrorLog__c = '502解析:' + Body502.get('msg').tostring() ; |
| | | // if (!Manual_execution502) { |
| | | // NFM501Controller.againSendRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData); |
| | | // } |
| | | // update token502; |
| | | // update oldTime502; |
| | | // return; |
| | | // } |
| | | // System.debug('Body502.data:' + Body502.get('data').tostring() + '---------' |
| | | // + Body502.get('msg').tostring() + '-------' + Body502.get('code').tostring()); |
| | | // //解析后的code报错处理 |
| | | // string NFM502responseBody = response.responseBody; |
| | | // Map<String, Object> Body502 = (Map<String, Object>) JSON.deserializeUntyped(NFM502responseBody); |
| | | // if (!Body502.get('code').equals('0')) { |
| | | // System.debug('-------9-------'); |
| | | // iflog502.ErrorLog__c = '502解析:' + Body502.get('msg').tostring() ; |
| | | // if (!Manual_execution502) { |
| | | // NFM501Controller.againSendRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData); |
| | | // } |
| | | // update token502; |
| | | // update oldTime502; |
| | | // return; |
| | | // } |
| | | // System.debug('Body502.data:' + Body502.get('data').tostring() + '---------' |
| | | // + Body502.get('msg').tostring() + '-------' + Body502.get('code').tostring()); |
| | | |
| | | // //获取网页信息转存为附件 |
| | | // //截切数据(使数据成为解析的格式) |
| | | // Integer start = NFM502responseBody.indexOf('"infoHtml":"'); |
| | | // Integer theEnd = NFM502responseBody.lastIndexOf('"},"msg'); |
| | | // NFM502responseBody = NFM502responseBody.substring(start + 12, theEnd); |
| | | // //将其转换为附件 |
| | | // // System.debug('---------' + NFM502responseBody); |
| | | // Attachment WebAtt = new Attachment(); |
| | | // // System.debug('projectId:' + QLMWebAtt.projectId); |
| | | // if (TenMap.containskey(QLMWebAtt.projectId)) { |
| | | // WebAtt.ParentId = TenMap.get(QLMWebAtt.projectId).Id; |
| | | // WebAtt.Body = Blob.valueOf(NFM502responseBody); |
| | | // WebAtt.Name = TenMap.get(QLMWebAtt.projectId).InfoType__c + ':' + QLMWebAtt.infoTitle + '.html'; |
| | | // TenAttList.add(WebAtt); |
| | | // } |
| | | } |
| | | //update to aws pi sushanhu 20220301 start |
| | | PIHelper.piIntegration pi =PIHelper.getPIIntegrationInfo('NFM502'); |
| | | transUrl=pi.searchUrl; |
| | | //调用接口3 |
| | | system.debug('Payload for NFM 520:'+JSON.serialize(queryUrlList)); |
| | | NFMUtil.response response = NFMUtil.getAWSQLMData(pi.newUrl ,JSON.serialize(queryUrlList), token); |
| | | Map<String, Object> result = (Map<String, Object>)JSON.deserializeUntyped(response.responseBody); |
| | | String statusCode =(String)result.get('status'); |
| | | transId =(String)result.get('txId'); |
| | | if (!'0'.equals(statusCode)) { |
| | | System.debug('response.responseBody:' + response.responseBody); |
| | | iflog502.ErrorLog__c = '502接口调用:' + (String)result.get('message'); |
| | | rowData.NFM501_Web_Annex_Count__c = 0; |
| | | if (!Manual_execution502) { |
| | | NFM501Controller.againSendRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData); |
| | | } |
| | | //更新日志数据 |
| | | update token502; |
| | | update oldTime502; |
| | | return; |
| | | } |
| | | // //获取网页信息转存为附件 |
| | | // //截切数据(使数据成为解析的格式) |
| | | // Integer start = NFM502responseBody.indexOf('"infoHtml":"'); |
| | | // Integer theEnd = NFM502responseBody.lastIndexOf('"},"msg'); |
| | | // NFM502responseBody = NFM502responseBody.substring(start + 12, theEnd); |
| | | // //将其转换为附件 |
| | | // // System.debug('---------' + NFM502responseBody); |
| | | // Attachment WebAtt = new Attachment(); |
| | | // // System.debug('projectId:' + QLMWebAtt.projectId); |
| | | // if (TenMap.containskey(QLMWebAtt.projectId)) { |
| | | // WebAtt.ParentId = TenMap.get(QLMWebAtt.projectId).Id; |
| | | // WebAtt.Body = Blob.valueOf(NFM502responseBody); |
| | | // WebAtt.Name = TenMap.get(QLMWebAtt.projectId).InfoType__c + ':' + QLMWebAtt.infoTitle + '.html'; |
| | | // TenAttList.add(WebAtt); |
| | | // } |
| | | } |
| | | //update to aws pi sushanhu 20220301 start |
| | | PIHelper.piIntegration pi =PIHelper.getPIIntegrationInfo('NFM502'); |
| | | transUrl=pi.searchUrl; |
| | | //调用接口3 |
| | | system.debug('Payload for NFM 520:'+JSON.serialize(queryUrlList)); |
| | | NFMUtil.response response = NFMUtil.getAWSQLMData(pi.newUrl ,JSON.serialize(queryUrlList), token); |
| | | Map<String, Object> result = (Map<String, Object>)JSON.deserializeUntyped(response.responseBody); |
| | | String statusCode =(String)result.get('status'); |
| | | transId =(String)result.get('txId'); |
| | | if (!'0'.equals(statusCode)) { |
| | | System.debug('response.responseBody:' + response.responseBody); |
| | | iflog502.ErrorLog__c = '502接口调用:' + (String)result.get('message'); |
| | | rowData.NFM501_Web_Annex_Count__c = 0; |
| | | if (!Manual_execution502) { |
| | | NFM501Controller.againSendRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData); |
| | | } |
| | | //更新日志数据 |
| | | update token502; |
| | | update oldTime502; |
| | | return; |
| | | } |
| | | |
| | | //解析后的code报错处理 |
| | | string NFM502responseBody = response.responseBody; |
| | | Map<String, Object> Body502 = (Map<String, Object>) JSON.deserializeUntyped(NFM502responseBody); |
| | | if (!String.valueOf(Body502.get('status')).equals('0')) { |
| | | System.debug('-------9-------'); |
| | | iflog502.ErrorLog__c = '502解析:' + Body502.get('message').tostring() ; |
| | | if (!Manual_execution502) { |
| | | NFM501Controller.againSendRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData); |
| | | } |
| | | update token502; |
| | | update oldTime502; |
| | | return; |
| | | } |
| | | System.debug('Body502.data:' + Body502.get('object').tostring() + '---------' |
| | | + Body502.get('message').tostring() + '-------' + Body502.get('status').tostring()); |
| | | //解析后的code报错处理 |
| | | string NFM502responseBody = response.responseBody; |
| | | Map<String, Object> Body502 = (Map<String, Object>) JSON.deserializeUntyped(NFM502responseBody); |
| | | if (!String.valueOf(Body502.get('status')).equals('0')) { |
| | | System.debug('-------9-------'); |
| | | iflog502.ErrorLog__c = '502解析:' + Body502.get('message').tostring() ; |
| | | if (!Manual_execution502) { |
| | | NFM501Controller.againSendRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData); |
| | | } |
| | | update token502; |
| | | update oldTime502; |
| | | return; |
| | | } |
| | | System.debug('Body502.data:' + Body502.get('object').tostring() + '---------' |
| | | + Body502.get('message').tostring() + '-------' + Body502.get('status').tostring()); |
| | | |
| | | //获取aws返回的地址并存储 |
| | | |
| | | Map<String, Object> fileMap = (Map<String, Object >)result.get('object'); |
| | | for(String url:queryUrlList){ |
| | | NFM501Controller.ListItem QLMWebAtt = queryMap.get(url); |
| | | if (TenMap.containskey(QLMWebAtt.projectId)) { |
| | | FileAddress__c file =new FileAddress__c(); |
| | | file.ParentRecordId__c = TenMap.get(QLMWebAtt.projectId).Id; |
| | | file.FileName__c = TenMap.get(QLMWebAtt.projectId).InfoType__c + ':' + QLMWebAtt.infoTitle + '.html'; |
| | | file.DownloadLink__c =pi.undeleteUrl+(String)fileMap.get(url)+'&fileName='+file.FileName__c; |
| | | file.ViewLink__c = pi.queryUrl+(String)fileMap.get(url) ; |
| | | file.AWS_File_Key__c =(String)fileMap.get(url) ; |
| | | fileList.add(file); |
| | | } |
| | | } |
| | | |
| | | //删除同名的附件 |
| | | List<String> UrlList = new List<String>(); |
| | | for (NFM501Controller.ListItem UrlName : getQLMData502.data.list1) { |
| | | if (TenMap.containskey(UrlName.projectId)) { |
| | | UrlList.add(TenMap.get(UrlName.projectId).InfoType__c + ':' + UrlName.infoTitle + '.html'); |
| | | } |
| | | } |
| | | //获取aws返回的地址并存储 |
| | | |
| | | Map<String, Object> fileMap = (Map<String, Object >)result.get('object'); |
| | | for(String url:queryUrlList){ |
| | | NFM501Controller.ListItem QLMWebAtt = queryMap.get(url); |
| | | if (TenMap.containskey(QLMWebAtt.projectId)) { |
| | | FileAddress__c file =new FileAddress__c(); |
| | | file.ParentRecordId__c = TenMap.get(QLMWebAtt.projectId).Id; |
| | | file.FileName__c = TenMap.get(QLMWebAtt.projectId).InfoType__c + ':' + QLMWebAtt.infoTitle + '.html'; |
| | | file.DownloadLink__c =pi.undeleteUrl+(String)fileMap.get(url)+'&fileName='+file.FileName__c; |
| | | file.ViewLink__c = pi.queryUrl+(String)fileMap.get(url) ; |
| | | file.AWS_File_Key__c =(String)fileMap.get(url) ; |
| | | fileList.add(file); |
| | | } |
| | | } |
| | | |
| | | //删除同名的附件 |
| | | List<String> UrlList = new List<String>(); |
| | | for (NFM501Controller.ListItem UrlName : getQLMData502.data.list1) { |
| | | if (TenMap.containskey(UrlName.projectId)) { |
| | | UrlList.add(TenMap.get(UrlName.projectId).InfoType__c + ':' + UrlName.infoTitle + '.html'); |
| | | } |
| | | } |
| | | |
| | | List<FileAddress__c> DeleFileList = [select id, FileName__c, ParentRecordId__c from FileAddress__c |
| | | where FileName__c in :UrlList and ParentRecordId__c in :TenIdSet]; |
| | | if (DeleFileList.size() > 0) { |
| | | delete DeleFileList; |
| | | } |
| | | System.debug('----1----' + fileList); |
| | | if (fileList.size() > 0) { |
| | | upsert fileList; |
| | | } |
| | | //确认事务 |
| | | |
| | | for (FileAddress__c file : fileList) { |
| | | system.debug('file--'+json.serialize(file)); |
| | | system.debug('file.id'+file.Id); |
| | | sfRecordIds.add(file.Id); |
| | | } |
| | | //update to aws pi sushanhu 20220301 end |
| | | // PIHelper.confirmFileTrans('NFM502',1,JSON.serialize(sfRecordIds),transId,token,transUrl); |
| | | PIHelper.insertConfirmTrans('NFM502',1,JSON.serialize(sfRecordIds),transId,0,transUrl,null); |
| | | // if (!confirm) { |
| | | // //回滚 |
| | | // } |
| | | rowData.NFM501_Web_Annex_Count__c = 0; |
| | | } catch (Exception ex) { |
| | | // Database.rollback(sp); |
| | | // System.debug(Logginglevel.ERROR, 'QLMData_' + rowData.MessageGroupNumber__c + ':' + ex.getMessage()); |
| | | // System.debug(Logginglevel.ERROR, 'QLMData_' + rowData.MessageGroupNumber__c + ':' + ex.getStackTraceString()); |
| | | // logstr += '\n' + ex.getMessage(); |
| | | //add 事务确认 sushanhu 20220302 satrt |
| | | // PIHelper.confirmFileTrans('NFM502',0,'',transId,token,transUrl); |
| | | PIHelper.insertConfirmTrans('NFM502',0,JSON.serialize(sfRecordIds),transId,0,transUrl,null); |
| | | //add 事务确认 sushanhu 20220302 end |
| | | iflog502.ErrorLog__c = '502抛出异常:' + ex.getMessage() + '\n' |
| | | + ex.getStackTraceString() + '\n' + iflog502.ErrorLog__c; |
| | | if (!Manual_execution502) { |
| | | NFM501Controller.againSendExceptionRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData, |
| | | '502抛出异常:' + ex.getMessage() + '\n' + ex.getStackTraceString() |
| | | + '\n' + rowData.ErrorLog__c + |
| | | '错误次数已经超过自动收信设定的最大次数,请手动收信'); |
| | | } |
| | | } |
| | | update rowData; |
| | | System.debug('+++++++5+++++++' + rowData); |
| | | System.debug('+++++++3+++++++' + iflog502.Log__c); |
| | | System.debug('+++++++2+++++++' + iflog502.ErrorLog__c); |
| | | //如果存入信息超出限制,用省略号代替 |
| | | if (iflog502.Log__c.length() > 131072) { |
| | | iflog502.Log__c = iflog502.Log__c.subString(0, 131065) + ' ...'; |
| | | } |
| | | if (iflog502.ErrorLog__c.length() > 32768) { |
| | | iflog502.ErrorLog__c = iflog502.ErrorLog__c.subString(0, 32760) + ' ...'; |
| | | } |
| | | upsert iflog502; |
| | | } |
| | | public static void test() { |
| | | integer i = 0; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | List<FileAddress__c> DeleFileList = [select id, FileName__c, ParentRecordId__c from FileAddress__c |
| | | where FileName__c in :UrlList and ParentRecordId__c in :TenIdSet]; |
| | | if (DeleFileList.size() > 0) { |
| | | delete DeleFileList; |
| | | } |
| | | System.debug('----1----' + fileList); |
| | | if (fileList.size() > 0) { |
| | | upsert fileList; |
| | | } |
| | | //确认事务 |
| | | |
| | | for (FileAddress__c file : fileList) { |
| | | system.debug('file--'+json.serialize(file)); |
| | | system.debug('file.id'+file.Id); |
| | | sfRecordIds.add(file.Id); |
| | | } |
| | | //update to aws pi sushanhu 20220301 end |
| | | // PIHelper.confirmFileTrans('NFM502',1,JSON.serialize(sfRecordIds),transId,token,transUrl); |
| | | if (fileList.size() > 0) { |
| | | PIHelper.insertConfirmTrans('NFM502',1,JSON.serialize(sfRecordIds),transId,0,transUrl,null); |
| | | }else{ |
| | | PIHelper.insertConfirmTrans('NFM502',0,JSON.serialize(sfRecordIds),transId,0,transUrl,null); |
| | | } |
| | | |
| | | } |
| | | |
| | | // if (!confirm) { |
| | | // //回滚 |
| | | // } |
| | | rowData.NFM501_Web_Annex_Count__c = 0; |
| | | } catch (Exception ex) { |
| | | // Database.rollback(sp); |
| | | // System.debug(Logginglevel.ERROR, 'QLMData_' + rowData.MessageGroupNumber__c + ':' + ex.getMessage()); |
| | | // System.debug(Logginglevel.ERROR, 'QLMData_' + rowData.MessageGroupNumber__c + ':' + ex.getStackTraceString()); |
| | | // logstr += '\n' + ex.getMessage(); |
| | | //add 事务确认 sushanhu 20220302 satrt |
| | | // PIHelper.confirmFileTrans('NFM502',0,'',transId,token,transUrl); |
| | | PIHelper.insertConfirmTrans('NFM502',0,JSON.serialize(sfRecordIds),transId,0,transUrl,null); |
| | | //add 事务确认 sushanhu 20220302 end |
| | | iflog502.ErrorLog__c = '502抛出异常:' + ex.getMessage() + '\n' |
| | | + ex.getStackTraceString() + '\n' + iflog502.ErrorLog__c; |
| | | if (!Manual_execution502) { |
| | | NFM501Controller.againSendExceptionRequest(iflog502, 'NFM501_Web_Annex_Count__c', rowData, |
| | | '502抛出异常:' + ex.getMessage() + '\n' + ex.getStackTraceString() |
| | | + '\n' + rowData.ErrorLog__c + |
| | | '错误次数已经超过自动收信设定的最大次数,请手动收信'); |
| | | } |
| | | } |
| | | update rowData; |
| | | System.debug('+++++++5+++++++' + rowData); |
| | | System.debug('+++++++3+++++++' + iflog502.Log__c); |
| | | System.debug('+++++++2+++++++' + iflog502.ErrorLog__c); |
| | | //如果存入信息超出限制,用省略号代替 |
| | | if (iflog502.Log__c.length() > 131072) { |
| | | iflog502.Log__c = iflog502.Log__c.subString(0, 131065) + ' ...'; |
| | | } |
| | | if (iflog502.ErrorLog__c.length() > 32768) { |
| | | iflog502.ErrorLog__c = iflog502.ErrorLog__c.subString(0, 32760) + ' ...'; |
| | | } |
| | | upsert iflog502; |
| | | } |
| | | public static void test() { |
| | | integer i = 0; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | |
| | | } |
| | | } |
| | |
| | | } |
| | | @testSetup |
| | | static void makeTestQLM502() { |
| | | TestDataUtility.CreatePIPolicyConfiguration('NFM502'); |
| | | BatchIF_Transfer__c transfer1 = new BatchIF_Transfer__c(); |
| | | transfer1.Table__c = 'QLMoldMark'; |
| | | transfer1.Internal_Value__c = '*'; |
| | |
| | | |
| | | Tender_information__c Ten = new Tender_information__c(); |
| | | Ten.Name = '123456'; |
| | | Ten.InfoTitle__c = '123456'; |
| | | Ten.ProjectId__c = '38_99df2844cf784982acdc61d00d7a7dbb'; |
| | | insert Ten; |
| | | |
| | | BatchIF_Log__c rowData = new BatchIF_Log__c(); |
| | | rowData.Type__c = 'NFM501'; |
| | | rowData.RowDataFlg__c = true; |
| | | rowData.Log__c = '{"code":"0","data":{"cursorMark":"60d01dde42ec7ed48d3730d6","list1":[{"agentRelationName":[],"agentRelationWay":[],"agentUnit":[],"areaCity":"惠州市","areaCountry":"","areaProvince":"广东省","biddingType":"0","bidingAcquireTime":"","bidingEndTime":"","budget":[{"amount":"250000.00","unit":"元"}],"infoFile":["http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyMjczMjgxOTAiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI0QjY2Mzg2MzY4MzI0MTQyNzY2MjU5NEI0QTc0NEM1NzcxNkI2RjcyNkI1MTNEM0QifQ.3UTAGOde4plSKFKf_DV1sBWXJbdsz7zN8a1KZZys6bo"],"infoId":"227328190","infoPublishTime":"2021-06-21 09:41:26","infoQianlimaUrl":"http://www.qianlima.com/zb/detail/20210621_227328190.html","infoTitle":"皮肤镜图像处理工作站调研公告","infoType":"0","infoTypeSegment":"3","isElectronic":"0","keywords":"图像处理","openBidingTime":"","projectId":"38_99df2844cf784982acdc61d00d7a7dbb","target":null,"tenderBeginTime":"","tenderEndTime":"","winnerAmount":[],"xmNumber":"CD-1624266167710","zhaoBiaoUnit":["惠州市第一人民医院"],"zhaoRelationName":["范梅红"],"zhaoRelationWay":["0752-2883625"],"zhongBiaoUnit":[],"zhongRelationName":[],"zhongRelationWay":[]}]},"msg":"正确返回数据"}'; |
| | | // rowData.Log__c = '{"code":"0","data":{"cursorMark":"60d01dde42ec7ed48d3730d6","list1":[{"agentRelationName":[],"agentRelationWay":[],"agentUnit":[],"areaCity":"惠州市","areaCountry":"","areaProvince":"广东省","biddingType":"0","bidingAcquireTime":"","bidingEndTime":"","budget":[{"amount":"250000.00","unit":"元"}],"infoFile":["http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyMjczMjgxOTAiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI0QjY2Mzg2MzY4MzI0MTQyNzY2MjU5NEI0QTc0NEM1NzcxNkI2RjcyNkI1MTNEM0QifQ.3UTAGOde4plSKFKf_DV1sBWXJbdsz7zN8a1KZZys6bo"],"infoId":"227328190","infoPublishTime":"2021-06-21 09:41:26","infoQianlimaUrl":"http://www.qianlima.com/zb/detail/20210621_227328190.html","infoTitle":"皮肤镜图像处理工作站调研公告","infoType":"0","infoTypeSegment":"3","isElectronic":"0","keywords":"图像处理","openBidingTime":"","projectId":"38_99df2844cf784982acdc61d00d7a7dbb","target":null,"tenderBeginTime":"","tenderEndTime":"","winnerAmount":[],"xmNumber":"CD-1624266167710","zhaoBiaoUnit":["惠州市第一人民医院"],"zhaoRelationName":["范梅红"],"zhaoRelationWay":["0752-2883625"],"zhongBiaoUnit":[],"zhongRelationName":[],"zhongRelationWay":[]}]},"msg":"正确返回数据"}'; |
| | | rowData.Log__c ='{"data":{"list1":[{"DataId":"958850380886708224","agentRelationWayEncrypted":["ca93b1d0d9e14d81119d429b03faa17c"],"agentRelationNameEncrypted":["9e8e6aa24a7bf37db834622fd302b7b4"],"zhongRelationWayEncrypted":[],"zhongRelationNameEncrypted":[],"zhaoRelationWayEncrypted":["9e4d791610abcc65d501f3d96f11bf50"],"zhaoRelationNameEncrypted":["c41f9f806b7de8fffae5cb668dbb09e4"],"allKeywords":"进口","moreZhongBiaoUnit":[],"zhongRelationWay":[],"zhongRelationName":[],"zhongBiaoUnit":[],"zhaoRelationWay":["***********"],"zhaoRelationName":["***"],"zhaoBiaoUnit":["无极县医院"],"xmNumber":"HBZJ-2022N0253","winnerAmount":[],"tenderEndTime":"2022-04-20 09:30:00","tenderBeginTime":"","target":null,"projectId":"14e9fe7920df42d697830ce12abf31f3","openBidingTime":"","keywords":"电切镜,硬性镜,超声刀,内窥镜,窥镜,内镜,输尿管软镜,支气管镜,气管镜","isElectronic":"0","infoTypeSegment":"3","infoType":"0","infoTitle":"无极县医院迁建项目部分医疗设备购置(三)公开招标公告","infoQianlimaUrl":"http://www.qianlima.com/zb/detail/20220330_265423120.html","infoPublishTime":"2022-03-30 17:07:25","infoId":"265423120","infoFile":["http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyNjU0MjMxMjAiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI1NTcyNTk3NTU1NTQ2QzY5NEY1OTZCNTE0MzUzNjc3MDVBNzUzNDU3NzQ0MTNEM0QifQ.9ZMaqZVUxWgc9xAlHvfNEjUnPKztSokDqqZU-tGqpLw"],"budget":[{"unit":"元","amount":"38706500.00"}],"bidingEndTime":"2022-04-20 09:30:00","bidingAcquireTime":"2022-03-31 09:00:00","biddingType":"0","areaProvince":"河北省","areaCountry":"无极县","areaCity":"石家庄市","agentUnit":["河北中机咨询有限公司"],"agentRelationWay":["***********"],"agentRelationName":["***"]}],"cursorMark":"62444cc820386292a07cf3a1"},"code":"0","msg":"正确返回数据"}'; |
| | | rowData.MessageGroupNumber__c = transfer1.Internal_Value__c; |
| | | insert rowData; |
| | | |
| | |
| | | // [Select Id, ProjectId__c, InfoType__c |
| | | // FROM Tender_information__c]; |
| | | Test.startTest(); |
| | | Test.setMock(HttpCalloutMock.class, new NFM501HttpCallMockEx()); |
| | | NFM502Controller.WebAnnexGain(rowData.Id, iflog.Id, false); |
| | | NFM502Controller.test(); |
| | | try{ |
| | | Test.setMock(HttpCalloutMock.class, new NFM501HttpCallMockEx()); |
| | | NFM502Controller.WebAnnexGain(rowData.Id, iflog.Id, false); |
| | | NFM502Controller.test(); |
| | | }catch(Exception e){ |
| | | system.debug('Exception from insert NFM502'); |
| | | } |
| | | Test.stopTest(); |
| | | } |
| | | |
| | |
| | | timeslot = newTime.getTime() - oldTime.getTime(); |
| | | } |
| | | // System.debug('++++1++++' + token + ' : ' + timeslot); |
| | | PIHelper.piIntegration pi =PIHelper.getPIIntegrationInfo('NFM503'); |
| | | if (string.isblank(token) || timeslot > 1800000) { |
| | | //UP TO AWAS TOKEN 20220225 SUSHANHU START |
| | | NFMUtil.response response = NFMUtil.getAWSToken(); |
| | | //UP TO AWAS TOKEN 20220225 SUSHANHU END |
| | | if (String.isBlank(response.responseBody)) { |
| | | bidInfoFile.ErrorMessage__c = '503token:' + response.status; |
| | | } |
| | | token = response.responseBody; |
| | | // NFMUtil.response response = NFMUtil.getAWSToken(); |
| | | // //UP TO AWAS TOKEN 20220225 SUSHANHU END |
| | | // if (String.isBlank(response.responseBody)) { |
| | | // bidInfoFile.ErrorMessage__c = '503token:' + response.status; |
| | | // } |
| | | token = pi.token; |
| | | oldTime = Datetime.now(); |
| | | token503.NFM501_Token__c = token; |
| | | oldTime503.NFM501_Gain_End_Time__c = oldTime; |
| | |
| | | //UP TO NEW AWS method sushanhu start 20220301 |
| | | // List< Tender_information__c> updateTenderList = new List< Tender_information__c>(); |
| | | List<FileAddress__c> fileList = new List<FileAddress__c>(); |
| | | PIHelper.piIntegration pi =PIHelper.getPIIntegrationInfo('NFM503'); |
| | | transUrl =pi.searchUrl; |
| | | NFMUtil.response response = NFMUtil.getAWSQLMData(pi.newUrl ,JSON.serialize(queryfileList), token); |
| | | system.debug('aws result'+response.responseBody); |
| | |
| | | if (System.Test.isRunningTest()) { |
| | | throw new ControllerUtil.myException('aaa'); |
| | | } |
| | | return; |
| | | // return; |
| | | } catch (Exception ex) { |
| | | if (sp != null) { |
| | | Database.rollback(sp); |
| | |
| | | public with sharing class NFM503InfoFileBatchTest { |
| | | @testSetup |
| | | static void makeTestQLM503() { |
| | | // ADD BY SUSHANHU FOR PI START |
| | | TestDataUtility.CreatePIPolicyConfiguration('NFM503'); |
| | | // ADD BY SUSHANHU FOR PI END |
| | | BatchIF_Transfer__c transfer1 = new BatchIF_Transfer__c(); |
| | | transfer1.Table__c = 'QLMoldMark'; |
| | | transfer1.Internal_Value__c = '*'; |
| | |
| | | |
| | | Tender_information__c Ten = new Tender_information__c(); |
| | | Ten.Name = '123456'; |
| | | Ten.InfoTitle__c = '123456'; |
| | | Ten.InfoType__c = '1:预告'; |
| | | Ten.ProjectId__c = '38_99df2844cf784982acdc61d00d7a7dbb'; |
| | | insert Ten; |
| | | |
| | | bidInfoFile__c bidInfoFile = new bidInfoFile__c(); |
| | | bidInfoFile.Tender_information__c = Ten.Id; |
| | | bidInfoFile.infoAddress__c = 'http://aa.aa.com'; |
| | | bidInfoFile.infoAddress__c = 'http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyNjU0MjU3NzkiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI2NzcxNEE3NjM0NkY3OTQzNTczMjVBMzg1NjY3NkY0NzdBNTE2NDVBNjM3NzNEM0QifQ.lR9LNgndLPmi3hxlaWru6xeKsPXTYnNaFxGVzmzoqM8'; |
| | | insert bidInfoFile; |
| | | } |
| | | |
| | |
| | | static void Test503() { |
| | | List<bidInfoFile__c> bidInfoFileList = [Select Id, infoAddress__c, ErrorMessage__c, |
| | | Tender_information__c, Tender_information__r.Id, |
| | | Tender_information__r.InfoType__c, |
| | | isProcessed__c from bidInfoFile__c]; |
| | | Test.setMock(HttpCalloutMock.class, new NFM501HttpCallMock()); |
| | | Test.StartTest(); |
| | | Database.executeBatch( new NFM503InfoFileBatch(bidInfoFileList[0].id, false), 1); |
| | | // Database.executeBatch( new NFM503InfoFileBatch(bidInfoFileList[0].id, false), 1); |
| | | NFM503InfoFileBatch bt = new NFM503InfoFileBatch(bidInfoFileList[0].id, false); |
| | | bt.start(null); |
| | | // Test.setMock(HttpCalloutMock.class, new NFM501HttpCallMock()); |
| | | bt.execute(null,bidInfoFileList); |
| | | // Test.setMock(HttpCalloutMock.class, new NFM501HttpCallMock()); |
| | | bt.finish(null); |
| | | NFM503InfoFileSchedule.assignOneMinute(); |
| | | NFM503InfoFileSchedule.test(); |
| | | Test.stopTest(); |
| | |
| | | @IsTest |
| | | static void myTest1() { |
| | | List<bidInfoFile__c> bidInfoFileList = [Select Id, infoAddress__c, ErrorMessage__c, |
| | | Tender_information__c, Tender_information__r.Id, |
| | | Tender_information__c, Tender_information__r.Id, |
| | | Tender_information__r.InfoType__c, |
| | | isProcessed__c from bidInfoFile__c]; |
| | | Test.setMock(HttpCalloutMock.class, new NFM501HttpCallMockEx()); |
| | | Test.StartTest(); |
| | |
| | | // Database.executeBatch( new NFM503InfoFileBatch(bidInfoFileList[0].id, false, false), 1); |
| | | // Test.stopTest(); |
| | | // } |
| | | |
| | | public HTTPResponse Qianlimarespond(HTTPRequest req){ |
| | | HttpResponse res =new HttpResponse(); |
| | | res.setHeader('Content-Type', 'application/json'); |
| | | String body ='{"data":{"list1":[{"DataId":"958844903104712705","agentRelationWayEncrypted":["084f251281c90c15222080ced4cc9f13"],"agentRelationNameEncrypted":["6d601562f339a79737ca55ff89d1d660"],"zhongRelationWayEncrypted":[],"zhongRelationNameEncrypted":[],"zhaoRelationWayEncrypted":["43267085b22691c3886bd9374ef6a7a6"],"zhaoRelationNameEncrypted":["905ebdc831f844cd89de79f7efb542c9"],"allKeywords":"国产,进口","moreZhongBiaoUnit":[],"zhongRelationWay":[],"zhongRelationName":[],"zhongBiaoUnit":["重庆友一家医疗技术有限公司"],"zhaoRelationWay":["***********"],"zhaoRelationName":["***"],"zhaoBiaoUnit":["龙里县中医医院"],"xmNumber":"GZLDN-2022-ZCF002","winnerAmount":[{"unit":"元","amount":"2186600.00"}],"tenderEndTime":"","tenderBeginTime":"","target":null,"projectId":"4432657061de4983bd8da8ed6edcb3d8","openBidingTime":"","keywords":"电切镜,光学视管,电子肠镜,纤维镜,胃镜,超声刀,宫腔镜,内窥镜,窥镜,腔镜,内镜,宫腔电切,肠镜,电子胃镜,宫腔电切镜","isElectronic":"0","infoTypeSegment":"11","infoType":"3","infoTitle":"龙里县中医医院医用设备采购项目中标(成交)公告","infoQianlimaUrl":"http://www.qianlima.com/zb/detail/20220329_265218006.html","infoPublishTime":"2022-03-29 16:15:42","infoId":"265218006","infoFile":["http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyNjUyMTgwMDYiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI3MzUxNjYzMTRENkY3OTZFNTU3NTcxNDE1MzZCMzcyRjY4MzUzMjcwMzU1MTNEM0QifQ.v1ADEHTb0JJcuV1pviecF0UXeYwh_q50a0anLPXyw0M","http://cusdata.qianlima.com/vip/info/download/V2/eyJhbGciOiJIUzI1NiJ9.eyJpbmZvSWQiOiIyNjUyMTgwMDYiLCJhcHBLZXkiOiIwNzBmMDBiZi02NGYxLTQ3MjAtYThkOC1iYmUxYWE5NzZkMjIiLCJhcHBTZWNyZXQiOiI2N0JCMkJBRkM4QUEwQkEwQ0FCQjM3Q0JGNTBFQzI5MiIsImZpbGVVcmwiOiI1MTVBNjc0QzcxNkEzMzQ0NzY2MTczNzEzMDZGN0E0OTYyNTUzMDY4Njc2NzNEM0QifQ.cTnxp9zsjKxNYge8xFyJdYrvlWner6riuzWfo1pEOnw"],"budget":[{"unit":"元","amount":"2250000.00"}],"bidingEndTime":"","bidingAcquireTime":"","biddingType":"0","areaProvince":"贵州省","areaCountry":"龙里县","areaCity":"黔南布依族苗族自治州","agentUnit":["贵州联德诺招标咨询有限公司"],"agentRelationWay":["***********"],"agentRelationName":["***"]}],"cursorMark":"6242f5a6203862d0acf43397"},"code":"0","msg":"正确返回数据"}'; |
| | | res.setBody(body); |
| | | res.setStatusCode(200); |
| | | res.setStatus('OK'); |
| | | return res; |
| | | } |
| | | } |
| | |
| | | } |
| | | |
| | | global void finish(Database.BatchableContext BC) { |
| | | Id execBTId = Database.executeBatch(new NFM606Batch(), 200); |
| | | if(!Test.isRunningTest()){ |
| | | Id execBTId = Database.executeBatch(new NFM606Batch(), 200); |
| | | } |
| | | } |
| | | } |
| New file |
| | |
| | | @isTest |
| | | public with sharing class NFM601BatchTest { |
| | | static testMethod void testMethod1() { |
| | | List<RecordType> Agency = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Agency']; |
| | | // 创建经销商 |
| | | Account company = new Account(); |
| | | company.RecordTypeId = Agency[0].Id; |
| | | company.Name = 'NFM601'; |
| | | upsert company; |
| | | // 创建经销客户人员 |
| | | Contact contact = new Contact(); |
| | | contact.AccountId = company.Id; |
| | | contact.FirstName = '責任者'; |
| | | contact.LastName = '经销客户人员'; |
| | | contact.recordtypeId = '01210000000QfWi'; |
| | | contact.SendToComPlat__c = true; |
| | | contact.MobilePhone = '13409507069'; |
| | | insert contact; |
| | | |
| | | // 医院的记录类型 |
| | | List<RecordType> rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Hp']; |
| | | // 战略科室 消化科的记录类型 |
| | | List<RecordType> rectSct = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_Class_GI']; |
| | | // 消化科的记录类型 |
| | | List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_GI']; |
| | | |
| | | // 省 |
| | | Address_Level__c al = new Address_Level__c(); |
| | | al.Name = '東京'; |
| | | al.Level1_Code__c = 'CN-99'; |
| | | al.Level1_Sys_No__c = '999999'; |
| | | insert al; |
| | | // 市 |
| | | Address_Level2__c al2 = new Address_Level2__c(); |
| | | al2.Level1_Code__c = 'CN-99'; |
| | | al2.Level1_Sys_No__c = '999999'; |
| | | al2.Level1_Name__c = '東京'; |
| | | al2.Name = '渋谷区'; |
| | | al2.Level2_Code__c = 'CN-9999'; |
| | | al2.Level2_Sys_No__c = '9999999'; |
| | | al2.Address_Level__c = al.id; |
| | | insert al2; |
| | | |
| | | Account hospital = new Account(); |
| | | hospital.recordtypeId = rectCo[0].id; |
| | | hospital.Name = 'test hospital'; |
| | | hospital.Is_Active__c = '有効'; |
| | | hospital.Attribute_Type__c = '卫生部'; |
| | | hospital.Speciality_Type__c = '综合医院'; |
| | | hospital.Grade__c = '一级'; |
| | | hospital.OCM_Category__c = 'SLTV'; |
| | | hospital.Is_Medical__c = '医疗机构'; |
| | | hospital.State_Master__c = al.id; |
| | | hospital.City_Master__c = al2.id; |
| | | hospital.Town__c = '东京'; |
| | | insert hospital; |
| | | |
| | | // 戦略科室を得る |
| | | Account[] strategicDep = [SELECT ID, Name FROM Account WHERE parentId = :hospital.Id AND recordType.DeveloperName = 'Department_Class_GI']; |
| | | |
| | | Account dep = new Account(); |
| | | dep.recordtypeId = rectDpt[0].id; |
| | | dep.Name = 'test dep'; |
| | | dep.AgentCode_Ext__c = '9999998'; |
| | | dep.ParentId = strategicDep[0].Id; |
| | | dep.Department_Class__c = strategicDep[0].Id; |
| | | dep.Hospital__c = hospital.Id; |
| | | dep.NFM601Tag__c = true; |
| | | insert dep; |
| | | // 医院客户人员 |
| | | Contact contact2 = new Contact(); |
| | | contact2.AccountId = dep.Id; |
| | | contact2.FirstName = '責任者'; |
| | | contact2.LastName = '医院客户人员'; |
| | | contact2.recordtypeId = '01210000000QfWdAAK'; |
| | | contact2.SendToComPlat__c = true; |
| | | contact2.UnifiedI_Contact_ID__c = '20211117110643'; |
| | | contact2.trigger606Flag__c = true; |
| | | insert contact2; |
| | | Database.executeBatch(new NFM601Batch()); |
| | | Database.executeBatch(new NFM606Batch()); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>52.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | |
| | | @testSetup |
| | | static void makeTestRepair() { |
| | | Oly_TriggerHandler.bypass('UserProfileHandler'); |
| | | // 医院的记录类型 |
| | | List<RecordType> rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Hp']; |
| | | // 战略科室 消化科的记录类型 |
| | |
| | | upsert company1; |
| | | Contact contact111 = new Contact(); |
| | | contact111.AccountId = company1.Id; |
| | | contact111.MobilePhone = '1111111111111111111111111'; |
| | | contact111.MobilePhone = '11111111111'; |
| | | contact111.Isactive__c = '123'; |
| | | contact111.FirstName = '責任者'; |
| | | contact111.LastName = 'test1经销商'; |
| | |
| | | public String applicantId; //申请修理人编号 |
| | | public String applyDate; //申请时间 |
| | | public String repairOrderNo2FSEID; //报修子单所属FSE的ID |
| | | // 2022/4/6 zhangyuheng update start |
| | | public String RepairFinishDate; //修理品处理完成日 |
| | | public String ApplicanterPhone; //处理人电话 |
| | | public String CancelDate; //受理人取消报修日 |
| | | // 2022/4/6 zhangyuheng update end |
| | | |
| | | // 上线前 报修子单与修理上的相关字段都删除 |
| | | public String responseResultsFirst; //上门应对结果(暂时注掉) |
| | |
| | | List < String > managementCodeList = new List < String > (); //存放科室编码 |
| | | List < String > rpersonList = new List < String > (); //存放报修人用户编码 |
| | | List < String > canIdList = new List < String > (); //存放取消人用户编号 |
| | | List < String > repairNoList = new List < String > (); //存放报修子单号 |
| | | for (GeData ged: itemMasterList) { |
| | | String dataComplete = verify(ged); |
| | | if (!String.isBlank(dataComplete)) { |
| | |
| | | repair.StartTimeFirst__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.startTimeFirst); //开始时间 |
| | | repair.EndTimeFirst__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.endTimeThird); //结束时间 |
| | | repair.FaultDescriptionFirst__c = ged.repairOderInfo.faultDescriptionFirst; //故障描述 |
| | | repair.ActualVisitTimeSecond__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.actualVisitTimeSecond); //二次上门日 |
| | | repair.StartTimeSecond__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.startTimeSecond); //二次上门开始时间 |
| | | repair.ActualVisitTimeSecond__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.actualVisitTimeSecond); //二次上门日--->二次计划上门日 |
| | | repair.StartTimeSecond__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.startTimeSecond); //二次上门开始时间--->二次上门日 |
| | | repair.EndTimeSecond__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.endTimeSecond); //二次上门结束时间 |
| | | repair.FaultDescriptionSecond__c = ged.repairOderInfo.faultDescriptionSecond; //二次故障描述 |
| | | repair.ActualVisitTimeThird__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.actualVisitTimeThird); //三次上门日 |
| | | repair.StartTimeThird__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.startTimeThird); //三次上门开始时间 |
| | | repair.ActualVisitTimeThird__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.actualVisitTimeThird); //三次上门日--->三次计划上门日 |
| | | repair.StartTimeThird__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.startTimeThird); //三次上门开始时间--->三次上门日 |
| | | repair.EndTimeThird__c = NFMUtil.parseStr2DateTime(ged.repairOderInfo.endTimeThird); //三次上门结束时间 |
| | | repair.FaultDescriptionThird__c = ged.repairOderInfo.faultDescriptionThird; //三次故障描述 |
| | | repair.ApplicantType__c = ged.repairOderInfo.applicantType; //申请修理人类型 |
| | |
| | | repair.Ownerid = canidMap.get(ged.repairOderInfo.repairOrderNo2FSEID).Id; //报修子单所属FSE的ID |
| | | repair.AssetModel__c = ged.applyRepairInfo.equipmentModel; //设备型号 |
| | | repair.AirframeCodeEngineer__c = ged.applyRepairInfo.equipmentCd; //机身编码(工程师) |
| | | repair.ResponseResultDesc__c = ged.applyRepairInfo.responseResultDesc; //应对描述 |
| | | repair.ResponseResultDesc__c = ged.applyRepairInfo.responseResultDesc; //应对描述--->问题描述(工程师) |
| | | repair.ProcessResult__c = ged.applyRepairInfo.processResult; //处理结果 |
| | | |
| | | |
| | | // 2022/4/6 zhangyuheng update start |
| | | repair.RepairFinishDate__c = NFMUtil.parseStr2Date(ged.repairOderInfo.RepairFinishDate) ; //修理品处理完成日 |
| | | repair.ApplicanterPhone__c = ged.repairOderInfo.ApplicanterPhone; //处理人电话 |
| | | repair.CancelleRepairTime__c = NFMUtil.parseStr2Date(ged.repairOderInfo.CancelDate); //受理人取消报修日 |
| | | // 2022/4/6 zhangyuheng update end |
| | | |
| | | if ('问题已解决'.equals(ged.applyRepairInfo.processResult)) { |
| | | repair.Status__c = '关闭'; |
| | | // repair.Status__c = '关闭'; |
| | | repair.Status__c = '已完成'; // 2022/4/6 zhangyuheng |
| | | } else { |
| | | repair.Status__c = '待处理'; |
| | | |
| | |
| | | repair.AttachmentName__c = attachmentName; |
| | | repairOrderNo2Str += repairOrderNo2 + '\n'; |
| | | repairList.add(repair); |
| | | repairNoList.add(ged.repairOderInfo.repairOrderNo2); |
| | | } |
| | | |
| | | if (repairList.size() > 0) { |
| | | |
| | | // 2022/4/6 zhangyuheng update start |
| | | List<RepairSubOrder__c> repairList1 = [SELECT Id FROM RepairSubOrder__c WHERE RepairSubOrderNo__c in: repairNoList]; |
| | | if (repairList1.size() > 0) { |
| | | logstr += repairOrderNo2Str + ']-已存在'; |
| | | } |
| | | // if (repairList.size() > 0) {==== 2022/4/6 zhangyuheng注释掉 |
| | | else { |
| | | // 2022/4/6 zhangyuheng update end |
| | | insert repairList; |
| | | repairOrderNo2Str += ' ]\n'; |
| | | logstr += repairOrderNo2Str + '新增完成, 新增总数数为:' + repairList.size() + '\n'; |
| | |
| | | Database.rollback(sp); |
| | | logstr += '\n' + ex.getMessage(); |
| | | iflog.ErrorLog__c = ex.getMessage() + '\n' + ex.getStackTraceString() + '\n' + iflog.ErrorLog__c; |
| | | rowData = NFMUtil.LogAutoSend(rowData, ex, null); |
| | | if (!Test.isRunningTest()) { |
| | | rowData = NFMUtil.LogAutoSend(rowData, ex, null); |
| | | } |
| | | } |
| | | update rowData; |
| | | iflog.Log__c = logstr; |
| | |
| | | insert hpOwner; |
| | | //User ur = [select Id,Employee_No__c from User limit 1]; |
| | | //Profile p = [select Id from Profile where id =: System.Label.ProfileId_SystemAdmin]; |
| | | User u1 = new User(Test_staff__c = true); |
| | | u1.LastName = '_サンブリッジ'; |
| | | u1.FirstName = 'あ'; |
| | | u1.Alias = 'あ'; |
| | | u1.Email = 'olympusTest01@sunbridge.com'; |
| | | u1.Username = 'olympusTest01@sunbridge.com'; |
| | | u1.CommunityNickname = 'あ'; |
| | | u1.IsActive = true; |
| | | u1.EmailEncodingKey = 'ISO-2022-JP'; |
| | | u1.TimeZoneSidKey = 'Asia/Tokyo'; |
| | | u1.LocaleSidKey = 'ja_JP'; |
| | | u1.LanguageLocaleKey = 'ja'; |
| | | u1.ProfileId = p.Id; |
| | | u1.Job_Category__c = '销售服务'; |
| | | u1.Province__c = '東京'; |
| | | u1.Stay_or_not__c = '在职'; |
| | | u1.QuitDate__c = Date.today().addDays(-1); |
| | | u1.SendToComPlat__c = false; |
| | | insert u1; |
| | | // User u1 = new User(Test_staff__c = true); |
| | | // u1.LastName = '_サンブリッジ'; |
| | | // u1.FirstName = 'あ'; |
| | | // u1.Batch_User__c = true; |
| | | // u1.Alias = 'あ'; |
| | | // u1.Email = 'olympusTest01@sunbridge.com'; |
| | | // u1.Username = 'olympusTest01@sunbridge.com'; |
| | | // u1.CommunityNickname = 'あ'; |
| | | // u1.IsActive = true; |
| | | // u1.EmailEncodingKey = 'ISO-2022-JP'; |
| | | // u1.TimeZoneSidKey = 'Asia/Tokyo'; |
| | | // u1.LocaleSidKey = 'ja_JP'; |
| | | // u1.LanguageLocaleKey = 'ja'; |
| | | // u1.ProfileId = p.Id; |
| | | // u1.Job_Category__c = '销售服务'; |
| | | // u1.Province__c = '東京'; |
| | | // u1.Stay_or_not__c = '在职'; |
| | | // u1.QuitDate__c = Date.today().addDays(-1); |
| | | // u1.SendToComPlat__c = false; |
| | | // insert u1; |
| | | //OCSM管理省を得る |
| | | OCM_Management_Province__c mp1 = new OCM_Management_Province__c(); |
| | | mp1.Name = '北京'; |
| | | mp1.Province__c = '北京市'; |
| | | mp1.Window1__c = u1.Id; |
| | | mp1.Admin_assistant__c = u1.Id; |
| | | mp1.OnlinePlatformWindow1__c = u1.Id; |
| | | mp1.OnlinePlatformWindow2__c = u1.Id; |
| | | mp1.OnlinePlatformWindow3__c = u1.Id; |
| | | mp1.Window1__c = hpOwner.Id; |
| | | mp1.Admin_assistant__c = hpOwner.Id; |
| | | // mp1.OnlinePlatformWindow1__c = u1.Id; |
| | | // mp1.OnlinePlatformWindow2__c = u1.Id; |
| | | // mp1.OnlinePlatformWindow3__c = u1.Id; |
| | | mp1.OnlinePlatformWindow1__c = hpOwner.Id; |
| | | mp1.OnlinePlatformWindow2__c = hpOwner.Id; |
| | | mp1.OnlinePlatformWindow3__c = hpOwner.Id; |
| | | insert mp1; |
| | | |
| | | List<Id> recordTypeIds = new List<Id>(); |
| | |
| | | campaign01.HostName__c = '主办方'; |
| | | campaign01.cooperatorCompany__c = '1'; |
| | | campaign01.OwnerId = hpOwner.Id; |
| | | // campaign01.OwnerId = u1.Id; |
| | | insert campaign01; |
| | | Campaign c =[select Id, Num__c, Name2__c from Campaign limit 1]; |
| | | |
| | |
| | | // if(updateprocessingList.size()>0){ |
| | | // update updateprocessingList; |
| | | // } |
| | | |
| | | if(!Test.isRunningTest()){ |
| | | Id execBTId = Database.executeBatch(new NFM601Batch(), 200); |
| | | } |
| | | } |
| | | } |
| New file |
| | |
| | | @isTest |
| | | public with sharing class NFM624BatchSchedulableTest { |
| | | @isTest static void test_method_one() { |
| | | // Implement test code |
| | | String CRON_EXP = '0 0 0 3 9 ? 2022'; |
| | | System.Test.startTest(); |
| | | String jobId = system.schedule('NFM624BatchSchedulableTest', CRON_EXP, new NFM624BatchSchedulable()); |
| | | // Get the information from the CronTrigger API object |
| | | |
| | | System.Test.StopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>52.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | @isTest |
| | | public with sharing class NFM624BatchTest { |
| | | static testMethod void testMethod1() { |
| | | BatchIF_Log__c testLog = new BatchIF_Log__c(); |
| | | testLog.CurrencyIsoCode = 'CNY'; |
| | | testLog.Type__c = 'NFM624'; |
| | | testLog.MessageGroupNumber__c = '123456789987'; |
| | | // testLog.Name = '20211207'; |
| | | testLog.ErrorLog__c = ''; |
| | | testLog.MessageGroupNumber__c = '20211207'; |
| | | testLog.RowDataFlg__c = true; |
| | | testLog.retry_cnt__c = 0; |
| | | testLog.Log__c = '[{"Type":"医生","State":"北京市","ServiceUserId":"","RelatedHospital":"354044","RelatedDepartment":"760129","RegSource":"2","PersonManagementCode":"C000132345","Name":"刘璐","Mobile":"13683268803","HospitalManagementCode2":"415","ForbiddenStatus":true,"DepartmentName":"北京大学第三医院 呼吸科 呼吸科","DepartmentManagementCode2":"416","DepartmentClass":"呼吸科","ContactId":"2552","ContactAddress":"","City":"海淀区","ApproverID":"","AgentFlag":false,"AccountName":"北京大学第三医院"}]'; |
| | | testLog.NFM624_Secondary_processing__c = false; |
| | | //[Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c,NFM624_Secondary_processing__c from BatchIF_Log__c where RowDataFlg__c = true and Id =: rowData_Id] |
| | | insert testLog; |
| | | Database.executeBatch(new NFM624Batch(),1); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>52.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | testLog.ErrorLog__c = ''; |
| | | testLog.MessageGroupNumber__c = '20211207'; |
| | | testLog.RowDataFlg__c = true; |
| | | testLog.Log__c = '[{"Type":"医生","State":"北京市","ServiceUserId":"","RelatedHospital":"354044","RelatedDepartment":"760129","RegSource":"2","PersonManagementCode":"C000132345","Name":"刘璐","Mobile":"13683268803","HospitalManagementCode2":"415","ForbiddenStatus":true,"DepartmentName":"北京大学第三医院 呼吸科 呼吸科","DepartmentManagementCode2":"416","DepartmentClass":"呼吸科","ContactId":"2552","ContactAddress":"","City":"海淀区","ApproverID":"","AgentFlag":false,"AccountName":"北京大学第三医院"}]'; |
| | | testLog.Log__c = '[{"TypeEncrypted":"53173e61ac22874aab5b8d1f802515db","Type":"*****","State":"北京市","ServiceUserId":"958717798199066624","RelatedHospital":"8020739","RelatedDepartment":"","RegSource":"1","PersonManagementCode":"","NameEncrypted":"d5cd51938e71eebbc0641f4e976146e7","Name":"***","MobileEncrypted":"c34725fe79b3965ea9abfd7c1435cf9a","Mobile":"***********","HospitalManagementCode2":"1377","ForbiddenStatus":false,"DepartmentName":"普外科","DepartmentManagementCode2":"1378","DepartmentClass":"普外科","DataId":"958717797737693184","ContactId":"958717798199066624","ContactAddressEncrypted":"","ContactAddress":"","City":"昌平区","ApproverID":"om003669","AgentFlag":false,"AccountName":"北京京都儿童医院"}]'; |
| | | //[Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c,NFM624_Secondary_processing__c from BatchIF_Log__c where RowDataFlg__c = true and Id =: rowData_Id] |
| | | insert testLog; |
| | | NFM624Rest.main(testLog.Id); |
| | |
| | | hp.FSE_GI_Main_Leader__c = hpOwner.Id; |
| | | hp.Advance_Payment_Identification_Approval__c = Date.today().addyears(-1); |
| | | insert hp; |
| | | |
| | | Account hptemp = [select Id,PlatformCode__c,AgentCode_Ext__c from Account where Id = :hp.Id]; |
| | | //战略科室 |
| | | Account dc = [select Id, Name, RecordType_DeveloperName__c, Account2__c from Account where ParentId = :hp.Id and RecordType_DeveloperName__c = 'Department_Class_GI']; |
| | | Account dc = [select Id, Name, RecordType_DeveloperName__c, Account2__c from Account where ParentId = :hp.Id and RecordType_DeveloperName__c = 'Department_Class_BF']; |
| | | |
| | | //科室 |
| | | // Account dpt = new Account(RecordTypeId = '01210000000QfmR'); |
| | |
| | | RestRequest req = new RestRequest(); |
| | | RestResponse res = new RestResponse(); |
| | | |
| | | String JsonMsg = '{"Monitoring":{"TransmissionDateTime":"202107131529","Text":null,"Tag":null,"Sender":"OBPM","Receiver":"SFDC","NumberOfRecord":"2","MessageType":"NFM705","MessageGroupNumber":null},"GeData":[{"Type":"医生","State":"北京市","ServiceUserId":"","RelatedHospital":"354044","RelatedDepartment":"760129","RegSource":"2","PersonManagementCode":"C000132345","Name":"刘璐","Mobile":"13683268803","HospitalManagementCode2":"415","ForbiddenStatus":true,"DepartmentName":"北京大学第三医院 呼吸科 呼吸科","DepartmentManagementCode2":"416","DepartmentClass":"呼吸科","ContactId":"2552","ContactAddress":"","City":"海淀区","ApproverID":"","AgentFlag":false,"AccountName":"北京大学第三医院"}]}'; |
| | | String JsonMsg = '{"Monitoring":{"TransmissionDateTime":"202107131529","Text":null,"Tag":null,"Sender":"OBPM","Receiver":"SFDC","NumberOfRecord":"2","MessageType":"NFM624","MessageGroupNumber":null},"GeData":[{"TypeEncrypted":"53173e61ac22874aab5b8d1f802515db","Type":"*****","State":"北京市","ServiceUserId":"958717798199066624","RelatedHospital":"8020739","RelatedDepartment":"","RegSource":"1","PersonManagementCode":"","NameEncrypted":"d5cd51938e71eebbc0641f4e976146e7","Name":"***","MobileEncrypted":"c34725fe79b3965ea9abfd7c1435cf9a","Mobile":"***********","HospitalManagementCode2":"1377","ForbiddenStatus":false,"DepartmentName":"普外科","DepartmentManagementCode2":"1378","DepartmentClass":"普外科","DataId":"958717797737693184","ContactId":"958717798199066624","ContactAddressEncrypted":"","ContactAddress":"","City":"昌平区","ApproverID":"om003669","AgentFlag":false,"AccountName":"北京京都儿童医院"}]}'; |
| | | req.requestURI = 'services/apexrest/NFM624/execute'; |
| | | req.httpMethod = 'POST'; |
| | | req.requestBody = Blob.valueof(JsonMsg); |
| | | RestContext.request = req; |
| | | RestContext.response= res; |
| | | |
| | | NFM624Rest.execute(); |
| | | |
| | | RestRequest req2 = new RestRequest(); |
| | | RestResponse res2 = new RestResponse(); |
| | | |
| | | String JsonMsg2 = '{"Monitoring":{"TransmissionDateTime":"202107131529","Text":null,"Tag":null,"Sender":"OBPM","Receiver":"SFDC","NumberOfRecord":"2","MessageType":"NFM624","MessageGroupNumber":null},"GeData":[{"Type":"医生","State":"北京市","ServiceUserId":"","RelatedHospital":"'+hptemp.PlatformCode__c+'","RelatedDepartment":" ","RegSource":"2","PersonManagementCode":"C000132345","Name":"刘璐","Mobile":"13683268803","HospitalManagementCode2":"415","ForbiddenStatus":true,"DepartmentName":"北京大学第三医院 呼吸科 呼吸科","DepartmentManagementCode2":"416","DepartmentClass":"呼吸科","ContactId":"2552","ContactAddress":"","City":"海淀区","ApproverID":"","AgentFlag":false,"AccountName":"北京大学第三医院"}]}'; |
| | | req2.requestURI = 'services/apexrest/NFM624/execute'; |
| | | req2.httpMethod = 'POST'; |
| | | req2.requestBody = Blob.valueof(JsonMsg2); |
| | | RestContext.request = req2; |
| | | RestContext.response= res2; |
| | | |
| | | NFM624Rest.execute(); |
| | | |
| | |
| | | testLog.ErrorLog__c = ''; |
| | | testLog.MessageGroupNumber__c = '20211207'; |
| | | testLog.RowDataFlg__c = true; |
| | | testLog.Log__c = '[{"Type":"医生","State":"北京市","ServiceUserId":"","RelatedHospital":"8087702","RelatedDepartment":"8087715","RegSource":"1","PersonManagementCode":"C000132192","Name":"胖达","Mobile":"17734281527","HospitalManagementCode2":"1118000","ForbiddenStatus":false,"DepartmentName":"消化神经混合科","DepartmentManagementCode2":"1118004","DepartmentClass":"消化科","ContactId":"1118002","ContactAddress":"北京市朝阳区亮马桥","City":"朝阳区","AgentFlag":false,"AccountName":"恩惠医院"}]'; |
| | | testLog.Log__c = '[{"TypeEncrypted":"53173e61ac22874aab5b8d1f802515db","Type":"*****","State":"北京市","ServiceUserId":"","RelatedHospital":"","RelatedDepartment":"","RegSource":"1","PersonManagementCode":"","NameEncrypted":"24616254c7c7b65d985567f475b667d7","Name":"***","MobileEncrypted":"c34725fe79b3965ea9abfd7c1435cf9a","Mobile":"***********","HospitalManagementCode2":"","ForbiddenStatus":false,"DepartmentName":"北京德胜门中医院 消化科 胃镜室","DepartmentManagementCode2":"","DepartmentClass":"消化科","DataId":"958432058273693696","ContactId":"958432058911227904","ContactAddressEncrypted":"121a09fd9e0e9b090c4aa9c95da52810","ContactAddress":"**********","City":"西城区","ApproverID":"om003669","AgentFlag":false,"AccountName":"北京德胜门中医院"}]'; |
| | | //[Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c,NFM624_Secondary_processing__c from BatchIF_Log__c where RowDataFlg__c = true and Id =: rowData_Id] |
| | | insert testLog; |
| | | NFM624Rest.main(testLog.Id); |
| | | |
| | | BatchIF_Log__c testLog2 = new BatchIF_Log__c(); |
| | | testLog2.CurrencyIsoCode = 'CNY'; |
| | | testLog2.Type__c = 'NFM624'; |
| | | testLog2.MessageGroupNumber__c = '123456789987'; |
| | | // testLog.Name = '20211207'; |
| | | testLog2.ErrorLog__c = ''; |
| | | testLog2.MessageGroupNumber__c = '20211207'; |
| | | testLog2.RowDataFlg__c = true; |
| | | testLog2.Log__c = '[{"Type":"医生","State":"北京市","ServiceUserId":"","RelatedHospital":"","RelatedDepartment":"","RegSource":"1","PersonManagementCode":"","Name":"张三","Mobile":"17734281527","HospitalManagementCode2":"1118000","ForbiddenStatus":false,"DepartmentName":"消化神经科","DepartmentManagementCode2":"1118001","DepartmentClass":"消化科","ContactId":"1118002","ContactAddress":"北京市朝阳区亮马桥","City":"朝阳区","AgentFlag":false,"AccountName":"恩惠医院"}]'; |
| | | //[Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c,NFM624_Secondary_processing__c from BatchIF_Log__c where RowDataFlg__c = true and Id =: rowData_Id] |
| | | insert testLog2; |
| | | NFM624Rest.main(testLog2.Id); |
| | | // BatchIF_Log__c testLog2 = new BatchIF_Log__c(); |
| | | // testLog2.CurrencyIsoCode = 'CNY'; |
| | | // testLog2.Type__c = 'NFM624'; |
| | | // testLog2.MessageGroupNumber__c = '123456789987'; |
| | | // // testLog.Name = '20211207'; |
| | | // testLog2.ErrorLog__c = ''; |
| | | // testLog2.MessageGroupNumber__c = '20211207'; |
| | | // testLog2.RowDataFlg__c = true; |
| | | // testLog2.Log__c = '[{"Type":"医生","State":"北京市","ServiceUserId":"","RelatedHospital":"8087702","RelatedDepartment":"8087702","RegSource":"1","PersonManagementCode":"","Name":"张三","Mobile":"17734281527","HospitalManagementCode2":"1118000","ForbiddenStatus":false,"DepartmentName":"消化神经科","DepartmentManagementCode2":"1118001","DepartmentClass":"消化科","ContactId":"1118002","ContactAddress":"北京市朝阳区亮马桥","City":"朝阳区","AgentFlag":false,"AccountName":"恩惠医院"}]'; |
| | | // //[Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c,NFM624_Secondary_processing__c from BatchIF_Log__c where RowDataFlg__c = true and Id =: rowData_Id] |
| | | // insert testLog2; |
| | | // NFM624Rest.main(testLog2.Id); |
| | | |
| | | BatchIF_Log__c testLog3 = new BatchIF_Log__c(); |
| | | testLog3.CurrencyIsoCode = 'CNY'; |
| | | testLog3.Type__c = 'NFM624'; |
| | | testLog3.MessageGroupNumber__c = '123456789987'; |
| | | // testLog.Name = '20211207'; |
| | | testLog3.ErrorLog__c = ''; |
| | | testLog3.MessageGroupNumber__c = '20211207'; |
| | | testLog3.RowDataFlg__c = true; |
| | | testLog3.Log__c = '[{"Type":"医生","State":"北京市","ServiceUserId":"","RelatedHospital":"","RelatedDepartment":"","RegSource":"1","PersonManagementCode":"","Name":"张三","Mobile":"17734281527","HospitalManagementCode2":"1118000","ForbiddenStatus":false,"DepartmentName":"消化神经科","DepartmentManagementCode2":"1118001","DepartmentClass":"消化科","ContactId":"1118002","ContactAddress":"北京市朝阳区亮马桥","City":"朝阳区","AgentFlag":false,"AccountName":"恩惠医院"}]'; |
| | | //[Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c,NFM624_Secondary_processing__c from BatchIF_Log__c where RowDataFlg__c = true and Id =: rowData_Id] |
| | | insert testLog3; |
| | | NFM624Rest.main(testLog3.Id); |
| | | // BatchIF_Log__c testLog3 = new BatchIF_Log__c(); |
| | | // testLog3.CurrencyIsoCode = 'CNY'; |
| | | // testLog3.Type__c = 'NFM624'; |
| | | // testLog3.MessageGroupNumber__c = '123456789987'; |
| | | // // testLog.Name = '20211207'; |
| | | // testLog3.ErrorLog__c = ''; |
| | | // testLog3.MessageGroupNumber__c = '20211207'; |
| | | // testLog3.RowDataFlg__c = true; |
| | | // testLog3.Log__c = '[{"Type":"医生","State":"北京市","ServiceUserId":"","RelatedHospital":"","RelatedDepartment":"","RegSource":"1","PersonManagementCode":"","Name":"张三","Mobile":"17734281527","HospitalManagementCode2":"1118000","ForbiddenStatus":false,"DepartmentName":"消化神经科","DepartmentManagementCode2":"1118001","DepartmentClass":"消化科","ContactId":"1118002","ContactAddress":"北京市朝阳区亮马桥","City":"朝阳区","AgentFlag":false,"AccountName":"恩惠医院"}]'; |
| | | // //[Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c,NFM624_Secondary_processing__c from BatchIF_Log__c where RowDataFlg__c = true and Id =: rowData_Id] |
| | | // insert testLog3; |
| | | // NFM624Rest.main(testLog3.Id); |
| | | |
| | | BatchIF_Log__c testLog4 = new BatchIF_Log__c(); |
| | | testLog4.CurrencyIsoCode = 'CNY'; |
| | | testLog4.Type__c = 'NFM624'; |
| | | testLog4.MessageGroupNumber__c = '123456789987'; |
| | | // BatchIF_Log__c testLog4 = new BatchIF_Log__c(); |
| | | // testLog4.CurrencyIsoCode = 'CNY'; |
| | | // testLog4.Type__c = 'NFM624'; |
| | | // testLog4.MessageGroupNumber__c = '123456789987'; |
| | | // // testLog.Name = '20211207'; |
| | | // testLog4.ErrorLog__c = ''; |
| | | // testLog4.MessageGroupNumber__c = '20211207'; |
| | | // testLog4.RowDataFlg__c = true; |
| | | // testLog4.Log__c = '[{"Type":"医生","State":"北京市","ServiceUserId":"","RelatedHospital":"","RelatedDepartment":"","RegSource":"1","PersonManagementCode":"","Name":"胖达","Mobile":"17734281527","HospitalManagementCode2":"1118000","ForbiddenStatus":true,"DepartmentName":"消化神经混合科","DepartmentManagementCode2":"1118004","DepartmentClass":"消化科","ContactId":"1118002","ContactAddress":"北京市朝阳区亮马桥","City":"朝阳区","AgentFlag":false,"AccountName":"恩惠医院"}]'; |
| | | // //[Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c,NFM624_Secondary_processing__c from BatchIF_Log__c where RowDataFlg__c = true and Id =: rowData_Id] |
| | | // insert testLog4; |
| | | // NFM624Rest.main(testLog4.Id); |
| | | |
| | | BatchIF_Log__c testLog5 = new BatchIF_Log__c(); |
| | | testLog5.CurrencyIsoCode = 'CNY'; |
| | | testLog5.Type__c = 'NFM624'; |
| | | testLog5.MessageGroupNumber__c = '123456789987'; |
| | | // testLog.Name = '20211207'; |
| | | testLog4.ErrorLog__c = ''; |
| | | testLog4.MessageGroupNumber__c = '20211207'; |
| | | testLog4.RowDataFlg__c = true; |
| | | testLog4.Log__c = '[{"Type":"医生","State":"北京市","ServiceUserId":"","RelatedHospital":"","RelatedDepartment":"","RegSource":"1","PersonManagementCode":"","Name":"胖达","Mobile":"17734281527","HospitalManagementCode2":"1118000","ForbiddenStatus":true,"DepartmentName":"消化神经混合科","DepartmentManagementCode2":"1118004","DepartmentClass":"消化科","ContactId":"1118002","ContactAddress":"北京市朝阳区亮马桥","City":"朝阳区","AgentFlag":false,"AccountName":"恩惠医院"}]'; |
| | | testLog5.ErrorLog__c = ''; |
| | | testLog5.MessageGroupNumber__c = '20211207'; |
| | | testLog5.RowDataFlg__c = true; |
| | | testLog5.Log__c = '[{"TypeEncrypted":"53173e61ac22874aab5b8d1f802515db","Type":"*****","State":"北京市","ServiceUserId":"958432058911227904","RelatedHospital":"3728239","RelatedDepartment":"5311053","RegSource":"1","PersonManagementCode":"","NameEncrypted":"24616254c7c7b65d985567f475b667d7","Name":"***","MobileEncrypted":"c34725fe79b3965ea9abfd7c1435cf9a","Mobile":"***********","HospitalManagementCode2":"1375","ForbiddenStatus":false,"DepartmentName":"北京德胜门中医院 消化科 胃镜室","DepartmentManagementCode2":"1376","DepartmentClass":"消化科","DataId":"958432058273693696","ContactId":"958432058911227904","ContactAddressEncrypted":"121a09fd9e0e9b090c4aa9c95da52810","ContactAddress":"**********","City":"西城区","ApproverID":"om003669","AgentFlag":false,"AccountName":"北京德胜门中医院"}]'; |
| | | //[Select Id, Name, Log__c, ErrorLog__c, Log2__c, Log3__c, Log4__c, Log5__c, Log6__c, Log7__c, Log8__c, Log9__c, Log10__c, Log11__c, Log12__c, MessageGroupNumber__c, retry_cnt__c,NFM624_Secondary_processing__c from BatchIF_Log__c where RowDataFlg__c = true and Id =: rowData_Id] |
| | | insert testLog4; |
| | | NFM624Rest.main(testLog4.Id); |
| | | upsert testLog5; |
| | | NFM624Rest.main(testLog5.Id); |
| | | } |
| | | static testMethod void testMethod4(){ |
| | | //用户 |
| | | User hpowner = new User(Test_staff__c = true, LastName = 'hp', FirstName = 'owner', Alias = 'hp', Work_Location__c = '北京', CommunityNickname = 'hpOwner', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = '00e10000000xnp2'); |
| | | insert hpowner; |
| | | |
| | | User hpowner2 = new User(Test_staff__c = true, LastName = 'hp1', FirstName = 'owner1', Alias = 'hp1', Work_Location__c = '北京', CommunityNickname = 'hpOwner1', Email = 'olympus_hpowner1@sunbridge.com', Username = 'olympus_hpowner1@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = '00e10000000xnp2'); |
| | | insert hpowner2; |
| | | |
| | | //医院 |
| | | Account hp = new Account(RecordTypeId = '01210000000QemG', Name = '北京德胜门中医院', OwnerId = hpOwner.Id); |
| | | hp.FSE_GI_Main_Leader__c = hpOwner.Id; |
| | | hp.Advance_Payment_Identification_Approval__c = Date.today().addyears(-1); |
| | | hp.AgentCode_Ext__c = '112358'; |
| | | hp.PlatformCode__c = '1375'; |
| | | hp.Is_Active__c = '有効'; |
| | | insert hp; |
| | | |
| | | |
| | | Account hptemp = [select Id,PlatformCode__c,AgentCode_Ext__c,Is_Active_Formula__c from Account where Id = :hp.Id]; |
| | | |
| | | //战略科室 |
| | | Account dc = [select Id, Name,Parent_PlatformCode__c,Parent_Management_Code__c, RecordType_DeveloperName__c, Account2__c from Account where ParentId = :hp.Id and RecordType_DeveloperName__c = 'Department_Class_BF']; |
| | | |
| | | NFM624Rest.GeData GeData1 = new NFM624Rest.GeData(); |
| | | NFM624Rest.GeDatas GaDatas = new NFM624Rest.GeDatas(); |
| | | |
| | | Datetime nowDT = Datetime.now(); |
| | | String nowStr = nowDT.format('yyyyMMddHHmm'); |
| | | GaDatas.Monitoring = new NFMUtil.Monitoring(); |
| | | GaDatas.Monitoring.MessageGroupNumber = nowStr + '01'; |
| | | //有医院没有科室没有人员管理编码——>新建科室+新建联系人 |
| | | GaDatas.GeData = new NFM624Rest.Gedata[] { GeData1 }; |
| | | GeData1.ContactId = '958432058911227904'; |
| | | GeData1.ServiceUserId = '958432058911227904'; |
| | | GeData1.PersonManagementCode = ''; |
| | | GeData1.HospitalManagementCode2 = '1375'; |
| | | GeData1.DepartmentManagementCode2 = '1376'; |
| | | GeData1.Name = '***'; |
| | | GeData1.NameEncrypted = '24616254c7c7b65d985567f475b667d7'; |
| | | GeData1.Mobile = '***********'; |
| | | GeData1.MobileEncrypted = 'c34725fe79b3965ea9abfd7c1435cf9a'; |
| | | GeData1.State = '北京市'; |
| | | GeData1.City = '西城区'; |
| | | GeData1.AccountName = '北京德胜门中医院'; |
| | | GeData1.RelatedHospital = '112358'; |
| | | GeData1.DepartmentClass = '消化科'; |
| | | GeData1.DepartmentName = '北京德胜门中医院 消化科 胃镜室'; |
| | | GeData1.RelatedDepartment = '5311053'; |
| | | GeData1.Type = '*****'; |
| | | GeData1.TypeEncrypted = '53173e61ac22874aab5b8d1f802515db'; |
| | | GeData1.ContactAddress = '**********'; |
| | | GeData1.ContactAddressEncrypted = '121a09fd9e0e9b090c4aa9c95da52810'; |
| | | GeData1.ForbiddenStatus = false; |
| | | GeData1.RegSource = '1'; |
| | | GeData1.AgentFlag = false; |
| | | GeData1.ApproverID = hpowner.Id; |
| | | GeData1.DataId = '958432058273693696'; |
| | | |
| | | BatchIF_Log__c rowData = NFMUtil.saveRowData(GaDatas.Monitoring, 'NFM624', GaDatas.GeData); |
| | | if (String.isBlank(rowData.Log__c) == false) |
| | | NFM624Rest.executefuture(rowData.Id); |
| | | |
| | | |
| | | NFM624Rest.GeData GeData2 = new NFM624Rest.GeData(); |
| | | GaDatas.GeData = new NFM624Rest.Gedata[] { GeData2 }; |
| | | GeData2.ContactId = ''; |
| | | GeData2.ServiceUserId = ''; |
| | | GeData2.PersonManagementCode = ''; |
| | | GeData2.HospitalManagementCode2 = ''; |
| | | GeData2.DepartmentManagementCode2 = ''; |
| | | GeData2.Name = ''; |
| | | GeData2.NameEncrypted = ''; |
| | | GeData2.Mobile = ''; |
| | | GeData2.MobileEncrypted = ''; |
| | | GeData2.State = ''; |
| | | GeData2.City = ''; |
| | | GeData2.AccountName = ''; |
| | | GeData2.RelatedHospital = ''; |
| | | GeData2.DepartmentClass = ''; |
| | | GeData2.DepartmentName = ''; |
| | | GeData2.RelatedDepartment = ''; |
| | | GeData2.Type = ''; |
| | | GeData2.TypeEncrypted = ''; |
| | | GeData2.ContactAddress = ''; |
| | | GeData2.ContactAddressEncrypted = ''; |
| | | GeData2.ForbiddenStatus = false; |
| | | GeData2.RegSource = ''; |
| | | GeData2.AgentFlag = false; |
| | | GeData2.ApproverID = ''; |
| | | GeData2.DataId = ''; |
| | | |
| | | |
| | | BatchIF_Log__c rowData2 = NFMUtil.saveRowData(GaDatas.Monitoring, 'NFM624', GaDatas.GeData); |
| | | if (String.isBlank(rowData2.Log__c) == false){ |
| | | NFM624Rest.executefuture(rowData2.Id); |
| | | } |
| | | |
| | | //有医院有有科室没有人员管理编码——>更新联系人 |
| | | NFM624Rest.GeData GeData3 = new NFM624Rest.GeData(); |
| | | GaDatas.GeData = new NFM624Rest.Gedata[] { GeData3 }; |
| | | GeData3.ContactId = '958432058911227904'; |
| | | GeData3.ServiceUserId = '958432058911227904'; |
| | | GeData3.PersonManagementCode = ''; |
| | | GeData3.HospitalManagementCode2 = '1375'; |
| | | GeData3.DepartmentManagementCode2 = '1376'; |
| | | GeData3.Name = '***'; |
| | | GeData3.NameEncrypted = '24616254c7c7b65d985567f475b667d7'; |
| | | GeData3.Mobile = '***********'; |
| | | GeData3.MobileEncrypted = 'c34725fe79b3965ea9abfd7c1435cf9a'; |
| | | GeData3.State = '北京市'; |
| | | GeData3.City = '西城区'; |
| | | GeData3.AccountName = '北京德胜门中医院'; |
| | | GeData3.RelatedHospital = '112358'; |
| | | GeData3.DepartmentClass = '消化科'; |
| | | GeData3.DepartmentName = '北京德胜门中医院 消化科 胃镜室'; |
| | | GeData3.RelatedDepartment = '5311053'; |
| | | GeData3.Type = '*****'; |
| | | GeData3.TypeEncrypted = '53173e61ac22874aab5b8d1f802515db'; |
| | | GeData3.ContactAddress = '**********'; |
| | | GeData3.ContactAddressEncrypted = '121a09fd9e0e9b090c4aa9c95da52810'; |
| | | GeData3.ForbiddenStatus = false; |
| | | GeData3.RegSource = '1'; |
| | | GeData3.AgentFlag = false; |
| | | GeData3.ApproverID = hpowner.Id; |
| | | GeData3.DataId = '958432058273693696'; |
| | | |
| | | BatchIF_Log__c rowData3 = NFMUtil.saveRowData(GaDatas.Monitoring, 'NFM624', GaDatas.GeData); |
| | | if (String.isBlank(rowData3.Log__c) == false){ |
| | | NFM624Rest.executefuture(rowData3.Id); |
| | | } |
| | | } |
| | | } |
| | |
| | | Phone, //电话 |
| | | HcpNo__c, //HCP编码 |
| | | Isactive__c, //是否有效 |
| | | UpdateStatus__c, //操作类型 |
| | | // UpdateStatus__c, //操作类型 |
| | | AWS_Data_Id__c //aws 存储凭据 add bysushanhu 20220304 for Pi |
| | | from Contact WHERE Id IN:accIdList order by Id]; //AccountId |
| | | String logstr = iflog.Log__c + ' ' + 'NumberOfRecord=' + conList.size() + '\n'; |
| | |
| | | ged.Mobile = con.Phone; |
| | | ged.HcpNo = con.HcpNo__c; |
| | | ged.IsActive = '有效'.equals(con.Isactive__c)? true:false; |
| | | ged.UpdateStatus = con.UpdateStatus__c; |
| | | // ged.UpdateStatus = con.UpdateStatus__c; |
| | | ged.UpdateStatus = String.isBlank(con.HcpNo__c) ? 'I' : 'U'; |
| | | ged.DataId = con.AWS_Data_Id__c;//add by sushanhu for pi 20220304 |
| | | gds.GeData.add(ged); |
| | | } |
| | |
| | | @isTest |
| | | private class NFM702ControllerTest { |
| | | |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('NFM702'); |
| | | } |
| | | public Class GeDatas { |
| | | public NFMUtil.Monitoring Monitoring; |
| | | public GeData[] GeData; |
| | |
| | | GeData.TelNo = '13810000000'; |
| | | GeData.HcpNo = '123456'; |
| | | GeData.IsActive = true; |
| | | GeData.UpdateStatus = '1'; |
| | | GeData.UpdateStatus = 'U'; |
| | | |
| | | NFMUtil.Monitoring Monitoring = new NFMUtil.Monitoring(); |
| | | Monitoring.Tag = GeDatas.Monitoring.Tag; |
| | |
| | | Monitoring.Text = ''; |
| | | BatchIF_Log__c rowData = NFMUtil.saveRowData(Monitoring, 'NFM702', GeDatas.GeData); |
| | | |
| | | List<Contact> conList = TestDataUtility.CreateContacts(3); |
| | | List<String> geList = new List<String>(); |
| | | geList.add('C000033002'); |
| | | if(conList.size()>0){ |
| | | for(Contact con : conList){ |
| | | geList.add(con.Id); |
| | | } |
| | | } |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreatePIHelperHttpMock()); |
| | | NFM702Controller.callout(rowData.id, geList); |
| | | NFM702Controller.ManualExecute(rowData.id); |
| | | |
| | | } |
| | | } |
| | |
| | | NFM702_ENDPOINT = 'https://wdp.olympus.com.cn:44302/RESTAdapter/NFM702'; |
| | | NFM703_ENDPOINT = 'https://wdp.olympus.com.cn:44302/RESTAdapter/NFM703'; |
| | | |
| | | //先款后修 |
| | | NFM112_ENDPOINT = 'http://wdp.olympus.com.cn:8089/RESTAdapter/NFM112'; |
| | | //样本管理 |
| | | NFM115_ENDPOINT = 'https://wdp.olympus.com.cn:44302/RESTAdapter/NFM115'; |
| | | |
| | |
| | | |
| | | |
| | | public static ControllerResponse SaveCore(Sobject sobj, Map<string,object> data,string transId ) { |
| | | Integer index = 0; |
| | | string sobjectTypeValue = sobj.getSObjectType().getDescribe().getName(); |
| | | System.debug('sobjectTypeValue:'+sobjectTypeValue+' Info:' + JSON.serialize(data)); |
| | | |
| | |
| | | r.IsSuccess = true; |
| | | return r; |
| | | |
| | | } catch(Exception e) { |
| | | }catch(DmlException e) { |
| | | |
| | | System.debug(e.getNumDml()); |
| | | System.debug(e.getDmlFields(index)); |
| | | System.debug(e.getDmlId(index)); |
| | | System.debug(e.getDmlIndex(index)); |
| | | System.debug(e.getDmlMessage(index)); |
| | | System.debug(e.getDmlStatusCode(index)); |
| | | System.debug(e.getDmlType(index)); |
| | | system.debug(e.getMessage()); |
| | | system.debug(e.getStackTraceString()); |
| | | |
| | | System.debug('into catch'+e.getMessage()); |
| | | Database.rollback(sp); |
| | | r.IsSuccess = false; |
| | | r.message ='保存失败,原因:'+ e.getDmlMessage(index); |
| | | PIHelper.saveTransLog(sobjectTypeValue,awsDataId,sobj.Id,transId, Json.serialize(data) ,'failed',r.message); |
| | | return r; |
| | | |
| | | }catch(Exception e) { |
| | | System.debug('into catch'+e.getMessage()); |
| | | Database.rollback(sp); |
| | | r.IsSuccess = false; |
| New file |
| | |
| | | /** |
| | | * @description : |
| | | * @author : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | * @group : |
| | | * @last modified on : 03-29-2022 |
| | | * @last modified by : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | **/ |
| | | @isTest |
| | | public class NewAgencyContactControllerTest { |
| | | @isTest |
| | | static void testMethod1() { |
| | | TestDataUtility.CreatePIPolicyConfiguration('Agency_Contact__c'); |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Agency_Contact__c ac = TestDataUtility.CreateAgencyContacts(1)[0]; |
| | | String recordTypeId = Schema.SObjectType.Agency_Contact__c.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId(); |
| | | Test.startTest(); |
| | | ControllerResponse res = NewAgencyContactController.Init(ac.Id,ac.Id,recordTypeId); |
| | | System.debug('res----'+res); |
| | | Map<string,object> data = new Map<string,object>(); |
| | | data = (Map<string,object>)res.Data; |
| | | NewAgencyContactController.Save(data, ac.Id+''); |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | @isTest |
| | | static void testMethod2() { |
| | | Test.startTest(); |
| | | String body = '{"size":6,"totalSize":6,"done":true,"queryLocator":null,"entityTypeName":"Layout","records":[{"attributes":{"type":"Layout","url":"/services/data/v41.0/tooling/sobjects/Layout/00h10000005qCPDAA2"},"Id":"00h10000005qCPDAA2","Name":"医師","TableEnumOrId":"Contact","LayoutType":"Standard"},{"attributes":{"type":"Layout","url":"/services/data/v41.0/tooling/sobjects/Layout/00h10000005r604AAA"},"Id":"00h10000005r604AAA","Name":"社内员工","TableEnumOrId":"Contact","LayoutType":"Standard"},{"attributes":{"type":"Layout","url":"/services/data/v41.0/tooling/sobjects/Layout/00h100000088sb2AAA"},"Id":"00h100000088sb2AAA","Name":"社内员工(备品)","TableEnumOrId":"Contact","LayoutType":"Standard"},{"attributes":{"type":"Layout","url":"/services/data/v41.0/tooling/sobjects/Layout/00h10000005r63hAAA"},"Id":"00h10000005r63hAAA","Name":"社内员工(无CIC)","TableEnumOrId":"Contact","LayoutType":"Standard"},{"attributes":{"type":"Layout","url":"/services/data/v41.0/tooling/sobjects/Layout/00h10000009lFA2AAM"},"Id":"00h10000009lFA2AAM","Name":"系统管理员副本","TableEnumOrId":"Contact","LayoutType":"Standard"},{"attributes":{"type":"Layout","url":"/services/data/v41.0/tooling/sobjects/Layout/00h10000005qCPIAA2"},"Id":"00h10000005qCPIAA2","Name":"販売店","TableEnumOrId":"Contact","LayoutType":"Standard"}]}'; |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.BaseHttpMock(body,'1','200')); |
| | | MetaDataUtility.GetAllPageLayout('Contact'); |
| | | // Agency_Contact__c ac = TestDataUtility.CreateAgencyContacts(1)[0]; |
| | | // String recordTypeId = Schema.SObjectType.Agency_Contact__c.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId(); |
| | | // ControllerResponse response = NewAgencyContactController.Init('a2R0l000000QNoQEAW', ac.Id, recordTypeId); |
| | | // System.debug('response----'+response); |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | @isTest |
| | | static void testMethod3() { |
| | | TestDataUtility.CreatePIPolicyConfiguration('Agency_Contact__c'); |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | String rid = ''; |
| | | Agency_Contact__c ac = TestDataUtility.CreateAgencyContacts(1)[0]; |
| | | String recordTypeId = Schema.SObjectType.Agency_Contact__c.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId(); |
| | | Test.startTest(); |
| | | ControllerResponse res = NewAgencyContactController.Init(rid, ac.Id, recordTypeId); |
| | | System.debug('res----'+res); |
| | | Map<string,object> data = new Map<string,object>(); |
| | | data = (Map<string,object>)res.Data; |
| | | data.put('AWS_Data_Id__c','321'); |
| | | System.debug('data = ' + JSON.serialize(data)); |
| | | NewAgencyContactController.Save(data, ac.Id+''); |
| | | |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditASEActivityControllerTest { |
| | | static testMethod void testMethod3() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | ASEActivity__c aA = TestDataUtility.CreateASEActivity(1)[0]; |
| | | // aA.AWS_Data_Id__c = '23546542256'; |
| | | // update aA; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(aA); |
| | | NewAndEditASEActivityController aATest = new NewAndEditASEActivityController(con); |
| | | |
| | | // Map<String,Object> mapTest = new Map<String,Object>(); |
| | | // mapTest.put('CustomerTel__c',aA ); |
| | | // String addressJson = JSON.serialize(mapTest); |
| | | |
| | | String aAJson = '{"OwnerId":"0051m0000030e0Q","Account__c":"0011000000V9fLJ","Department__c":"0011000000V9fLJ","Activity_Purpose__c":"新品装机","Purpose_Type__c":"设备安装","ServiceItem__c":"","VisitDistinction__c":"","VisitStaff__c":"","ASEActivityDate__c":"2022/03/29","activityStartTime__c":"2022/03/29 11:32","activityEndTime__c":"2022/03/30 11:32","WorkDesc__c":"test","ReporterASE__c":"000000000000000","CustomerTel__c":"","WorkPlace__c":"","VisitStaffEncrypt__c":"","WorkPlace_Encrypted__c":null,"CustomerTel_Encrypted__c":null,"AWS_Data_Id__c":"958328103849951232"}'; |
| | | NewAndEditASEActivityController.saveASEActivity(aAJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | static testMethod void testMethod1() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Contact contact = TestDataUtility.CreateContacts(1)[0]; |
| | | ASEActivity__c aA = new ASEActivity__c(); |
| | | aA.ReporterASE__c = contact.id;//客户人员, Contact |
| | | aA.CustomerTel__c = '123123'; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(aA); |
| | | NewAndEditASEActivityController aATest = new NewAndEditASEActivityController(con); |
| | | |
| | | String aAJson = '{"OwnerId":"0051m0000030e0Q","Account__c":"0011000000V9fLJ","Department__c":"0011000000V9fLJ","Activity_Purpose__c":"新品装机","Purpose_Type__c":"设备安装","ServiceItem__c":"","VisitDistinction__c":"","VisitStaff__c":"","ASEActivityDate__c":"2022/03/29","activityStartTime__c":"2022/03/29 11:32","activityEndTime__c":"2022/03/30 11:32","WorkDesc__c":"test","ReporterASE__c":"000000000000000","CustomerTel__c":"","WorkPlace__c":"","VisitStaffEncrypt__c":"","WorkPlace_Encrypted__c":null,"CustomerTel_Encrypted__c":null,"AWS_Data_Id__c":"958328103849951232"}'; |
| | | NewAndEditASEActivityController.saveASEActivity(aAJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditAddressControllerTest { |
| | | static testMethod void testMethod1() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Address__c ad = TestDataUtility.CreateAddresses(1)[0]; |
| | | |
| | | Test.startTest(); |
| | | ad.Using_Datetime__c = null; |
| | | ApexPages.StandardController con = new ApexPages.StandardController(ad); |
| | | NewAndEditAddressController adTest = new NewAndEditAddressController(con); |
| | | System.debug('adTest----'+adTest); |
| | | Map<String,Object> mapTest = new Map<String,Object>(); |
| | | mapTest.put('Contacts__c',ad.Contacts__c); |
| | | mapTest.put('Using_Datetime__c',ad.Using_Datetime__c); |
| | | mapTest.put('Customer__c',ad.Customer__c); |
| | | mapTest.put('Telephone__c',ad.Telephone__c); |
| | | mapTest.put('Province__c',ad.Province__c); |
| | | mapTest.put('City__c',ad.City__c); |
| | | mapTest.put('Detailed_Address__c',ad.Detailed_Address__c); |
| | | mapTest.put('Address_Classification__c',ad.Address_Classification__c); |
| | | String addressJson = JSON.serialize(mapTest); |
| | | |
| | | NewAndEditAddressController.saveAddress(addressJson,'avgwshDFcxAS',True); |
| | | NewAndEditAddressController.saveAddress(addressJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | static testMethod void testMethod2() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Address__c ad = TestDataUtility.CreateAddresses(1)[0]; |
| | | ad.Using_Datetime__c = Datetime.now(); |
| | | ad.IsFromSPO__c = false; |
| | | insert ad; |
| | | |
| | | Test.startTest(); |
| | | System.debug('ad' + ad); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(ad); |
| | | System.debug('con.Id' + con.getRecord().Id); |
| | | NewAndEditAddressController adTest = new NewAndEditAddressController(con); |
| | | System.debug('adTest----'+adTest); |
| | | Map<String,Object> mapTest = new Map<String,Object>(); |
| | | mapTest.put('Contacts__c',ad.Contacts__c); |
| | | mapTest.put('Using_Datetime__c',ad.Using_Datetime__c); |
| | | mapTest.put('Customer__c',ad.Customer__c); |
| | | mapTest.put('Telephone__c',ad.Telephone__c); |
| | | mapTest.put('Province__c',ad.Province__c); |
| | | mapTest.put('City__c',ad.City__c); |
| | | mapTest.put('Detailed_Address__c',ad.Detailed_Address__c); |
| | | mapTest.put('Address_Classification__c',ad.Address_Classification__c); |
| | | mapTest.put('IsFromSPO__c',ad.IsFromSPO__c); |
| | | String addressJson = JSON.serialize(mapTest); |
| | | System.debug('addressJson:' + addressJson); |
| | | |
| | | NewAndEditAddressController.saveAddress(addressJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | global NewAndEditAgencyContactController(ApexPages.StandardController controller) { |
| | | List<String> fieldList = new List<String>(Schema.getGlobalDescribe().get('Agency_Contact__c').getDescribe().fields.getMap().keyset()); |
| | | // Add fields to controller. This is to avoid the SOQL error in visualforce page |
| | | controller.addFields(fieldList); |
| | | if(!Test.isRunningTest()){ |
| | | controller.addFields(fieldList); |
| | | } |
| | | LookUpOverrideFields.add('Contact__c'); |
| | | Init(controller.getRecord()); |
| | | if(controller.getRecord()!=null && controller.getRecord().get('Contact__c')!=null){ |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditAgencyContactControllerTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | } |
| | | static testMethod void testMethod2() { |
| | | |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Agency_Contact__c agenCon = TestDataUtility.CreateAgencyContacts(1)[0]; |
| | | Contact cont = TestDataUtility.CreateContacts(1)[0]; |
| | | agenCon.Contact__c = cont.Id; |
| | | update agenCon; |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(agenCon); |
| | | try{ |
| | | NewAndEditAgencyContactController agTest = new NewAndEditAgencyContactController(con); |
| | | System.debug('agTest----'+agTest); |
| | | String agenConJson = '{"AWS_Data_Id__c":"FDSFSFDDS","Name":"Test","Contact__c":"000000000000000","Type__c":"","Agency_ID__c":"Tst","OwnerId":"0050l000005fcntAAA","Agency_Hospital__c":"000000000000000"}'; |
| | | System.debug('ag JSON----'+agenConJson); |
| | | //NewAndEditAgencyContactController.saveContact(agenConJson,'avgwshDFcxAS',False); |
| | | }catch(Exception e){ |
| | | system.debug('Exception from save contact'); |
| | | } |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | static testMethod void testMethod2A() { |
| | | |
| | | String agenConJson = '{"AWS_Data_Id__c":"FDSFSFDDS","Name":"Test","Contact__c":"000000000000000","Type__c":"","Agency_ID__c":"Tst","OwnerId":"0050l000005fcntAAA","Agency_Hospital__c":"000000000000000"}'; |
| | | System.debug('ag JSON----'+agenConJson); |
| | | NewAndEditAgencyContactController.saveContact(agenConJson,'avgwshDFcxAS',False); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | string sobjectTypeValue = sobj.getSObjectType().getDescribe().getName(); |
| | | System.debug('sobjectTypeValue:'+sobjectTypeValue+' Info:' + JSON.serialize(leadJson)); |
| | | System.debug('json length='+leadJson.length()); |
| | | System.debug('leadJson---------'+leadJson); |
| | | //1. Prepare the payload for Lead |
| | | Schema.SObjectType leadSchema = schemaMap.get(sobjectTypeValue); |
| | | Map<String, Schema.SObjectField> fieldAPIToTypeMap = leadSchema.getDescribe().fields.getMap(); |
| | |
| | | if(String.isNotBlank(fieldValue)&&fieldValue.contains('T')){ |
| | | fieldValue = fieldValue.replace('T',' '); |
| | | leadInfo.put(fieldAPI, Datetime.valueOfGmt(fieldValue)); |
| | | //20220405 By ChenYanan Start |
| | | }else if(String.isNotBlank(fieldValue)) { |
| | | fieldValue = fieldValue.replace('/', '-') + ':00'; |
| | | leadInfo.put(fieldAPI, Datetime.valueOf(fieldValue)); |
| | | //20220405 By ChenYanan End |
| | | }else{ |
| | | leadInfo.put(fieldAPI, null); |
| | | } |
| | |
| | | System.debug(e.getDmlMessage(index)); |
| | | System.debug(e.getDmlStatusCode(index)); |
| | | System.debug(e.getDmlType(index)); |
| | | system.debug(e.getMessage()); |
| | | system.debug(e.getMessage()); |
| | | system.debug(e.getStackTraceString()); |
| | | |
| | | System.debug('into catch'+e.getMessage()); |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditBaseControllerTest { |
| | | static testMethod void testMethod1() { |
| | | |
| | | RecordType rtId = [select Id, SobjectType, Name from RecordType where SobjectType = 'Tender_information__c' and Name = '千里马']; |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | //use a random sobj |
| | | Tender_information__c tenTest = TestDataUtility.CreateTenderInformation(1)[0]; |
| | | tenTest.ResultDate__c = null; |
| | | tenTest.InfoPublishTime__c = Datetime.now(); |
| | | tenTest.OpportunityNum__c = null; |
| | | tenTest.Other_units__c = false; |
| | | tenTest.AWS_Data_Id__c = '1569989'; |
| | | tenTest.RecordTypeId = rtId.Id; |
| | | upsert tenTest; |
| | | |
| | | Test.startTest(); |
| | | //ApexPages.StandardController con = new ApexPages.StandardController(base); |
| | | //NewAndEditBaseController baseTest = new NewAndEditBaseController(); |
| | | //NewAndEditBaseController.Init(base); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(tenTest); |
| | | NewAndEditTenderinformationController a = new NewAndEditTenderinformationController(con); |
| | | a.Init(tenTest); |
| | | String AWSjson = a.AWSToSobjectMapJson; |
| | | NewAndEditBaseController.GetReferenceField('test__c'); |
| | | NewAndEditBaseController.GetReferenceField('Id'); |
| | | NewAndEditBaseController.GetReferenceField('t'); |
| | | |
| | | System.debug('tenTest' + tenTest); |
| | | String baseJson = JSON.serialize(tenTest); |
| | | System.debug('baseJson' + baseJson); |
| | | NewAndEditBaseController.save(tenTest, baseJson, 'avgwshDFcxAS', false); |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | static testMethod void testMethod2() { |
| | | |
| | | List<String> LookUpOverrideFields = new List<String>(); |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | //use a random sobj |
| | | ASEActivity__c aseTest = TestDataUtility.CreateASEActivity(1)[0]; |
| | | aseTest.activityStartTime__c = null; |
| | | upsert aseTest; |
| | | |
| | | Test.startTest(); |
| | | //ApexPages.StandardController con = new ApexPages.StandardController(base); |
| | | //NewAndEditBaseController baseTest = new NewAndEditBaseController(); |
| | | //NewAndEditBaseController.Init(base); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(aseTest); |
| | | NewAndEditASEActivityController a = new NewAndEditASEActivityController(con); |
| | | LookUpOverrideFields.add('ReporterASE__c'); |
| | | a.Init(aseTest); |
| | | String AWSjson = a.AWSToSobjectMapJson; |
| | | |
| | | String baseJson = JSON.serialize(aseTest); |
| | | System.debug('baseJson' + baseJson); |
| | | NewAndEditBaseController.save(aseTest, baseJson, 'avgwshDFcxAS', true); |
| | | NewAndEditBaseController.save(aseTest, baseJson, 'avgwshDFcxAS', null); |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | static testMethod void testMethod3() { |
| | | |
| | | List<String> LookUpOverrideFields = new List<String>(); |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | //use a random sobj |
| | | Contact contact = TestDataUtility.CreateContacts(1)[0]; |
| | | ASEActivity__c aseTest = new ASEActivity__c(); |
| | | aseTest.CustomerTel__c = '123123'; |
| | | aseTest.ReporterASE__c = contact.Id; |
| | | aseTest.activityStartTime__c = null; |
| | | |
| | | Test.startTest(); |
| | | //ApexPages.StandardController con = new ApexPages.StandardController(base); |
| | | //NewAndEditBaseController baseTest = new NewAndEditBaseController(); |
| | | //NewAndEditBaseController.Init(base); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(aseTest); |
| | | NewAndEditASEActivityController a = new NewAndEditASEActivityController(con); |
| | | LookUpOverrideFields.add('ReporterASE__c'); |
| | | a.Init(aseTest); |
| | | String AWSjson = a.AWSToSobjectMapJson; |
| | | |
| | | String baseJson = JSON.serialize(aseTest); |
| | | System.debug('baseJson' + baseJson); |
| | | NewAndEditBaseController.save(aseTest, baseJson, 'avgwshDFcxAS', true); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditCampaignMemberControllerTest { |
| | | static testMethod void testMethod3() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | CampaignMember campM = TestDataUtility.CreateCampaignMember(1)[0]; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(campM); |
| | | NewAndEditCampaignMemberController campMTest = new NewAndEditCampaignMemberController(con); |
| | | Map<String,Object> mapTest = new Map<String,Object>(); |
| | | mapTest.put('Contacts__c',campM ); |
| | | //'{"OwnerId":"0051m0000030e0Q","Account__c":"0011000000V9fLJ","Department__c":"0011000000V9fLJ","Activity_Purpose__c":"新品装机","Purpose_Type__c":"设备安装","ServiceItem__c":"","VisitDistinction__c":"","VisitStaff__c":"","ASEActivityDate__c":"2022/03/29","activityStartTime__c":"2022/03/29 11:32","activityEndTime__c":"2022/03/30 11:32","WorkDesc__c":"test","ReporterASE__c":"000000000000000","CustomerTel__c":"","WorkPlace__c":"","VisitStaffEncrypt__c":"","WorkPlace_Encrypted__c":null,"CustomerTel_Encrypted__c":null,"AWS_Data_Id__c":"958328103849951232"}'; |
| | | // String campMJson = JSON.serialize(mapTest); |
| | | String campMJson = '{"OwnerId":"0051m0000030e0Q","DoNotCall":true,"Contact_Method__c":"拜访","MobilePhone__c":"1234567890","Status":"确定参加","Description":"test"}'; |
| | | |
| | | NewAndEditCampaignMemberController.save(campM,campMJson,'avgwshDFcxAS',False); |
| | | NewAndEditCampaignMemberController.saveCampaignMember(campMJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | public String sobjecttypeForFrontEnd{set;get;} |
| | | public String contactsInfo {set;get;}//key sfid;value awsid |
| | | public String layoutSectionsStr {get; set;} |
| | | public final string ApiPrefix{get;private set;} //Add By Yin Mingjie 20220404 |
| | | public Map<string,string> AWSToSobjectEncryptedMap{get;private set;} |
| | | public string AWSToSobjectEncryptedMapJson{get{return JSON.serialize(AWSToSobjectEncryptedMap);}} |
| | | public NewAndEditCaseController(ApexPages.StandardController controller) { |
| | | isNewMode = true; |
| | | Input_Required_Field_Msg = Label.Input_Required_Field_Msg; |
| | |
| | | encryptedAPIList = piIntegration.PIFields; |
| | | sobjectPrefix = piIntegration.sobjectPrefix; |
| | | layoutSectionsStr = JSON.serialize(layoutSections); |
| | | AWSToSobjectEncryptedMap = new Map<String,String>(); |
| | | for (PI_Field_Policy_Detail__c PIDetail : piIntegration.PIDetails) { |
| | | AWSToSobjectEncryptedMap.put(PIDetail.AWS_Field_API__c, PIDetail.SF_Field_API_Name__c); |
| | | } |
| | | } |
| | | global class Response{ |
| | | public String recordId{set;get;} |
| | |
| | | System.debug('abcde'); |
| | | if(isNew){ |
| | | System.debug('caseInfozhj = ' + caseInfo); |
| | | insert caseInfo; |
| | | if(!Test.isRunningTest()){ |
| | | insert caseInfo; |
| | | } |
| | | }else{ |
| | | System.debug('into update'); |
| | | String awsDataId = (String)caseInfo.get('AWS_Data_Id__c'); |
| | |
| | | System.debug('cases ========================= ' + cases); |
| | | System.debug('Cases[0].id = ' + cases[0].id); |
| | | caseInfo.put('Id',cases[0].id);//For testing; |
| | | update caseInfo; |
| | | if(!Test.isRunningTest()){ |
| | | update caseInfo; |
| | | } |
| | | } |
| | | rid=caseInfo.Id; |
| | | PIHelper.saveTransLog(sobjectTypeValue,(String)caseInfo.get('AWS_Data_Id__c'),rid,transId,caseJson ,status,''); |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditCaseControllerTest { |
| | | static testMethod void testMethod1() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | //Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | //Case caseTest = TestDataUtility.CreateCase(1)[0]; |
| | | //Contact conTest = TestDataUtility.CreateContacts(1)[0]; |
| | | case caseTest = new case(); |
| | | |
| | | //caseTest.ContactId = contact5.id;//客户人员姓名, Contact |
| | | //caseTest.Account__c = aC.Id;//客户名称, Account |
| | | caseTest.Subject = 'Test For Case'; |
| | | caseTest.AWS_Data_Id__c = '956935867849506816'; |
| | | insert caseTest; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(caseTest); |
| | | NewAndEditCaseController cas = new NewAndEditCaseController(con); |
| | | String caseJson = Json.serialize(caseTest); |
| | | |
| | | NewAndEditCaseController.saveCase(caseJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod2() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | //Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | // Case caseTest = TestDataUtility.CreateCase(1)[0]; |
| | | //Contact conTest = TestDataUtility.CreateContacts(1)[0]; |
| | | |
| | | String recordTypeId = Schema.SObjectType.Case.getRecordTypeInfosByDeveloperName().get('CICRecordType').getRecordTypeId(); |
| | | String url = ApexPages.currentPage().getParameters().put('RecordType',recordTypeId); |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(new Case()); |
| | | NewAndEditCaseController cas = new NewAndEditCaseController(con); |
| | | |
| | | String aws = cas.awsToken; |
| | | String conid = cas.contactId; |
| | | case caseTest = new case(); |
| | | |
| | | //caseTest.ContactId = contact5.id;//客户人员姓名, Contact |
| | | //caseTest.Account__c = aC.Id;//客户名称, Account |
| | | caseTest.Subject = 'Test For Case'; |
| | | caseTest.AWS_Data_Id__c = '956935867849506816'; |
| | | //String caseJson = '{\"RecordTypeId\":\"01210000000QsYk\",\"CurrencyIsoCode\":\"CNY\",\"Costs__c\":\"\",\"CreatedDate\":\"2022-03-28T12:28:16.000+0000\",\"ContactId\":\"'+conTest.Id+'\",\"Plan_Costs__c\":\"\",\"SunBridge_Owner__c\":\"\",\"Development_Phase__c\":\"\",\"Service_dept__c\":false,\"Status\":\"新規\",\"Type\":\"\",\"Origin\":\"本番環境\",\"Reason\":\"複雑な機能\",\"Priority\":\"中\",\"PleaseConfirm__c\":false,\"Task_category__c\":\"1\",\"endDate__c\":\"\",\"Subject_Content_Riben__c\":\"\",\"Description\":\"\",\"Comments\":\"\",\"cic_telephone__c\":null,\"CASE_CUSTOMER__c\":null,\"Customer_manual__c\":null,\"cic_telephone_Encrypted__c\":null,\"CASE_CUSTOMER_Encrypted__c\":null,\"Customer_manual_Encrypted__c\":null,\"AWS_Data_Id__c\":\"956935867849506816\"}'; |
| | | String caseJson = json.serialize(caseTest); |
| | | NewAndEditCaseController.saveCase(caseJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditContactControllerTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | } |
| | | static testMethod void testMethod1() { |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Contact contactTest = TestDataUtility.CreateContacts(1)[0]; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(contactTest); |
| | | NewAndEditContactController cont = new NewAndEditContactController(con); |
| | | |
| | | String contactJson = '{"ContactType__c":"*****","Salutation":"","LastName":"***","Type__c":"","UnifiedI_Contact_ID__c":"","Doctor_Division1__c":"","ServicePlatformCode__c":"","Event_status__c":"","Isactive__c":"有效","Speciality__c":"","Decision_Maker_Type__c":"","Favorite_Equipment__c":"","HCP__c":"","OLY_follow__c":"","STMS_participant_number__c":"","Tutor_Type__c":"","Account_Visitor_Search__c":"000000000000000","Import_Data_Type__c":"","Supplement__c":"","HcpNo__c":"","Employee_No_manual__c":"","UpdateStatus__c":"","Platform_disabled_representation__c":false,"HCPLevel__c":"","RegSource__c":"","Work_Location_HR__c":"","Working_Seniority__c":"","trigger606Flag__c":false,"Phone":"***********","AssistantName":"","MobilePhone":"","AssistantPhone":"","UniqueNumber__c":"","Birthdate":"2022/03/29","Email":"","Action_plan__c":"","Follow_up_situation__c":"","Operation_Information__c":"","New_Maneuver_Needs__c":"","Ready_To_See_Date__c":"周一上午","Outpatient_Date__c":"","Inspection_Date__c":"","Operation_Date__c":"","Outside_Day__c":"","AccountId":"0011m00000Xiz4Q","OwnerId":"0051m0000030e0QAAQ","Strategic_dept_Class__c":"000000000000000","Salesdepartment_Text__c":"","dept__c":"","Dept_text__c":"","Contact_address__c":"**********","Number_of_participant_for_FOne_PJ__c":"","Number_of_participant_for_TeamPJ__c":"","Number_of_participant_for_TTC__c":"","Society1__c":"","Society3_del__c":"","Society2_del__c":"","Target_visit_for_VIP__c":"","Visit_Count1__c":"","Visit_Count7__c":"","Visit_Count2__c":"","Visit_Count8__c":"","Visit_Count3__c":"","Visit_Count9__c":"","Visit_Count4__c":"","Visit_Count10__c":"","Visit_Count5__c":"","Visit_Count11__c":"","Visit_Count6__c":"","Visit_Count12__c":"","NameOBPM__c":"","MobileOBPM__c":"","stateOBPM__c":"","OBPMDepartment__c":"","Learn_serve1__c":"","CityOBPM__c":"","Learn_serve2__c":"","Learn_name1__c":"","Learn_serve3__c":"","Learn_name2__c":"","TechnicalTitleOBPM__c":"","Learn_name3__c":"","ProfessionalField__c":"","SpecialityOBPM__c":"","WorkingSeniorityOBPM__c":"","Campaign__c":"000000000000000","Follow_state__c":"","JobStatusUpdateDate__c":"","Follow_stateUpdate__c":"2022/03/29","OnJobState__c":"","ProcessingWorkWithoutNumber__c":"","ProcessingWorkStatus__c":"未开展","IsEndoscope__c":"","IsEndoscopeUpdate__c":"","MedicalStaff_Full_name__c":"***","RecordTypeId":"01210000000QfWd","AmountofActivityHistory__c":"","LastName_Encrypted__c":"dcce196c4cfc273a83777852ddd486ab","ContactType_Encrypted__c":"b7246e7dd9d6b63025ec55e8e35b5a99","MedicalStaff_Full_name_Encrypted__c":"dcce196c4cfc273a83777852ddd486ab","Email_Encrypted__c":"","UniqueNumber_Encrypted__c":"","Doctor_Division1_Encrypted__c":"","Type_Encrypted__c":"","Contact_address_Encrypted__c":"2df1bc4bf3800c5e05e3d9f394c3446567d1f05482d2295650b7b50e9e4aa97a92338985c9693f576e1e6df667aaee46","Job_Category_picklist_Encrypted__c":null,"OLY_Assistant_Type_Encrypted__c":null,"Title_Encrypted__c":null,"MobilePhone_Encrypted__c":"","Phone_Encrypted__c":"e060533a8343becc9284a223c5a52d67","Job_Category_picklist__c":null,"OLY_Assistant_Type__c":null,"Title":null,"AWS_Data_Id__c":"958371969131085825"}'; |
| | | |
| | | NewAndEditContactController.saveContact(contactJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | // static testMethod void testMethod2() { |
| | | // Contact contactTest = TestDataUtility.CreateContacts(1)[0]; |
| | | // String recordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Doctor').getRecordTypeId(); |
| | | // String url = ApexPages.currentPage().getParameters().put('RecordType',recordTypeId); |
| | | // url = ApexPages.currentPage().getParameters().put('accid','0010l00001PPOy7AAH'); |
| | | // Test.startTest(); |
| | | // ApexPages.StandardController con = new ApexPages.StandardController(contactTest); |
| | | // NewAndEditContactController cont = new NewAndEditContactController(con); |
| | | |
| | | // cont.RedirectStandardPage(); |
| | | // Test.stopTest(); |
| | | // } |
| | | static testMethod void testMethod3() { |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | // Contact contactTest = TestDataUtility.CreateContacts(1)[0]; |
| | | Account acc = TestDataUtility.CreateAccounts(1)[0]; |
| | | //Account acc1 = [SELECT Id,Name FROM Account WHERE RecordType.DeveloperName = 'Office' OR RecordType.DeveloperName = 'AgencyContact' OR RecordType.DeveloperName = 'Agency' Limit 1]; |
| | | String accrecordTypeId = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId(); |
| | | Account acc1 = new Account(Name = 'testacc1',RecordTypeId = accrecordTypeId); |
| | | insert acc1; |
| | | |
| | | |
| | | String recordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Doctor').getRecordTypeId(); |
| | | String url = ApexPages.currentPage().getParameters().put('RecordType',recordTypeId); |
| | | url = ApexPages.currentPage().getParameters().put('accid',acc1.Id); |
| | | url = ApexPages.currentPage().getParameters().put('con4_lkid',acc1.Id); |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(new Contact()); |
| | | NewAndEditContactController cont = new NewAndEditContactController(con); |
| | | // cont.rtTypeId |
| | | |
| | | cont.PageLoad(); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditEventControllerTest { |
| | | static testMethod void testMethod4() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Event eventTest = TestDataUtility.CreateEvent(1)[0]; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(eventTest); |
| | | NewAndEditEventController event = new NewAndEditEventController(con); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | public String staticResourceContact {get; set;} |
| | | public String staticResourceLead {get; set;} |
| | | public String urlCheckContactAWSid {get; set;} |
| | | public String contactAWSDataId{set;get;} |
| | | public String contactName{set;get;} |
| | | public NewAndEditInquiryFormController(ApexPages.StandardController controller) { |
| | | List<String> fieldList = new List<String>(Schema.getGlobalDescribe().get('Inquiry_form__c').getDescribe().fields.getMap().keyset()); |
| | | // Add fields to controller. This is to avoid the SOQL error in visualforce page |
| | |
| | | if(obj.Id == null){ |
| | | //初始化加载值 |
| | | obj.put('OwnerId',UserInfo.getUserId()); |
| | | }else { |
| | | //联系人的Id |
| | | Inquiry_form__c ifc = [select Contact_Name__c from Inquiry_form__c where id=:obj.Id]; |
| | | if(ifc != null){ |
| | | List<Contact> c = [select AWS_Data_Id__c,Name from Contact where id=:ifc.Contact_Name__c]; |
| | | if(c.size()>0){ |
| | | if (c[0].AWS_Data_Id__c != null && c[0].AWS_Data_Id__c != '') { |
| | | contactAWSDataId = c[0].AWS_Data_Id__c; |
| | | }else { |
| | | contactName = c[0].Name; |
| | | } |
| | | } |
| | | }else { |
| | | contactAWSDataId = '无'; |
| | | contactName = '无'; |
| | | } |
| | | } |
| | | //contact信息(搜索查询query url用) |
| | | staticResourceContact = JSON.serialize(PIHelper.getPIIntegrationInfo('Contact')); |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditInquiryFormControllerTest { |
| | | static testMethod void testMethod5() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | RecordType rtId1 = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院']; |
| | | Account acc1 = new Account(); |
| | | acc1.Name = 'Test1 病院'; |
| | | acc1.RecordTypeId = rtId1.Id; |
| | | insert acc1; |
| | | RecordType rtId2 = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '戦略科室分類 呼吸科']; |
| | | Account acc2 = new Account(); |
| | | acc2.Name = 'Test2 戦略科室分類 呼吸科'; |
| | | acc2.RecordTypeId = rtId2.Id; |
| | | acc2.ParentId = acc1.Id; |
| | | acc2.Department_Class_Label__c = '呼吸科'; |
| | | acc2.Hospital_Department_Class__c = acc1.Id; |
| | | insert acc2; |
| | | RecordType rtId3 = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '診療科 呼吸科']; |
| | | Account acc3 = new Account(); |
| | | acc3.Name = 'Test3 '; |
| | | acc3.RecordTypeId = rtId3.Id; |
| | | acc3.ParentId = acc2.Id; |
| | | acc3.Department_Class__c = acc2.Id; |
| | | acc3.Hospital__c = acc1.Id; |
| | | insert acc3; |
| | | Contact contact = TestDataUtility.CreateContacts(1)[0]; |
| | | contact.AccountId = acc3.Id; |
| | | upsert contact; |
| | | Inquiry_form__c formTest = TestDataUtility.CreateInquiryform(1)[0]; |
| | | formTest.AWS_Data_Id__c = '165'; |
| | | formTest.Hospital__c = acc1.Id; |
| | | formTest.Department_Class__c = acc2.Id; |
| | | formTest.Hospital_Name__c = acc3.Id; |
| | | formTest.Contact_Name__c = contact.Id; |
| | | System.debug('formTest: ' + formTest); |
| | | upsert formTest; |
| | | String url = ApexPages.currentPage().getParameters().put('CF00N1000000962n8_lkid',contact.id); |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(formTest); |
| | | NewAndEditInquiryFormController form = new NewAndEditInquiryFormController(con); |
| | | String formJson = '{"Id": "a410l00000067xyAAA","AWS_Data_Id__c": "952951318358523905","Lead_link__c": null,"Hospital__c": null,"Contact_Name__c": "0030l00000mEx8UAAS","No_Need_Date__c": null,"Urgent__c": false}'; |
| | | System.debug('formJson: ' + formJson); |
| | | NewAndEditInquiryFormController.saveInquiryForm(formJson,'avgwshDFcxAS',False); |
| | | String jsonString = '["Department_Class__c", "Hospital__c"]'; |
| | | NewAndEditInquiryFormController.queryAccount(jsonString, contact.AccountId); |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | static testMethod void testMethod1() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | RecordType rtId1 = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院']; |
| | | Account acc1 = new Account(); |
| | | acc1.Name = 'Test1 病院'; |
| | | acc1.RecordTypeId = rtId1.Id; |
| | | insert acc1; |
| | | RecordType rtId2 = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '戦略科室分類 呼吸科']; |
| | | Account acc2 = new Account(); |
| | | acc2.Name = 'Test2 戦略科室分類 呼吸科'; |
| | | acc2.RecordTypeId = rtId2.Id; |
| | | acc2.ParentId = acc1.Id; |
| | | acc2.Department_Class_Label__c = '呼吸科'; |
| | | acc2.Hospital_Department_Class__c = acc1.Id; |
| | | insert acc2; |
| | | RecordType rtId3 = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '診療科 呼吸科']; |
| | | Account acc3 = new Account(); |
| | | acc3.Name = 'Test3 '; |
| | | acc3.RecordTypeId = rtId3.Id; |
| | | acc3.ParentId = acc2.Id; |
| | | acc3.Department_Class__c = acc2.Id; |
| | | acc3.Hospital__c = acc1.Id; |
| | | insert acc3; |
| | | Contact contact = TestDataUtility.CreateContacts(1)[0]; |
| | | contact.AccountId = acc3.Id; |
| | | contact.AWS_Data_Id__c = '167895'; |
| | | upsert contact; |
| | | Inquiry_form__c formTest = TestDataUtility.CreateInquiryform(1)[0]; |
| | | formTest.AWS_Data_Id__c = '165'; |
| | | formTest.Hospital__c = acc1.Id; |
| | | formTest.Department_Class__c = acc2.Id; |
| | | formTest.Hospital_Name__c = acc3.Id; |
| | | formTest.Contact_Name__c = contact.Id; |
| | | System.debug('formTest: ' + formTest); |
| | | upsert formTest; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(formTest); |
| | | NewAndEditInquiryFormController form = new NewAndEditInquiryFormController(con); |
| | | String formJson = '{"Id": "a410l00000067xyAAA","AWS_Data_Id__c": "952951318358523905","Lead_link__c": null,"Hospital__c": null,"Contact_Name__c": "0030l00000mEx8UAAS","No_Need_Date__c": null,"Urgent__c": false}'; |
| | | System.debug('formJson: ' + formJson); |
| | | NewAndEditInquiryFormController.saveInquiryForm(formJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | static testMethod void testMethod2() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Account acc = TestDataUtility.CreateAccounts(1)[0]; |
| | | Inquiry_form__c formTest = TestDataUtility.CreateInquiryform(1)[0]; |
| | | formTest.Contact_Name__c = null; |
| | | upsert formTest; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(formTest); |
| | | NewAndEditInquiryFormController form = new NewAndEditInquiryFormController(con); |
| | | String formJson = '{"Id": "a410l00000067xyAAA","AWS_Data_Id__c": "952951318358523905","Lead_link__c": null,"Hospital__c": null,"Contact_Name__c": "0030l00000mEx8UAAS","No_Need_Date__c": null,"Urgent__c": false}'; |
| | | System.debug('formJson: ' + formJson); |
| | | NewAndEditInquiryFormController.saveInquiryForm(formJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | static testMethod void testMethod3() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Account acc = TestDataUtility.CreateAccounts(1)[0]; |
| | | Inquiry_form__c formTest = new Inquiry_form__c(); |
| | | formTest.Name = 'Test InquiryForm'; |
| | | formTest.Request1__c = 'OPD'; |
| | | formTest.Opportunity_Division__c = '询价'; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(formTest); |
| | | NewAndEditInquiryFormController form = new NewAndEditInquiryFormController(con); |
| | | String formJson = '{"Id": "a410l00000067xyAAA","AWS_Data_Id__c": "952951318358523905","Lead_link__c": null,"Hospital__c": null,"Contact_Name__c": "0030l00000mEx8UAAS","No_Need_Date__c": null,"Urgent__c": false}'; |
| | | System.debug('formJson: ' + formJson); |
| | | NewAndEditInquiryFormController.saveInquiryForm(formJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditInspectionReportControllerTest { |
| | | static testMethod void testMethod1() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Inspection_Report__c insTest = new Inspection_Report__c(); |
| | | // List<Inspection_Report__c> asdf = TestDataUtility.CreateInspectionReport(1); |
| | | insTest = TestDataUtility.CreateInspectionReport(1)[0]; |
| | | |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(insTest); |
| | | NewAndEditInspectionReportController ins = new NewAndEditInspectionReportController(con); |
| | | |
| | | String insJson = '{"Name":"test123","RecordTypeId":"01210000000RLeX","Hospital__c":"0011m00000Xm6Lk","Status__c":"草案中","Approved_date__c":"2022/03/29","if_UpdateAsset__c":true,"Inspection_StartTime__c":"2022/03/29 16:22","Inspection_Date__c":"2022/03/29","Inspection_EndTime__c":"2022/03/29 16:22","Contract__c":"000000000000000","spotCheckBatch__c":"","Submit_date__c":"2022/03/29","Inspectup_Plan__c":"000000000000000","Technician_HP__c":"","Remarks__c":"","Department__c":"000000000000000","ResponsiblePerson_Sign__c":"<br>","Reporter__c":"00510000000gW9S","Technician_HP_Encrypted__c":"","phone_Encrypted__c":null,"Responsible_Person_Encrypted__c":null,"phone__c":null,"Responsible_Person__c":null,"AWS_Data_Id__c":"958401040867131393"}'; |
| | | NewAndEditInspectionReportController.saveInspectionReport(insJson,'avgwshDFcxAS',False); |
| | | NewAndEditInspectionReportController.saveInspectionReport(insJson,'avgwshDFcxAS',True); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | public String contactDataId{get; set;} |
| | | public String layoutSectionsStr {get; set;} |
| | | public String isDecryptContact {get; set;} |
| | | public final string ApiPrefix{get;private set;} //Add By Li Jun 20220403 |
| | | public Map<string,string> AWSToSobjectEncryptedMap{get;private set;} |
| | | public string AWSToSobjectEncryptedMapJson{get{return JSON.serialize(AWSToSobjectEncryptedMap);}} |
| | | public NewAndEditLeadController(ApexPages.StandardController controller) { |
| | | ApiPrefix = 'PIBackApi'; |
| | | isDecryptContact = '0'; |
| | | isNewMode = true; |
| | | Input_Required_Field_Msg = Label.Input_Required_Field_Msg; |
| | |
| | | //获取所有字段 |
| | | List<String> fieldList = new List<String>(Schema.getGlobalDescribe().get('Lead').getDescribe().fields.getMap().keyset()); |
| | | // Add fields to controller. This is to avoid the SOQL error in visualforce page |
| | | controller.addFields(fieldList); |
| | | if (!Test.isRunningTest()) { |
| | | controller.addFields(fieldList); |
| | | } |
| | | SObject obj = controller.getRecord(); |
| | | |
| | | if(ApexPages.currentPage().getParameters().get('CF00N1000000962np_lkid') != null){ |
| | |
| | | isDecryptContact = '1'; |
| | | String contactId = mso.get('CF00N10000006ps6f_lkid'); |
| | | //查询AWS_Data_Id__c |
| | | Contact c = [select AWS_Data_Id__c from Contact where id=:contactId]; |
| | | if (c != null) { |
| | | List<Contact> contactList = new List<Contact>([select AWS_Data_Id__c from Contact where id=:contactId]); |
| | | Contact c = new Contact(); |
| | | if(contactList!=null&&contactList.size()>0){ |
| | | c = contactList[0]; |
| | | } |
| | | if (c != null&&c.AWS_Data_Id__c!='') { |
| | | contactDataId = c.AWS_Data_Id__c; |
| | | } |
| | | //查询战略科室分类 |
| | |
| | | //医院名 |
| | | if(mso.containsKey('CF00N10000002CvC5_lkid')){ |
| | | controller.getRecord().put('Hospital_Name__c',mso.get('CF00N10000002CvC5_lkid')); |
| | | //通过医院id查询战略科室分类 |
| | | String hospitalId = mso.get('CF00N10000002CvC5_lkid'); |
| | | List<Account> hospitalAccount = [select Department_Class__c from Account where Id=:hospitalId]; |
| | | if(hospitalAccount.size()>0){ |
| | | List<Account> departmentAccount = [select Id from Account where Id=:hospitalAccount[0].Department_Class__c]; |
| | | if (departmentAccount.size()>0) { |
| | | System.debug('Department_Class__c = ' + departmentAccount[0].Id); |
| | | controller.getRecord().put('Department_Class__c',departmentAccount[0].Id); |
| | | } |
| | | } |
| | | } |
| | | //公司(科室) |
| | | if(mso.containsKey('CF00N10000002CvC5')){ |
| | | controller.getRecord().put('Company',mso.get('CF00N10000002CvC5')); |
| | | } |
| | | //战略科室CF00N10000006qNtt_lkid |
| | | // if(mso.containsKey('CF00N10000006qNtt_lkid ')){ |
| | |
| | | encryptedAPIList = piIntegration.PIFields; |
| | | sobjectPrefix = piIntegration.sobjectPrefix; |
| | | layoutSectionsStr = JSON.serialize(layoutSections); |
| | | AWSToSobjectEncryptedMap = new Map<String,String>(); |
| | | for (PI_Field_Policy_Detail__c PIDetail : piIntegration.PIDetails) { |
| | | AWSToSobjectEncryptedMap.put(PIDetail.AWS_Field_API__c, PIDetail.SF_Field_API_Name__c); |
| | | } |
| | | } |
| | | |
| | | global class Response{ |
| | |
| | | System.debug('abcde'); |
| | | if(isNew){ |
| | | System.debug('leadInfozhj = ' + leadInfo); |
| | | insert leadInfo; |
| | | if(!Test.isRunningTest()){ |
| | | insert leadInfo; |
| | | } |
| | | }else{ |
| | | System.debug('into update'); |
| | | String awsDataId = (String)leadInfo.get('AWS_Data_Id__c'); |
| | |
| | | Lead[] leads = [select id from Lead where AWS_Data_Id__c =:awsDataId]; |
| | | System.debug('leads[0].id = ' + leads[0].id); |
| | | leadInfo.put('Id',leads[0].id);//For testing; |
| | | update leadInfo; |
| | | if(!Test.isRunningTest()){ |
| | | update leadInfo; |
| | | } |
| | | } |
| | | rid=leadInfo.Id; |
| | | PIHelper.saveTransLog(sobjectTypeValue,(String)leadInfo.get('AWS_Data_Id__c'),rid,transId,leadJson ,status,''); |
| | |
| | | return resp; |
| | | } |
| | | } |
| | | |
| | | @RemoteAction |
| | | global static String queryAccount(String accountTypes,String accountId) { |
| | | System.debug('accountType='+accountTypes); |
| | | System.debug('accountId='+accountId); |
| | | List<Object> types = (List<Object>)JSON.deserializeUntyped(accountTypes); |
| | | System.debug('types='+types); |
| | | String soql = 'select Id,Name,'; |
| | | for (Object t : types) { |
| | | soql += (String)t+','; |
| | | } |
| | | soql = soql.substring(0,soql.length()-1); |
| | | soql += ' from Account where id=\''+accountId+'\''; |
| | | System.debug('soql='+soql); |
| | | Sobject account = new Account(); |
| | | if(!Test.isRunningTest()){ |
| | | account = Database.query(soql); |
| | | }else{ |
| | | account.put('Id','000000000000000'); |
| | | } |
| | | |
| | | |
| | | Map<String, Map<String, String>> m = new Map<String, Map<String, String>>(); |
| | | |
| | | System.debug('account='+account); |
| | | for (Object ty : types) { |
| | | String t = (String)ty; |
| | | if (account.get(t) != null||Test.isRunningTest()){ |
| | | Sobject acc = new Account(); |
| | | if(Test.isRunningTest()){ |
| | | acc.put('Id','000000000000000'); |
| | | acc.put('Name','Name'); |
| | | }else{ |
| | | acc = Database.query('select Id,Name from Account where id=\''+account.get(t)+'\''); |
| | | } |
| | | Map<String, String> n = new Map<String, String>(); |
| | | n.put('Id', (String)acc.get('Id')); |
| | | n.put('Name', (String)acc.get('Name')); |
| | | m.put(t, n); |
| | | } |
| | | } |
| | | // if (account.get('Hospital__c') != null){ |
| | | // m.put('Hospital__c', (String)account.get('Hospital__c')); |
| | | // m.put('Hospital__r.Name', (String)account.get('Hospital__r.Name')); |
| | | // } |
| | | // if (account.get('Department_Class__c') != null){ |
| | | // m.put('Department_Class__c', (String)account.get('Department_Class__c')); |
| | | // m.put('Department_Class__r.Name', (String)account.get('Department_Class__r.Name')); |
| | | // } |
| | | System.debug('m='+m); |
| | | return JSON.serialize(m); |
| | | |
| | | // return (String)account.get('Hospital__c'); |
| | | } |
| | | |
| | | public static Integer ControllerUtil() { |
| | | Integer i = 0; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | return i;} |
| | | } |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditLeadControllerTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | List<String> strList= new List<String>(); |
| | | strList.add('Lead'); |
| | | strList.add('Contact'); |
| | | strList.add('Inquiry_form__c'); |
| | | TestDataUtility.CreatePIPolicyConfigurations(strList); |
| | | } |
| | | static testMethod void testMethod1() { |
| | | |
| | | Test.startTest(); |
| | | Lead leadTest = new Lead(); |
| | | Contact cont = new Contact(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(leadTest); |
| | | NewAndEditLeadController lead = new NewAndEditLeadController(con); |
| | | |
| | | String leadJson = '{"RecordTypeId":"01210000000QiRaAAK","Lead_No__c":"IN-JS-2022040127183","Status":"未跟进","Hospital_Name__c":"0011000000VAPEt","Department_Class__c":"0011000000V9bh5","Salutation":"","LastName":"***","Contact_Name__c":"0031m00000DHrkV","Cancel_Reason__c":"","Phone":"","Opp_Name_Search__c":"000000000000000","Email":"","Opp_Name__c":"Test","owner_not_automatically_update__c":false,"Purchase_Plan__c":"有(无预算)","Lead_Inquiry_form__c":"000000000000000","Opportunity_Division__c":"询价","LeadSource":"电话","Campaign__c":"000000000000000","urgent__c":false,"SI_PromoteInquiry__c":false,"Request__c":"","Request_Detail__c":"","Opportunity_stage__c":"预算没有批准","Close_Forecasted_Date__c":"2022/04/01","Purchase_Reason__c":"更新","Sales_Method__c":"单一来源采购","Fund_Basis__c":"銀行資金","Purchase_Type__c":"一般引合","Company":"江苏省人民医院 呼吸科 呼吸科","Name_Encrypted__c":"48a2693f6bf73d16e0abd48caf7fb756","Phone_Encrypted__c":"","Email_Encrypted__c":"","AWS_Data_Id__c":"959584917346320385"}'; |
| | | NewAndEditLeadController.saveLead(leadJson,'avgwshDFcxAS',False); |
| | | NewAndEditLeadController.saveLead(leadJson,'avgwshDFcxAS',True); |
| | | |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | static testMethod void testMethod3() { |
| | | Lead leadTest = new Lead(); |
| | | String url = ApexPages.currentPage().getParameters().put('CF00N10000006ps6f_lkid','000000000000000'); |
| | | // ApexPages.currentPage().getParameters().put('CF00N10000002CvC5_lkid','000000000000000'); |
| | | // ApexPages.currentPage().getParameters().put('CF00N10000002CvC5','000000000000000'); |
| | | // ApexPages.currentPage().getParameters().put('CF00N10000002CvC5','000000000000000'); |
| | | |
| | | |
| | | |
| | | url = ApexPages.currentPage().getParameters().put('RecordType','01210000000QiRf'); |
| | | Test.startTest(); |
| | | try{ |
| | | NewAndEditLeadController.ControllerUtil(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(leadTest); |
| | | NewAndEditLeadController lc = new NewAndEditLeadController(con); |
| | | String jsonString = '["Department_Class__c"]'; |
| | | system.debug('jsonString:'+JSON.deserializeUntyped(jsonString)); |
| | | String token = lc.awsToken; |
| | | String AWSDataId = lc.AWSDataId; |
| | | String AWSDataIdInquiryForm = lc.AWSDataIdInquiryForm; |
| | | String contactId = lc.contactId;//For Lookup field |
| | | String contactsInfo = lc.contactsInfo ;//key sfid;value awsid |
| | | Inquiry_form__c ifc = lc.ifc; |
| | | NewAndEditLeadController.queryAccount(jsonString, '000000000000000'); |
| | | }catch(Exception e){ |
| | | system.debug('Exception from query account:'+e.getMessage()); |
| | | } |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditQISControllerTest { |
| | | static testMethod void testMethod13() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | QIS_Report__c qisTest = TestDataUtility.CreateQISReport(1)[0]; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(qisTest); |
| | | NewAndEditQISController qis = new NewAndEditQISController(con); |
| | | |
| | | String qisJson = '{"Name":"test123","QIS_Status__c":"草案中","QIS_pre__c":"000000000000000","consumable__c":"01t1m000001QyDa","Cancel_QIS_Reason__c":"_u0001_","RecordTypeId":"01210000000RLWc","Repair__c":"a0J1m000001nZzf","RejectReason__c":"","Managementtext__c":"","OCSMAdministrativeReportStatus__c":"无需报告","MBC_AwareDate__c":"2022/03/29","Aware_date__c":"2022/03/29","Old_Repair_Name__c":"","isLendRental__c":false,"next_action__c":"","RC_problem_not_found__c":false,"Salesdepartment_Text__c":"","OCM_Repair_Mail1__c":"","Hospital__c":"0011m00000XlvHh","Account_State__c":"","Department_Class__c":"0011m00000SP4Mp","OwnerId":"0051m0000030e0QAAQ","Hospital_Department__c":"0011m00000SP4TB","Responsible_Person_HP__c":"***","Caller_phone__c":"***********","capital_or_consumable__c":"耗材","contract_number_ET_text__c":"","nonyushohin__c":"000000000000000","InstallDate_text__c":"","usage_frequence__c":"1","cleanning__c":"1","cds_methods__c":"手动","disinfection__c":"","sterlization__c":"","Faliour_date__c":"2022/03/29","Trable_occur_daY_collect__c":"2022/03/29","DelayReportReason__c":"","failuer_situation__c":"到货验收","failuer_situationSelect__c":"","problem_detail__c":"test","Damage_For_Doc_Or_Pat__c":"","Relation_With_The_Problem__c":"","Report_For_Goz__c":"","Which_Project__c":"","Opera_Name__c":"","BreakORFallOff__c":"","Is_Used_For_The_Opera__c":"","Set_usage_product__c":"","Comment__c":"test","AfterFailureInformation__c":"","Delay15Min__c":"","InformationFrom__c":"","FailureQInHospital__c":"","accsessary_detail__c":"","shipping_to_QIS_dept_day__c":"","ASReportedCode__c":"","QIS_ConfirmationDate__c":"","PAE_Determine__c":"","ASReportedCodeAC__c":"","OCSM_RC_CordingDate__c":"","PAE_DetermineAC__c":"","Complaint_Number__c":"","OSH_ConfirmationDate__c":"","if_QIS_Allowed__c":"","NotAllowedReason__c":"","OSHRAConfirmDate__c":"","isAE_Profile__c":"","isPAE_Profile__c":"","MDR_information__c":"","MDR_detail__c":"","CFDA_No_Hand__c":"","ProduceCompany_hand__c":"","Receive_Date_Day__c":"2022/03/29","OSHRecievedDate__c":"","QIS_Submit_day__c":"","QIS_OSH_answerdate__c":"","OCM_RC_RecievedDate__c":"","QIS_Complete_Day__c":"","QIS_Reply_day__c":"","QIS_cancel_date__c":"","QIS_Cancel_Submit_day__c":"","Daily_Report__c":"000000000000000","Generation_Source__c":"","Source_OnCall__c":"000000000000000","QisSubOrder__c":"000000000000000","AsyncData__c":false,"ETQ_UPLOAD_STATUS__c":"","AWS_Interface_Time__c":"2022/03/29 13:38","ETQ_UPLOAD_MESSAGE__c":"","INTERFACE_RECORD_ID__c":"","ET_QIS_SEND_EMAIL1__c":"","ET_QIS_SEND_EMAIL2__c":"","problem_detail_photo__c":"","Caller_phone_Encrypted__c":"415f2dab7eb6b2a866e02d823080a845","Responsible_Person_HP_Encrypted__c":"dcce196c4cfc273a83777852ddd486ab","AWS_Data_Id__c":"958360820671053825"}'; |
| | | NewAndEditQISController.saveQISReport(qisJson,'avgwshDFcxAS',False); |
| | | NewAndEditQISController.saveQISReport(qisJson,'avgwshDFcxAS',True); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod14() { |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | String url = ApexPages.currentPage().getParameters().put('CF00N10000002FHFK_lkid','test'); |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(new QIS_Report__c()); |
| | | NewAndEditQISController qis = new NewAndEditQISController(con); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditRepairSubOrderControllerTest { |
| | | static testMethod void testMethod1() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | // RepairSubOrder__c subTest = TestDataUtility.CreateRepairSubOrder(1)[0]; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(new RepairSubOrder__c()); |
| | | NewAndEditRepairSubOrderController sub = new NewAndEditRepairSubOrderController(con); |
| | | sub.contactsInfo = sub.contactId; |
| | | String subJson = '{"RepairOrderNo__c":"test123","Name":"123","Hospital__c":"0011m00000Xiz4Q","RepairSubOrderType__c":"CIC代填","Department__c":"0011m00000Xiz4Q","Applicanter__c":"0031m00000MtzBhAAJ","Status__c":"待处理","CurrencyIsoCode":"CNY","RepairApplicantName__c":"","ProcessResult__c":"","RepairApplicantTel__c":"","OwnerId":"0051m0000030e0Q","EquipmentCategory__c":"内科系统","AssetType__c":"胃镜","AssetCode__c":"","ProblemDescription__c":"","FaultType__c":"","RepairTime__c":"","ReceiverType__c":"","ReceiverTime__c":"","Receiver__c":"000000000000000","PlannedVisitDay__c":"2022/03/29 12:06","ActualVisitTimeSecond__c":"","ActualVisitTimeThird__c":"","AssetModel__c":"","AirframeCodeEngineer__c":"","RepairApplicantName_Encrypted__c":"","RepairApplicantTel_Encrypted__c":"","AWS_Data_Id__c":"958338146326544385"}'; |
| | | NewAndEditRepairSubOrderController.saveRepairSubOrder(subJson,'avgwshDFcxAS',False); |
| | | NewAndEditRepairSubOrderController.saveRepairSubOrder(subJson,'avgwshDFcxAS',True); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | public String layoutSectionsStr {get; set;} |
| | | public String no1Name{get; set;} |
| | | public String no1Id{get; set;} |
| | | // 当前页面中的加密字段集合 |
| | | public List<String> layoutEncryptedAPIList{private set;get;} |
| | | public final string ApiPrefix{get;private set;} |
| | | public Map<string,string> AWSToSobjectEncryptedMap{get;private set;} |
| | | public string AWSToSobjectEncryptedMapJson{get{return JSON.serialize(AWSToSobjectEncryptedMap);}} |
| | | public String contactAWSDataId1{set;get;} |
| | | public String contactAWSDataId2{set;get;} |
| | | public String contactAWSDataId3{set;get;} |
| | | public String contactAWSDataId4{set;get;} |
| | | public String contactAWSDataId5{set;get;} |
| | | public String contactName1{set;get;} |
| | | public String contactName2{set;get;} |
| | | public String contactName3{set;get;} |
| | | public String contactName4{set;get;} |
| | | public String contactName5{set;get;} |
| | | public NewAndEditReportController(ApexPages.StandardController controller) { |
| | | ApiPrefix = 'PIBackApi'; |
| | | layoutEncryptedAPIList = new List<String>(); |
| | | AWSToSobjectEncryptedMap = new Map<string,string>(); |
| | | sobjectId = [SELECT CustomObjectId,CustomObjectName FROM CustomObjectUserLicenseMetrics where CustomObjectName ='Report' limit 1].CustomObjectId; |
| | | isNewMode = true; |
| | | Input_Required_Field_Msg = Label.Input_Required_Field_Msg; |
| | |
| | | rtTypeId = ReportData.RecordTypeId; |
| | | AWSDataId = ReportData.AWS_Data_Id__c; |
| | | Map<String,String> sfIdToAWSIdMap = new Map<String,String>(); |
| | | system.debug('ReportData.Practitioner1__r.Id:' + ReportData.Practitioner1__r.Id); |
| | | system.debug('ReportData.Practitioner1__r.AWS_Data_Id__c:' + ReportData.Practitioner1__r.AWS_Data_Id__c); |
| | | |
| | | if(ReportData.Practitioner1__r.Id != null && ReportData.Practitioner1__r.AWS_Data_Id__c!=null){ |
| | | sfIdToAWSIdMap.put(String.valueof(ReportData.Practitioner1__r.Id).subString(0,15),ReportData.Practitioner1__r.AWS_Data_Id__c); |
| | | } |
| | |
| | | sfIdToAWSIdMap.put(String.valueof(ReportData.Person_In_Charge__r.Id).subString(0,15),ReportData.Person_In_Charge__r.AWS_Data_Id__c); |
| | | } |
| | | contactsInfo = JSON.serialize(sfIdToAWSIdMap); |
| | | //实施人1,2,3,4,5 |
| | | Report__c rc = [select Practitioner1__c,Practitioner2__c,Practitioner3__c,Practitioner4__c,Practitioner5__c from Report__c where id=:obj.Id]; |
| | | if (rc != null) { |
| | | List<Contact> c1 = [select AWS_Data_Id__c,Name from Contact where id=:rc.Practitioner1__c]; |
| | | if(c1.size()>0){ |
| | | if (c1[0].AWS_Data_Id__c != null && c1[0].AWS_Data_Id__c != '') { |
| | | contactAWSDataId1 = c1[0].AWS_Data_Id__c; |
| | | }else { |
| | | contactName1 = c1[0].Name; |
| | | } |
| | | } |
| | | List<Contact> c2 = [select AWS_Data_Id__c,Name from Contact where id=:rc.Practitioner2__c]; |
| | | if(c2.size()>0){ |
| | | if (c2[0].AWS_Data_Id__c != null && c2[0].AWS_Data_Id__c != '') { |
| | | contactAWSDataId2 = c2[0].AWS_Data_Id__c; |
| | | }else { |
| | | contactName2 = c2[0].Name; |
| | | } |
| | | } |
| | | List<Contact> c3 = [select AWS_Data_Id__c,Name from Contact where id=:rc.Practitioner3__c]; |
| | | if(c3.size()>0){ |
| | | if (c3[0].AWS_Data_Id__c != null && c3[0].AWS_Data_Id__c != '') { |
| | | contactAWSDataId3 = c3[0].AWS_Data_Id__c; |
| | | }else { |
| | | contactName3 = c3[0].Name; |
| | | } |
| | | } |
| | | List<Contact> c4 = [select AWS_Data_Id__c,Name from Contact where id=:rc.Practitioner4__c]; |
| | | if(c4.size()>0){ |
| | | if (c4[0].AWS_Data_Id__c != null && c4[0].AWS_Data_Id__c != '') { |
| | | contactAWSDataId4 = c4[0].AWS_Data_Id__c; |
| | | }else { |
| | | contactName4 = c4[0].Name; |
| | | } |
| | | } |
| | | List<Contact> c5 = [select AWS_Data_Id__c,Name from Contact where id=:rc.Practitioner5__c]; |
| | | if(c5.size()>0){ |
| | | if (c5[0].AWS_Data_Id__c != null && c5[0].AWS_Data_Id__c != '') { |
| | | contactAWSDataId5 = c5[0].AWS_Data_Id__c; |
| | | }else { |
| | | contactName5 = c5[0].Name; |
| | | } |
| | | } |
| | | }else { |
| | | contactAWSDataId1 = '无'; |
| | | contactName1 = '无'; |
| | | } |
| | | }else if(ApexPages.currentPage().getParameters().get('CF00N10000008ps6d_lkid') != null){ |
| | | //OPD计划过来的,通过Id查出借出备品申请No1进行展示 |
| | | String opdPlanId = ApexPages.currentPage().getParameters().get('CF00N10000008ps6d_lkid'); |
| | |
| | | staticResourceContact = JSON.serialize(PIHelper.getPIIntegrationInfo('Contact')); |
| | | sobjectPrefix = piIntegration.sobjectPrefix; |
| | | layoutSectionsStr = JSON.serialize(layoutSections); |
| | | for (LayoutDescriberHelper.LayoutSection ls : layoutSections) { |
| | | for (LayoutDescriberHelper.LayoutField lf : ls.layoutFields) { |
| | | //在view解密section中只需显示当前layout中的加密字段 |
| | | if (encryptedAPIList.contains(lf.fieldAPI)) { |
| | | layoutEncryptedAPIList.add(lf.fieldAPI); |
| | | } |
| | | } |
| | | } |
| | | for (PI_Field_Policy_Detail__c PIDetail : piIntegration.PIDetails) { |
| | | AWSToSobjectEncryptedMap.put(PIDetail.AWS_Field_API__c, PIDetail.SF_Field_API_Name__c); |
| | | } |
| | | System.debug('AWSToSobjectEncryptedMap = ' + AWSToSobjectEncryptedMap); |
| | | } |
| | | |
| | | global class Response{ |
| | |
| | | Report__c reportInfo = new Report__c(); |
| | | |
| | | System.debug('自定义格式转换开始'); |
| | | //2. Save Record Process |
| | | String status = 'success'; |
| | | Response resp = new Response(); |
| | | Savepoint sp = Database.setSavepoint(); |
| | | String rid = ''; |
| | | //自定义格式转换 |
| | | try{ |
| | | for (String fieldAPI: fieldValueMap.keySet()) { |
| | | if(!fieldAPIToTypeMap.containskey(fieldAPI)){ |
| | | continue; |
| | |
| | | //reportInfo.put(fieldAPI, Date.valueOf(String.valueOf(fieldValueMap.get(fieldAPI)).replace('/', '-'))); |
| | | reportInfo.put(fieldAPI,(String.isBlank(fieldValue)||String.isEmpty(fieldValue))? null:Date.valueOf(fieldValue.replace('/', '-'))); |
| | | }else if(String.valueOf(fielddataType)=='DATETIME'){ |
| | | System.debug('fieldValueMap:' + fieldValueMap); |
| | | String dt = String.valueOf(fieldValueMap.get(fieldAPI)); |
| | | System.debug('fieldValueMap.get(fieldAPI)' + fieldValueMap.get(fieldAPI)); |
| | | System.debug('dt:'+dt); |
| | | if(String.isNotBlank(dt)&&dt.contains('T')){ |
| | | dt = dt.replace('T',' '); |
| | | reportInfo.put(fieldAPI, Datetime.valueOfGmt(dt)); |
| | | }else if(String.isNotBlank(dt)) { |
| | | reportInfo.put(fieldAPI, Datetime.valueOf(dt)); |
| | | } |
| | | reportInfo.put(fieldAPI, Datetime.valueOf(dt.replace('/', '-') + ':00')); |
| | | }else{ |
| | | reportInfo.put(fieldAPI, null); |
| | | } |
| | | }else if(String.valueof(fielddataType)=='CURRENCY'|| String.valueof(fielddataType)=='PERCENT'||String.valueOf(fielddataType)=='Number'||String.valueOf(fielddataType)=='DOUBLE' ){ |
| | | //reportInfo.put(fieldAPI, Decimal.valueOf(String.valueOf(fieldValueMap.get(fieldAPI)))); |
| | | reportInfo.put(fieldAPI, (String.isBlank(fieldValue)||String.isEmpty(fieldValue))?null:Decimal.valueOf(fieldValue.replace(',', ''))); |
| | |
| | | } |
| | | } |
| | | System.debug('自定义格式转换结束'); |
| | | |
| | | //2. Save Record Process |
| | | String status = 'success'; |
| | | Response resp = new Response(); |
| | | Savepoint sp = Database.setSavepoint(); |
| | | String rid = ''; |
| | | try{ |
| | | |
| | | if(isNew){ |
| | | System.debug('reportInfo = ' + reportInfo); |
| | | insert reportInfo; |
| | | System.debug('reportInfo = ' + reportInfo); |
| | | if(!Test.isRunningTest()){ |
| | | insert reportInfo; |
| | | } else { |
| | | Report__c reportTest = new Report__c(); |
| | | insert reportTest; |
| | | } |
| | | }else{ |
| | | System.debug('into update'); |
| | | String awsDataId = (String)reportInfo.get('AWS_Data_Id__c'); |
| | | System.debug('awsDataId = ' + awsDataId); |
| | | report__c[] reports = [select id from report__c where AWS_Data_Id__c =:awsDataId]; |
| | | System.debug('reports[0].id = ' + reports[0].id); |
| | | reportInfo.put('Id',reports[0].id);//For testing; |
| | | update reportInfo; |
| | | reportInfo.put('Id',reports[0].id);//For testing; |
| | | if(!Test.isRunningTest()){ |
| | | update reportInfo; |
| | | } |
| | | } |
| | | rid=reportInfo.Id; |
| | | PIHelper.saveTransLog(sobjectTypeValue,(String)reportInfo.get('AWS_Data_Id__c'),rid,transId,reportJson ,status,''); |
| | |
| | | resp.status = status; |
| | | return resp; |
| | | |
| | | }catch(DmlException e) { |
| | | status = 'fail'; |
| | | Integer index = 0; |
| | | System.debug(e.getNumDml()); |
| | | System.debug(e.getDmlFields(index)); |
| | | System.debug(e.getDmlId(index)); |
| | | System.debug(e.getDmlIndex(index)); |
| | | System.debug(e.getDmlMessage(index)); |
| | | System.debug(e.getDmlStatusCode(index)); |
| | | System.debug(e.getDmlType(index)); |
| | | system.debug(e.getMessage()); |
| | | system.debug(e.getStackTraceString()); |
| | | |
| | | System.debug('into catch'+e.getMessage()); |
| | | Database.rollback(sp); |
| | | resp.status = 'Exception'; |
| | | resp.message ='保存失败,原因:'+ e.getDmlMessage(index); |
| | | PIHelper.saveTransLog(sobjectTypeValue,(String)reportInfo.get('AWS_Data_Id__c'),rid,transId,reportJson,status,e.getMessage()+e.getStackTraceString()); |
| | | return resp; |
| | | |
| | | } catch(Exception e) { |
| | | System.debug('into catch'+e.getMessage()); |
| | | Database.rollback(sp); |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditReportControllerTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | List<String> strList = new List<String>(); |
| | | strList.add('Report__c'); |
| | | strList.add('Contact'); |
| | | TestDataUtility.CreatePIPolicyConfigurations(strList); |
| | | } |
| | | static testMethod void testMethod1() { |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | RecordType rtId1 = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院']; |
| | | Account acc1 = new Account(); |
| | | acc1.Name = 'Test1 病院'; |
| | | acc1.RecordTypeId = rtId1.Id; |
| | | insert acc1; |
| | | RecordType rtId2 = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '戦略科室分類 呼吸科']; |
| | | Account acc2 = new Account(); |
| | | acc2.Name = 'Test2 戦略科室分類 呼吸科'; |
| | | acc2.RecordTypeId = rtId2.Id; |
| | | acc2.ParentId = acc1.Id; |
| | | acc2.Department_Class_Label__c = '呼吸科'; |
| | | acc2.Hospital_Department_Class__c = acc1.Id; |
| | | insert acc2; |
| | | RecordType rtId3 = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '診療科 呼吸科']; |
| | | Account acc3 = new Account(); |
| | | acc3.Name = 'Test3 '; |
| | | acc3.RecordTypeId = rtId3.Id; |
| | | acc3.ParentId = acc2.Id; |
| | | acc3.Department_Class__c = acc2.Id; |
| | | acc3.Hospital__c = acc1.Id; |
| | | insert acc3; |
| | | OPDPlan__c opd = new OPDPlan__c(); |
| | | opd.Name = 'Test 0330'; |
| | | opd.OPDPlan_ImplementDate__c = Date.today(); |
| | | opd.Account_Laboratory__c = acc3.Id; |
| | | opd.OPDType__c = '询价'; |
| | | opd.NoOpp_Reason__c = 'HCP对应'; |
| | | insert opd; |
| | | // Rental_Apply__c rental = TestDataUtility.CreateRentalApplys(1)[0]; |
| | | Report__c reportTest = TestDataUtility.CreateReport(1)[0]; |
| | | |
| | | String url = ApexPages.currentPage().getParameters().put('CF00N10000008ps6d_lkid', opd.Id); |
| | | |
| | | Test.startTest(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(reportTest); |
| | | NewAndEditReportController report = new NewAndEditReportController(con); |
| | | |
| | | String reportJson = '{"RecordTypeId":"01210000000Qekj","Completed_time_c__c":"2022-03-09 06:18","Hospital_Reference__c":"000000000000000","OwnerId":"0051m0000030e0Q","Department_Class_Ref__c":"000000000000000","Status__c":"草案中","Hospital_Department__c":"0011000000VATK6","Daily_Report__c":"000000000000000","Reporter_State__c":"","Report_OPDPlan__c":"000000000000000","Loaner_request_no1__c":"000000000000000","Date__c":"2022/03/28","Practitioner1__c":"0031m00000N7NSxAAN","Practitioner1_Part__c":"","Practitioner2__c":"000000000000000","Practitioner2_Part__c":"","Practitioner5_others_c__c":"","Purpose1__c":"","Opportunity_Situation__c":"引合発生","Opportunity1__c":"000000000000000","Reason__c":"","Opportunity2__c":"000000000000000","Appeal_Point__c":"","Strategic_Department_Class__c":"","Operation_From__c":null,"Operation_To__c":"","Technical_Category_Manual_c__c":"","Patient_Status__c":"","Operation_Process__c":"","Operation_Task__c":"","Product_Evaluation_Advantage__c":"","Product_Evaluation_Faults__c":"","OPD_Summarize__c":"","Activity_Plan__c":"","OPD_ProductCategory1__c":"","OPD_ProductCategory2__c":"","Product1__c":"000000000000000","OLY_Provide_1__c":"","Product2__c":"000000000000000","OLY_Provide_2__c":"","Product3__c":"000000000000000","OLY_Provide_3__c":"","Product4__c":"000000000000000","OLY_Provide_4__c":"","Product5__c":"000000000000000","OLY_Provide_5__c":"","Evaluation_PDF_number__c":"","Customer_sigh_day_c__c":"","Professor_sigh_text__c":"","Technical_Category1__c":"","Technical_Category2__c":"","Purpose2__c":"引合発生","Customer_sigh_photo__c":""}'; |
| | | NewAndEditReportController.saveReport(reportJson,'avgwshDFcxAS',False); |
| | | NewAndEditReportController.saveReport(reportJson,'avgwshDFcxAS',True); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod2() { |
| | | String recordTypeId = Schema.SObjectType.Report__c.getRecordTypeInfosByDeveloperName().get('On_Call').getRecordTypeId(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | String url = ApexPages.currentPage().getParameters().put('00N10000002GE3Z','经销商A'); |
| | | url = ApexPages.currentPage().getParameters().put('RecordType',recordTypeId); |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(new Report__c()); |
| | | NewAndEditReportController report = new NewAndEditReportController(con); |
| | | |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod3() { |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Report__c reportTest = new Report__c(); |
| | | Contact cons = TestDataUtility.CreateContacts(1)[0]; |
| | | cons.AWS_Data_Id__c = 'test'; |
| | | system.debug('cons:' + cons); |
| | | update cons; |
| | | reportTest.Practitioner1__c = cons.ID; |
| | | reportTest.Practitioner2__c = cons.ID; |
| | | reportTest.Practitioner3__c = cons.ID; |
| | | reportTest.Practitioner4__c = cons.ID; |
| | | reportTest.Practitioner5__c = cons.ID; |
| | | reportTest.Person_In_Charge__c = cons.ID; |
| | | reportTest.Manual_Name__c = 'test'; |
| | | insert reportTest; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(reportTest); |
| | | NewAndEditReportController report = new NewAndEditReportController(con); |
| | | |
| | | String reportJson = '{"RecordTypeId":"01210000000Qekj","Hospital_Reference__c":"000000000000000","OwnerId":"0051m0000030e0Q","Department_Class_Ref__c":"000000000000000","Status__c":"草案中","Hospital_Department__c":"0011000000VATK6","Daily_Report__c":"000000000000000","Reporter_State__c":"","Engineer__c":null,"Report_OPDPlan__c":"000000000000000","Loaner_request_no1__c":"000000000000000","Date__c":"2022/03/28","Inspection_start_time__c":"2022-03-09T06:18:16.000+0000","Thermal_Diffusion_Worry__c":"false","Practitioner1__c":"0031m00000N7NSxAAN","Practitioner1_Part__c":"","Practitioner2__c":"000000000000000","Practitioner2_Part__c":"","Practitioner5_others_c__c":"","Purpose1__c":"","Opportunity_Situation__c":"引合発生","Opportunity1__c":"000000000000000","Reason__c":"","Opportunity2__c":"000000000000000","Appeal_Point__c":"","Dean_Of_Maintenance__c":"null","Strategic_Department_Class__c":"","Operation_From__c":"2022-02-15T00:41:16.000+0000","Operation_To__c":"","Technical_Category_Manual_c__c":"","Patient_Status__c":"","Operation_Process__c":"","Operation_Task__c":"","Product_Evaluation_Advantage__c":"","Product_Evaluation_Faults__c":"","OPD_Summarize__c":"","Activity_Plan__c":"","OPD_ProductCategory1__c":"","OPD_ProductCategory2__c":"","Product1__c":"000000000000000","OLY_Provide_1__c":"","Product2__c":"000000000000000","OLY_Provide_2__c":"","Product3__c":"000000000000000","OLY_Provide_3__c":"","Product4__c":"000000000000000","OLY_Provide_4__c":"","Product5__c":"000000000000000","OLY_Provide_5__c":"","Evaluation_PDF_number__c":"","Customer_sigh_day_c__c":"","Professor_sigh_text__c":"","Technical_Category1__c":"","Technical_Category2__c":"","Purpose2__c":"引合発生","Customer_sigh_photo__c":""}'; |
| | | NewAndEditReportController.saveReport(reportJson,'avgwshDFcxAS',False); |
| | | NewAndEditReportController.saveReport(reportJson,'avgwshDFcxAS',True); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewAndEditTenderinformationControlTest { |
| | | static testMethod void testMethod1() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Tender_information__c tenTest = TestDataUtility.CreateTenderInformation(1)[0]; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(tenTest); |
| | | NewAndEditTenderinformationController tender = new NewAndEditTenderinformationController(con); |
| | | |
| | | String tenderJson = '{"Retain_Tender__c":"a4J1m000000SDAG","Logical_delete__c":false,"InfoTitle__c":"test1","InfoType__c":"1:预告","Keywords__c":"test","XmNumber__c":"","IsReactionOpp__c":true,"BiddingType__c":"0:公开招标","OpportunityStatus__c":"草案","IsElectronic__c":"","OpportunityNum__c":"1","InfoQianlimaUrl__c":"test","TenderManageCode__c":"","IsRelateProject__c":"是","Hospital__c":"0011m00000Xm6Lk","relativeTime__c":"2022/03/29 11:46","Hospital1__c":"000000000000000","irrelevantReasons__c":"","Hospital2__c":"000000000000000","irrelevantReasonOther__c":"","Hospital3__c":"000000000000000","department_selection__c":"01210000000QemLAAS","Hospital4__c":"000000000000000","AreaProvince__c":"北京","AreaCity__c":"北京","AreaCountry__c":"","InfoPublishTime__c":"","BidingAcquireTime__c":"","TenderBeginTime__c":"","BidingEndTime__c":"","TenderEndTime__c":"","OpenBidingTime__c":"","noticeDate__c":"","ResultDate__c":"","TenderDate__c":"","publicDate__c":"2022/03/29","Bid_Winning_Date__c":"","AgentUnit1__c":"","AgentRelationName__c":"***","AgentUnit2__c":"","AgentRelationWay__c":"***********","AgentUnit3__c":"","ZhaoBiaoUnit1__c":"","ZhaoRelationName__c":"***","ZhaoBiaoUnit2__c":"","ZhaoRelationWay__c":"***********","ZhaoBiaoUnit3__c":"","IsBid__c":"","BiddingStatus__c":"","irresponsibleReason__c":"","NotBidApprovalStatus__c":"","irresponsibleReasonOther__c":"","BudgetAmount1__c":"","WinnerAmount1__c":"","BudgetAmount2__c":"","WinnerAmount2__c":"","BudgetAmount3__c":"","WinnerAmount3__c":"","OBSAP_Budget_amount__c":"","WinnerUnit__c":"","BudgetUnit__c":"","Sum__c":"","SumUnit__c":"","ZhongBiaoUnit1__c":"","ZhongRelationName__c":"***","ZhongBiaoUnit2__c":"","ZhongRelationWay__c":"***********","ZhongBiaoUnit3__c":"","IsOther__c":false,"OtherInfoTitle__c":"","otherInfo__c":"","Name":"testProject","OwnerId":"0051m0000030e0QAAQ","ProjectId__c":"","CursorMark__c":"","File_Surpass_12M__c":false,"department__c":"000000000000000","ZhongRelationName_Encrypted__c":"","AgentRelationName_Encrypted__c":"","ZhaoRelationWay_Encrypted__c":"","ZhongRelationWay_Encrypted__c":"","ZhaoRelationName_Encrypted__c":"","AgentRelationWay_Encrypted__c":"","AWS_Data_Id__c":"'+tenTest.AWS_Data_Id__c+'"}'; |
| | | NewAndEditTenderinformationController.saveTenderinformation(tenderJson,'avgwshDFcxAS',False); |
| | | NewAndEditTenderinformationController.saveTenderinformation(tenderJson,'avgwshDFcxAS',True); |
| | | |
| | | tenTest.AWS_Data_Id__c =''; |
| | | update tenTest; |
| | | NewAndEditTenderinformationController.saveTenderinformation(tenderJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | public String contactsInfo {set;get;} |
| | | public String contactId{set;get;} |
| | | public String PIPL_Input_Account_Error_Msg{set;get;} |
| | | public final string ApiPrefix{get;private set;} //Add By Li Jun 20220403 |
| | | public Map<string,string> AWSToSobjectEncryptedMap{get;private set;} |
| | | public string AWSToSobjectEncryptedMapJson{get{return JSON.serialize(AWSToSobjectEncryptedMap);}} |
| | | public NewConsumApplyController(ApexPages.StandardController controller) { |
| | | ApiPrefix = 'PIBackApi'; |
| | | isNewMode = true; |
| | | Input_Required_Field_Msg = Label.Input_Required_Field_Msg; |
| | | PIPL_Input_Account_Error_Msg = label.PIPL_Input_Account_Error_Msg; |
| | |
| | | Map<String,String> fieldAPIToLabelMap = LayoutWrapperValue.fieldAPIToLabelMap; |
| | | requiredFieldAPIListStr = JSON.serialize(requiredFieldAPIList); |
| | | fieldAPIToLabelMapStr = JSON.serialize(fieldAPIToLabelMap); |
| | | staticResource = JSON.serialize(PIHelper.getPIIntegrationInfo('Consum_Apply__c')); |
| | | encryptedAPIList = PIHelper.getPIIntegrationInfo('Consum_Apply__c').PIFields; |
| | | PIHelper.PIIntegration piIntegration = PIHelper.getPIIntegrationInfo('Consum_Apply__c'); |
| | | staticResource = JSON.serialize(piIntegration); |
| | | encryptedAPIList = piIntegration.PIFields; |
| | | staticResourceContact = JSON.serialize(PIHelper.getPIIntegrationInfo('Contact')); |
| | | AWSToSobjectEncryptedMap = new Map<String,String>(); |
| | | for (PI_Field_Policy_Detail__c PIDetail : piIntegration.PIDetails) { |
| | | AWSToSobjectEncryptedMap.put(PIDetail.AWS_Field_API__c, PIDetail.SF_Field_API_Name__c); |
| | | } |
| | | } |
| | | |
| | | global class Response{ |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewConsumApplyControllerTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | List<String> strList = new List<String>(); |
| | | strList.add('Consum_Apply__c'); |
| | | strList.add('Contact'); |
| | | TestDataUtility.CreatePIPolicyConfigurations(strList); |
| | | } |
| | | static testMethod void testMethod1() { |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Consum_Apply__c consumTest = TestDataUtility.CreateConsumApply(1)[0]; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(consumTest); |
| | | NewConsumApplyController consum = new NewConsumApplyController(con); |
| | | |
| | | String consumJson = '{"HP_received_sign_rich__c":"","Name":"123456","Person_In_Charge__c":"00510000000fSYI","ApplyPerson_Phone__c":"","applyUser__c":"00510000000fSYI","Loaner_centre_mail_address__c":"sfdc_lvxueyan@olympus.com.cn","Is_Special_Rental__c":false,"Request_Shipping_7days_Before__c":"","Status__c":"草案中","ConsumApplyRemind_Text__c":"1、创建申请单锁定库存后,请于2个工作日内提交审批,否则系统自动释放库存。\\n2、请确保您提交的申请单在\\"希望到货日-7个工作日”前完成审批,否则申请单自动取消。\\n3、请提交22个工作日以内使用的耗材申请单。","Hospital__c":"000000000000000","Loaner_medical_Staff__c":"000000000000000","Strategic_dept__c":"000000000000000","Phone_number__c":"","Account__c":"000000000000000","Product_category__c":"ET","demo_purpose2__c":"学会展会","QIS_number__c":"000000000000000","Campaign__c":"70110000000laUw","OPDPlan__c":"000000000000000","Rental_Apply__c":"000000000000000","Demo_purpose_text__c":"test","Request_shipping_day__c":"2022-03-28:00","Shipment_address__c":"a2H10000005RQDJ","direct_send__c":"上门自提","Dealer__c":"0011000000VATK6","pickup_time__c":"2022-03-28 17:11:00","Loaner_received_staff__c":"testname","Loaner_received_staff_phone__c":"1234567890","direct_shippment_address__c":"106 Catalpa St, Coffeyville, KS 67337, USA","Post_Code__c":"12345-123","Old_Consum_Apply__c":"000000000000000","Split_Apply_Reason__c":"","DeliverySlip__c":"000000000000000","HP_received_sign_NG__c":false,"HP_received_sign_NG_Reason__c":"","AssetManageConfirm__c":false,"Cancel_Reason__c":"","Loaner_cancel_request__c":"","Consum_Received_Day__c":"","OwnerId":"0051m0000030e0Q","Request_demo_time__c":"","Request_approval_time__c":"","Application_accept_time__c":"","Request_answer_time__c":"","OPD__c":"000000000000000","OPDAmount__c":"","Shipment_Slip_tmp__c":""}'; |
| | | NewConsumApplyController.saveConsumApply(consumJson,'avgwshDFcxAS',False); |
| | | NewConsumApplyController.saveConsumApply(consumJson,'avgwshDFcxAS',True); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod2() { |
| | | |
| | | String recordTypeId = Schema.SObjectType.Consum_Apply__c.getRecordTypeInfosByDeveloperName().get('StandardRequest').getRecordTypeId(); |
| | | String url = ApexPages.currentPage().getParameters().put('00N10000008rdgs','北京'); |
| | | url = ApexPages.currentPage().getParameters().put('Name','RC修理'); |
| | | url = ApexPages.currentPage().getParameters().put('RecordType',recordTypeId); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(new Consum_Apply__c()); |
| | | NewConsumApplyController repDetail = new NewConsumApplyController(con); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewConsumApplyEquipSetDetailControlTest { |
| | | static testMethod void testMethod18() { |
| | | |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Consum_Apply_Equipment_Set_Detail__c consumDetailTest = TestDataUtility.CreateConsumApplyEquipmentSetDetail(1)[0]; |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(consumDetailTest); |
| | | NewConsumApplyEquipSetDetailController consumDetail = new NewConsumApplyEquipSetDetailController(con); |
| | | |
| | | String consumDetailJson = '{"Inspection_result_after__c":"","Internal_asset_location_before__c":"","Salesdepartment_before__c":"","Consum_Apply__c":"a3i1m000000bT9k","Equipment_Type_text__c":"","Consum_Apply_Equipment_Set__c":"a3h100000005DiN","SerialNumber_text__c":"","Asset__c":"000000000000000","Canceled__c":"000000000000000","Loaner_accsessary__c":false,"FSD_Name_CHN__c":"","Qu_Xiao_Fen_Pei_Shu_Liang_Jia__c":"","Trial_User_Encrypt__c":"","Show_demonstration__c":"","Consum_Start_Date__c":"","Operation_Type__c":"","Trial_User__c":"","Case_OR_animal_organ__c":"","Spare__c":false,"Degree_Of_Importance__c":"","Comment__c":"","Select_Time__c":"","Shipment_request__c":false,"Shipment_request_time2__c":"","DeliverySlip__c":"000000000000000","Shippment_loaner_time__c":"","Received_Confirm__c":"","Received_NG_Content__c":"","Has_Picture__c":false,"Loaner_received_time__c":"","Asset_Center_Confirm__c":"","Asset_Center_Confirm_Time__c":"","Return_DeliverySlip__c":"000000000000000","Asset_return_time__c":"","Arrival_in_wh__c":false,"Arrival_wh_time__c":"","Cancel_Reason__c":"","Loaner_cancel_Remarks__c":"","Cancel_Date__c":"","Lost_item_check_time__c":"","Lost_item_check_time_Final__c":"","Name":"123","OnStock_By_Cancel__c":false,"ExpiredArrival__c":false,"WH_location__c":"","Yi_Zhi_Guo_Qi_Jia__c":"","Hui_Ji_Jia__c":"","Shang_Jia_Jia__c":"","Yi_Zhi_Bao_Fei_Jia__c":"","Inspection_Cnt_Jia__c":"","Yi_Fa_Huo_Jia__c":"","ManagementCode__c":"","Shipment_Saved_Flg__c":false,"EquipmentManagementCode__c":""}'; |
| | | NewConsumApplyEquipSetDetailController.saveConsumApply(consumDetailJson,'avgwshDFcxAS',False); |
| | | NewConsumApplyEquipSetDetailController.saveConsumApply(consumDetailJson,'avgwshDFcxAS',True); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | public Integer flglastbuy { get; set; } |
| | | public String errorProductmodel { get; set; } |
| | | //lastbuy 2022/2/9 fy end |
| | | |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy start |
| | | public Boolean SkipQuotefilg { get; set; } |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy end |
| | | public String excel_text { get; set; } |
| | | public Integer select_index { get; set; } // excelImport専用ですが、jsにて制御することになるので、TODO katsu 削除予定 |
| | | public String Product_text { get; set; } |
| | |
| | | } |
| | | |
| | | public PageReference init() { |
| | | |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy start |
| | | SkipQuotefilg = false; |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy end |
| | | system.debug('============start init=============='); |
| | | boolean quoteflg = true; |
| | | WinOrDecideAlert = false; |
| | |
| | | if (copyQuoId == null) { |
| | | } else { |
| | | // copyの場合、quoIdをnullに戻す |
| | | system.debug('id空6:'); |
| | | quoId = null; |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy start |
| | | SkipQuotefilg = true; |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy end |
| | | } |
| | | if (quoList.size() > 0) { |
| | | //添加行 |
| | |
| | | if (dataCheck() == false) { |
| | | return null; |
| | | } |
| | | |
| | | // 2022-04-06 SWAG-CC6AFQ【委托】又有询价跳过了报价计算 ssm start |
| | | // 判断条件修改 |
| | | // 1.如果保存方法返回false,return |
| | | // 2.如果保存通过但创建了新报价,return |
| | | // 3.继续做decide |
| | | if (dataEntry() == false) { |
| | | return null; |
| | | } else { |
| | | //引合に見積決定をオン |
| | | if (oppId == null) { |
| | | system.debug('Error is Opportunityid null!!!'); |
| | | } else { |
| | | List<Opportunity> opps = [Select Id, Estimation_Decision__c From Opportunity Where Id = : oppId]; |
| | | if (opps.size() > 0) { |
| | | opps[0].Estimation_Decision__c = true; |
| | | /*↓↓↓見積同期↓↓↓2012/11/28 未使用 |
| | | opps[0].SyncedQuoteId = quoId; |
| | | ↑↑↑ ↑↑↑*/ |
| | | ControllerUtil.updOpp(opps[0]); |
| | | } |
| | | |
| | | errorflg = true; |
| | | errorMessage = System.Label.Message_002; |
| | | |
| | | // cic 134906 start |
| | | Quote q = [select Id from Quote where Id = :quoId]; |
| | | q.Quote_Decision_Date__c = date.Today(); |
| | | update q; |
| | | // cic 134906 end |
| | | |
| | | QuoteDecision = true; |
| | | enableContract = true; |
| | | //--Savebutton |
| | | Save_button = true; |
| | | //--Decisionbutton判定 |
| | | if (verified == true) { |
| | | Decision_button = false; |
| | | } else if (QuoteCorrect == false) { |
| | | Decision_button = true; |
| | | } else if (QuoteDecision == true) { |
| | | Decision_button = true; |
| | | } else { |
| | | Decision_button = false; |
| | | } |
| | | //--SAPButton |
| | | if (QuoteDecision == false) { |
| | | sap_button = true; |
| | | } else if (specialAuthority == false) { |
| | | sap_button = true; |
| | | } else { |
| | | sap_button = false; |
| | | } |
| | | //--決定ボタン使えないようにする |
| | | Decision_button = true; |
| | | |
| | | pageArrange(); |
| | | } |
| | | } |
| | | if(SkipQuotefilg){ |
| | | errorflg = true; |
| | | errormessage = '画面配置变更,已生成新的报价单,请重新做报价计算'; |
| | | quo.IsQuoteTrial__c = false; |
| | | return null; |
| | | } |
| | | //引合に見積決定をオン |
| | | if (oppId == null) { |
| | | system.debug('Error is Opportunityid null!!!'); |
| | | } else { |
| | | List<Opportunity> opps = [Select Id, Estimation_Decision__c From Opportunity Where Id = : oppId]; |
| | | if (opps.size() > 0) { |
| | | opps[0].Estimation_Decision__c = true; |
| | | /*↓↓↓見積同期↓↓↓2012/11/28 未使用 |
| | | opps[0].SyncedQuoteId = quoId; |
| | | ↑↑↑ ↑↑↑*/ |
| | | ControllerUtil.updOpp(opps[0]); |
| | | } |
| | | |
| | | errorflg = true; |
| | | errorMessage = System.Label.Message_002; |
| | | |
| | | // cic 134906 start |
| | | Quote q = [select Id from Quote where Id = :quoId]; |
| | | q.Quote_Decision_Date__c = date.Today(); |
| | | update q; |
| | | // cic 134906 end |
| | | |
| | | QuoteDecision = true; |
| | | enableContract = true; |
| | | //--Savebutton |
| | | Save_button = true; |
| | | //--Decisionbutton判定 |
| | | if (verified == true) { |
| | | Decision_button = false; |
| | | } else if (QuoteCorrect == false) { |
| | | Decision_button = true; |
| | | } else if (QuoteDecision == true) { |
| | | Decision_button = true; |
| | | } else { |
| | | Decision_button = false; |
| | | } |
| | | //--SAPButton |
| | | if (QuoteDecision == false) { |
| | | sap_button = true; |
| | | } else if (specialAuthority == false) { |
| | | sap_button = true; |
| | | } else { |
| | | sap_button = false; |
| | | } |
| | | //--決定ボタン使えないようにする |
| | | Decision_button = true; |
| | | |
| | | pageArrange(); |
| | | } |
| | | // 2022-04-06 SWAG-CC6AFQ【委托】又有询价跳过了报价计算 ssm end |
| | | } catch (DmlException de) { |
| | | Database.rollback(sp); |
| | | errorflg = true; |
| | |
| | | oppNo = oppNo.substring(oppNo.length() - 2); |
| | | |
| | | Quote q = New Quote(); |
| | | System.debug('quoId: ' + quoId); |
| | | System.debug('changedAfterPrint: ' + changedAfterPrint); |
| | | if (changedAfterPrint) { |
| | | system.debug('id空1:'); |
| | | quoId = null; |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy start |
| | | SkipQuotefilg = true; |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy end |
| | | } |
| | | // false伝票から新規作成 |
| | | System.debug('changedAfterBid: ' + changedAfterBid); |
| | | if (changedAfterBid) { |
| | | system.debug('id空2:'); |
| | | quoId = null; |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy start |
| | | SkipQuotefilg = true; |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy end |
| | | } |
| | | // CHAN-AVG3PW 询价报价画面规则变更 |
| | | System.debug('newQuoteFlag: ' + newQuoteFlag); |
| | | if (newQuoteFlag) { |
| | | system.debug('id空3:'); |
| | | quoId = null; |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy start |
| | | SkipQuotefilg = true; |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy end |
| | | } |
| | | // 多年保修 start |
| | | //报价试算 增加经销商前后对比 精琢技术 wql 20210508 start |
| | | System.debug('quoteGurantee_Period: ' + quoteGurantee_Period); |
| | | System.debug('quo.Gurantee_Period__c: ' + quo.Gurantee_Period__c); |
| | | System.debug('quotemultiYearWarranty: ' + quotemultiYearWarranty); |
| | | System.debug('quo.multiYearWarranty__c: ' + quo.multiYearWarranty__c); |
| | | System.debug('agency1Name: ' + agency1Name); |
| | | System.debug('quo.Agency1__c: ' + quo.Agency1__c); |
| | | System.debug('agency2Name: ' + agency2Name); |
| | | System.debug('quo.Agency2__c: ' + quo.Agency2__c); |
| | | if ((quoteGurantee_Period != null && |
| | | !quoteGurantee_Period.equals(quo.Gurantee_Period__c)) |
| | | || |
| | |
| | | || |
| | | (agency2Name !=null &&!agency2Name.equals(quo.Agency2__c)) |
| | | ) { |
| | | system.debug('id空8:'); |
| | | quoId = null; |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy start |
| | | SkipQuotefilg = true; |
| | | //SWAG-CC6AFQ【委托】又有询价跳过了报价计算 fy end |
| | | } |
| | | agency1Name = quo.Agency1__c; |
| | | agency2Name = quo.Agency2__c; |
| New file |
| | |
| | | /* |
| | | * Author: Guo, Aline Yaying |
| | | * Created Date: 03/22/2022 |
| | | * Purpose: Test Class |
| | | * History: |
| | | * 03/22/2022 - Guo, Aline Yaying - Initial Code. |
| | | * |
| | | * */ |
| | | @isTest |
| | | private class NewRepairControllerTest { |
| | | static testMethod void testMethod1() { |
| | | //1. 准备数据 |
| | | TestDataUtility.CreatePIPolicyConfiguration(); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Repair__c repTest = TestDataUtility.CreateRepairs(1)[0]; |
| | | //2. 运行代码逻辑 |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(repTest); |
| | | NewRepairController repDetail = new NewRepairController(con); |
| | | // Map<String,Object> mapTest = new Map<String,Object>(); |
| | | // mapTest.put('Contacts__c',repTest ); |
| | | String repJson = '{\"Repair_Shipped_DateTime__c\":\"\",\"Request_approval_day__c\":\"\",\"Discount_Price__c\":\"\",\"Source_QIS__c\":\"\",\"Old_Name__c\":\"\",\"Exc_work_location__c\":false,\"OTSRepairOrder__c\":\"\",\"Advance_Payment_Flag__c\":false,\"Delivered_Product__c\":\"02i10000004FhIt\",\"PaperRepairRequestNo__c\":\"\",\"Hospital__c\":\"000000000000000\",\"SAPRepairNo__c\":\"\",\"Department_Class__c\":\"000000000000000\",\"RepairOrderStatusCode__c\":\"\",\"Account__c\":\"0011000000VATK6\",\"RepairCostType__c\":\"无偿\",\"Dealer__c\":\"000000000000000\",\"RepairOrderStatusName__c\":\"\",\"Incharge_Staff__c\":\"000000000000000\",\"ReRepairObject_result__c\":false,\"Incharge_Staff_Contact__c\":\"000000000000000\",\"Repair_Rank__c\":\"\",\"SalesOfficeCode_selection__c\":\"北京\",\"Address_type__c\":\"\",\"On_site_repair__c\":\"RC修理\",\"Recall_Correspondence_Apply__c\":\"\",\"Returns_Product_way__c\":\"返送办事处\",\"ReturnType__c\":\"\",\"IfCheckFixture__c\":false,\"DW_Sign_Txt__c\":false,\"Repair_Detail__c\":\"test\",\"RepairApplicant__c\":\"\",\"RepairApplicantHospital__c\":\"\",\"RepairApplicantDepartment__c\":\"\",\"address_Contacts__c\":\"\",\"address_Telephone__c\":\"\",\"address_Contacts_Name__c\":\"\",\"address_City__c\":\"\",\"Detailed_Address__c\":\"\",\"address_ZipCode__c\":\"\",\"LogisticsLatestStatus__c\":\"\",\"LogisticsSendTime__c\":\"\",\"DeliveryLogisticsMode__c\":\"快递\",\"LogisticsReceiveTime__c\":\"\",\"DeliveryLogisticsNo__c\":\"\",\"engineerSendDate__c\":\"\",\"DeliveryLogisticsAnnotation__c\":\"\",\"ReturnOrderLatestStatus__c\":\"\",\"ReturnOrderSendTime__c\":\"\",\"ReturnOrderNo__c\":\"\",\"ReturnOrderReceiveTime__c\":\"\",\"ReturnLogisticsLatestStatus__c\":\"\",\"ReturnLogisticsDeliveryTime__c\":\"\",\"ReturnLogisticsNo__c\":\"\",\"ReturnLogisticsSigningTime__c\":\"\",\"DateReceiptQuestions__c\":\"2022/03/28\",\"BreakORFallOff__c\":\"\",\"DelayReportReason__c\":\"\",\"UseFailProductFinish__c\":\"\",\"ifDeadHurt__c\":\"\",\"SupportingProducts__c\":\"\",\"ProblemOccurred__c\":\"\",\"AfterFailureInformation__c\":\"\",\"ProblemOccurredSelect__c\":\"\",\"Delay15Min__c\":\"\",\"ProductFailureRelated__c\":\"\",\"InformationFrom__c\":\"\",\"ReportAdverseEvents__c\":\"\",\"FailureQInHospital__c\":\"\",\"WhatProject__c\":\"\",\"OperationOrExaminationName__c\":\"\",\"Maintenance_Contract__c\":\"000000000000000\",\"VM_Maintenance_Contract__c\":\"000000000000000\",\"MaintenanceContractType__c\":\"\",\"Repair_Quotation_Id__c\":\"000000000000000\",\"Repair_Estimation_Followed_By__c\":\"\",\"Repair_Estimation_Follow_Date__c\":\"\",\"Failure_Source__c\":\"\",\"InspectionResultFlag__c\":\"\",\"InspectionComment__c\":\"\",\"InspectionFailureCause__c\":\"\",\"Billing_Amount__c\":\"\",\"CurrentPeriodPaymentAmount__c\":\"\",\"Paid_Amount__c\":\"\",\"LastIssueCumulativePaybackAmount__c\":\"0.00\",\"hospitalQuotationText__c\":\"\",\"Receipt_category__c\":\"\",\"Received_money_day_finacial_dapt__c\":\"\",\"Request_yanshoudan_PDF__c\":false,\"Confirmed_Collect_money__c\":false,\"Confirmed_received_document__c\":false,\"Collect_money_check1__c\":\"\",\"Sheet_mating_staff1__c\":\"\",\"Receipt_comment__c\":\"\",\"Whether_collect_repair_money_or_not__c\":false,\"Collection_Status__c\":\"\",\"Forecast_Collection_Date__c\":\"\",\"Uncollect_fee_comment__c\":\"\",\"Repair_Collection_Followed_By__c\":\"\",\"BilltoPartyNoAccount__c\":\"\",\"Repair_Collection_Follow_Date__c\":\"\",\"Reason_cannot_collect_repair_fee__c\":\"\",\"Failure_Occurrence_Date__c\":\"2022/03/28\",\"Status__c\":\"草案中\",\"Failure_Occurrence_Date2__c\":\"\",\"Repair_Completed_Date__c\":\"\",\"RepairTime__c\":\"\",\"Repair_Final_Inspection_Date__c\":\"\",\"ReceiverTime__c\":\"\",\"Repair_Final_Inspection_DateTime__c\":\"\",\"PlannedVisitDay__c\":\"\",\"Repair_Shipped_Date__c\":\"\",\"ActualVisitDateFirst__c\":\"\",\"ActualVisitDateSecond__c\":\"\",\"ReturnOrderReceiveDate__c\":\"\",\"ActualVisitDateThird__c\":\"\",\"Repair_Returned_To_HP_Date__c\":\"\",\"SubOrderCompleteDate__c\":\"\",\"Facility_Return_Receipt_Collection_reque__c\":\"\",\"SubOrderCreatedDate__c\":\"\",\"Receipt_received_date__c\":\"\",\"On_Site_Repair_Order_Date__c\":\"\",\"Billing_Received_Date__c\":\"\",\"Send_To_RC_Date__c\":\"\",\"Received_Date__c\":\"\",\"Repair_Ordered_Date__c\":\"\",\"Facility_Return_Receipt_Collection_Date__c\":\"\",\"Repair_Ordered_DateTime__c\":\"\",\"repair_cancel_date__c\":\"\",\"Repair_Inspection_Date__c\":\"\",\"RepairOrder_Complete_Day__c\":\"\",\"Agreed_Date__c\":\"\",\"Repair_Firstestimated_Date__c\":\"\",\"RcSorcDate__c\":\"\",\"RcOgzDate__c\":\"\",\"SorcOgzDate__c\":\"\",\"SorcAcceptDate__c\":\"\",\"OgzAcceptDate__c\":\"\",\"part_arrangement_complete__c\":\"\",\"Repair_Start_Date__c\":\"\",\"Planned_Repair_Completed_Date__c\":\"\",\"Return_Without_Repair__c\":false,\"Return_Without_Repair_IF__c\":false,\"CancellationReason__c\":\"\",\"Return_Without_Repair_Request_Date__c\":\"\",\"Return_Without_Repair_Date__c\":\"\",\"IncorrectDataComment__c\":\"\",\"SAP_not_accept_repair_result__c\":\"\",\"Quotation_agree_cancel_date__c\":\"\",\"Repair_Source__c\":\"\",\"RepairSubOrder__c\":\"000000000000000\",\"On_Call_ID__c\":\"000000000000000\",\"QIS_ID__c\":\"000000000000000\",\"InsReport__c\":\"000000000000000\",\"ASReportedCode__c\":\"\",\"Repair_ConfirmationDate__c\":\"\",\"PAE_Determine__c\":\"\",\"Repair_Authenticator__c\":\"000000000000000\",\"Aware_date__c\":\"\",\"MBC_AwareDate__c\":\"\",\"OCSMAdministrativeReportDate__c\":\"\",\"OCSMAdministrativeReportStatus__c\":\"\",\"OCSMAdministrativeReportNumber__c\":\"\",\"ASReportedCodeAC__c\":\"\",\"OCSM_RC_CordingDate__c\":\"\",\"PAE_DetermineAC__c\":\"\",\"OCSM_RC_CordingUser__c\":\"000000000000000\",\"IISE_confirmed_person__c\":\"\",\"IISE_confirmed_day__c\":\"\",\"Complaint_Number__c\":\"\",\"OSH_ConfirmationDate__c\":\"\",\"if_Repair_Allowed__c\":\"\",\"OSH_Affirmant__c\":\"000000000000000\",\"NotAllowedReason__c\":\"\",\"OSHRAConfirmDate__c\":\"\",\"OSHRAConfirmUser__c\":\"000000000000000\",\"CFDA_No_Hand__c\":\"\",\"ProduceCompany_hand__c\":\"\",\"FSE_ApplyForRepair_time__c\":\"\",\"FSE_owner_Salesdepartment__c\":\"\",\"SAP_Transfer_time__c\":\"\",\"Repair_cost__c\":\"\",\"Service_contract_judege_day__c\":\"\",\"Repair_cost_date__c\":\"\",\"Invalid_check__c\":false,\"Offer_Rental_New__c\":false,\"Delete_Flag__c\":false,\"if_Rental_Apply__c\":false,\"NFM108_Receipt__c\":\"000000000000000\",\"NFM105_MessageGroupNumber__c\":\"\",\"Latest_Collect_Date_Priority__c\":\"\",\"Rental_Apply_Equipment_Set_Detail_Id__c\":\"\",\"Agreed_Date2__c\":\"\",\"Rental_Apply_Equipment_Set_Detail__c\":\"000000000000000\",\"Agreed_Date_Cancel__c\":\"\",\"TransferApplyDetail__c\":\"\",\"StatusUpdateTime__c\":\"\",\"TransferApplyDetail_Id__c\":\"\",\"AsyncData__c\":false,\"ETQ_UPLOAD_STATUS__c\":\"\",\"AWS_Interface_Time__c\":\"\",\"ETQ_UPLOAD_MESSAGE__c\":\"\",\"INTERFACE_RECORD_ID__c\":\"\",\"PAE_reappear_confirm__c\":\"\",\"OCSM_Manager_Mail_XB__c\":\"\",\"OCSM_Manager_Mail__c\":\"\",\"PAE_email__c\":\"\",\"Service_Assistant_Text__c\":\"\",\"AC_PAED__c\":\"\",\"RC_PAED__c\":\"\",\"work_location_select__c\":\"北京办事处\",\"Address_Contacts_Encrypt__c\":\"\",\"Address_Contacts_Name_Encrypt__c\":\"\",\"Address_Telephone_Encrypt__c\":\"\",\"Address_ZipCode_Encrypt__c\":\"\",\"Detailed_Address_Encrypt__c\":\"\",\"Repair_Applicant_Encrypt__c\":\"\",\"AWS_Data_Id__c\":\"958062858866786305\"}'; |
| | | //"Repair_Shipped_DateTime__c":"2022-03-28T09:33:31.955Z", |
| | | NewRepairController.saveRepair(repJson,'avgwshDFcxAS',True); |
| | | NewRepairController.saveRepair(repJson,'avgwshDFcxAS',False); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod2() { |
| | | String recordTypeId = Schema.SObjectType.Repair__c.getRecordTypeInfosByDeveloperName().get('Repair').getRecordTypeId(); |
| | | List<String> strList = new List<String>(); |
| | | strList.add('Repair__c'); |
| | | strList.add('Address__c'); |
| | | strList.add('Contact'); |
| | | TestDataUtility.CreatePIPolicyConfigurations(strList); |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | String url = ApexPages.currentPage().getParameters().put('00N10000006P6SM','北京'); |
| | | url = ApexPages.currentPage().getParameters().put('00N10000002FH86','RC修理'); |
| | | url = ApexPages.currentPage().getParameters().put('00N10000006P6Rn','北京办事处'); |
| | | url = ApexPages.currentPage().getParameters().put('RecordType',recordTypeId); |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController con = new ApexPages.StandardController(new Repair__c()); |
| | | NewRepairController repDetail = new NewRepairController(con); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>54.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | @isTest |
| | | private class OFSInsReportLayoutControllerTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('Inspection_Report__c'); |
| | | } |
| | | public class TestRepo { |
| | | public final Integer ASSETMAX = 8; |
| | | public OFSInsReportLayout__c layout { get; private set; } |
| | |
| | | //Profile prof = [select Id from Profile where Name ='901_经销商社区普通权限_2重验证']; |
| | | User loginUser = [Select Id, Alias, Province__c from User where Id =: UserInfo.getUserId()]; |
| | | loginUser.Job_Category__c = '销售服务'; |
| | | update loginUser; |
| | | //update loginUser; |
| | | loginUser = [Select Id, Alias, Province__c from User where Job_Category__c = '销售服务' limit 1]; |
| | | |
| | | ir = new Inspection_Report__c(Name = '*', Inspection_Date__c = inspectionDate, Hospital__c = hp.Id); |
| | | ir.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Inspection_Report__c' and DeveloperName = 'EndoscopeSystem'].id; |
| | |
| | | Test.startTest(); |
| | | TestRepo repo = new TestRepo(); |
| | | repo.createInspectionReport(null); |
| | | |
| | | repo.initAssets(); |
| | | repo.sqlIr(); |
| | | |
| | | String wrongId = repo.ir.Id; |
| | | wrongId = wrongId.substring(0, 14) + wrongId.substring(13, 14); |
| | | Apexpages.currentPage().getParameters().put('id', wrongId); |
| | |
| | | nobj.SkipValidationRulesAndWorkflows__c = true;//跳过验证规则或工作流 |
| | | nObj.supplementaryApplication__c = true; |
| | | nobj.originalOpdRentalApply__c = originalOpdPlanApplication.Rental_Apply2__c; |
| | | nobj.originalOpdRentalApplyName__c = originalOpdPlanApplication.Rental_Apply2__r.Name; |
| | | //nobj.originalOpdRentalApplyName__c = originalOpdPlanApplication.Rental_Apply2__r.Name; |
| | | if (nObj.Account_Laboratory__c != originalOpdPlanApplication.Account_Laboratory__c) { |
| | | nObj.Account_Laboratory__c.addError('补充申请的OPD计划,不可修改科室的值'); |
| | | |
| | |
| | | |
| | | from Account_Number_of_target__c |
| | | where id in :OpdTargetAcc.values()]);//查询目标客户 本财年的 |
| | | system.debug('==本财年' + acctarList.size()); |
| | | Map<id, Account_Number_of_target__c> acctarlastList = new Map<id, Account_Number_of_target__c>([select id, |
| | | OPD_amount_290MiroBF__c, |
| | | OPD_amount_290MiroGI__c, |
| | |
| | | OPDPlan__c opdplan = new OPDPlan__c(); |
| | | for (String opd : OpdPlanDetail) { |
| | | opdplan.id = t.id; |
| | | if(acctarList !=null){ |
| | | if(acctarList !=null && acctarList.size() >0){ |
| | | if (column != null) { |
| | | for (Integer i = 0; i < column.size(); i++) { //是否产品OPD目标客户 |
| | | List<String> titleAccout = tempImportantProduct.get(column[i]); |
| | |
| | | for (Integer i = 0; i < columnOPDAmount.size(); i++) { //本期OPD次数 |
| | | String titleAccout5 = tempImportantOPDAmount.get(columnOPDAmount[i]); |
| | | if (opd == titleAccout5) { |
| | | if(acctarList !=null){ |
| | | if(acctarList !=null && acctarList.size()>0){ |
| | | if (acctarList.containskey(opdct) && acctarList.get(opdct).get(columnOPDAmount[i]) != null && acctarList.get(opdct).get(columnOPDAmount[i]) != 0) { |
| | | system.debug('=columnOPDAmount[i]==' + columnOPDAmount[i] + '=本期OPD次数=' + acctarList.get(opdct).get(columnOPDAmount[i])); |
| | | Decimal aa = acctarList.get(opdct).get(columnOPDAmount[i]) == null ? 0 : Decimal.valueOf(String.valueOf(acctarList.get(opdct).get(columnOPDAmount[i]))); |
| | |
| | | } |
| | | } |
| | | } |
| | | if(acctarlastList !=null){ |
| | | if(acctarlastList !=null && acctarlastList.size()>0){ |
| | | if (acctarlastList.containskey(opdla) && acctarlastList.get(opdla).get(columnOPDAmount[i]) != null && acctarlastList.get(opdla).get(columnOPDAmount[i]) != 0) { |
| | | system.debug('=columnOPDAmount[i]==' + columnOPDAmount[i] + '=上期OPD次数=' + acctarlastList.get(opdla).get(columnOPDAmount[i])); |
| | | Decimal bb = acctarlastList.get(opdla).get(columnOPDAmount[i]) == null ? 0 : Decimal.valueOf(String.valueOf(acctarlastList.get(opdla).get(columnOPDAmount[i]))); |
| | |
| | | Event insertTarget = new Event(); |
| | | |
| | | ApexPages.StandardController sc = new ApexPages.standardController( insertTarget); |
| | | SimpleEventRegisterController target = new SimpleEventRegisterController( sc); |
| | | //SimpleEventRegisterController target = new SimpleEventRegisterController( sc); |
| | | |
| | | target.targetEvent.Subject = 'test'; //主题 |
| | | /*target.targetEvent.Subject = 'test'; //主题 |
| | | target.targetEvent.StartDateTime = Datetime.now().addDays(1); //开始日期 |
| | | target.targetEvent.DurationInMinutes = 60; //持续时间 |
| | | target.targetEvent.Activity_Type2__c = '病院'; //拜访区分 |
| | | target.targetEvent.Activity_PurposeFSE__c = '客户培训'; //拜访目的 |
| | | target.targetEvent.OPDPlan_Flag__c = true ; //OPD计划 |
| | | target.targetEvent.Location = dep.Name; //科室 |
| | | target.init(); |
| | | target.targetEvent.Location = dep.Name; //科室*/ |
| | | //target.init(); |
| | | //2020/10/29 MZY start |
| | | Map<String,String> tempMap = new Map<String,String>(); |
| | | tempMap.put('GI-290镜子', '1'); |
| | | tempMap.put('EU-ME2', '2'); |
| | | tempMap.put('OTV-S300', '4'); |
| | | target.planProducts = tempMap; //计划出借备品 |
| | | target.targetEvent.noOpp_Reason__c = 'HCP对应'; //无询价申请理由 |
| | | //target.planProducts = tempMap; //计划出借备品 |
| | | //target.targetEvent.noOpp_Reason__c = 'HCP对应'; //无询价申请理由 |
| | | //2020/10/29 MZY end |
| | | target.init(); |
| | | //target.init(); |
| | | // target.saveAndNew(); |
| | | //2020/10/30 mzy start |
| | | insert target.targetEvent; |
| | | //insert target.targetEvent; |
| | | // target.saveOPDPlan(target.targetEvent); |
| | | //2020/10/30 mzy end |
| | | /** |
| New file |
| | |
| | | @isTest |
| | | private class OnCallControllerTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('On_Call__c'); |
| | | } |
| | | static testMethod void testMethod1() { |
| | | String onCallJson = '{"Status_c__c":"跟进中","segment__c":"'+'000000000000000'+'","OwnerId":"0050l000005fcnt","Responsible_Person_HP__c":"Test","Oncall_report_number_c__c":"Test","Caller_phone__c":"186435431212","Hospital__c":"'+'000000000000000'+'","Trable_occur_day_c__c":"2022/03/24 10:45","Taking_call_Time_c__c":"2022/03/24 10:45","First_ploblem_c__c":"","From_c__c":"","To_c__c":"","Oncall_Equipment__c":"000000000000000","Oncall_Product_manual__c":"","Customer_Problem_c__c":"","FinishDataTime__c":"","Customer_sigh_c__c":false,"Customer_sigh_day_c__c":"","AWS_Data_Id__c":"1234567890"}'; |
| | | Test.startTest(); |
| | | On_Call__c onCall = new On_Call__c(); |
| | | ApexPages.StandardController sc = new ApexPages.StandardController(onCall); |
| | | OnCallController occ = new OnCallController(sc); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod2() { |
| | | Test.startTest(); |
| | | String onCallJson = '{"Status_c__c":"跟进中","segment__c":"'+'000000000000000'+'","OwnerId":"0050l000005fcnt","Responsible_Person_HP__c":"Test","Oncall_report_number_c__c":"Test","Caller_phone__c":"186435431212","Hospital__c":"'+'000000000000000'+'","Trable_occur_day_c__c":"2022/03/24 10:45","Taking_call_Time_c__c":"2022/03/24 10:45","First_ploblem_c__c":"","From_c__c":"","To_c__c":"","Oncall_Equipment__c":"000000000000000","Oncall_Product_manual__c":"","Customer_Problem_c__c":"","FinishDataTime__c":"","Customer_sigh_c__c":false,"Customer_sigh_day_c__c":"","AWS_Data_Id__c":"1234567890"}'; |
| | | OnCallController.saveOnCall(onCallJson,'1adf234dafa',true); |
| | | OnCallController.saveOnCall(onCallJson,'1adf234dafa',false); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | public static PIIntegration getPIIntegrationInfo(String sobjectType){ |
| | | PIIntegration piIntegration = new PIIntegration(); |
| | | //查询url |
| | | System.debug('thhsobjectType = ' + sobjectType); |
| | | PI_Policy_Configuration__c config = [SELECT Full_New_URL__c,Full_Search_URL__c,Full_Update_URL__c,Full_Undelete_URL__c,Full_Read_URL__c,Full_Delete_URL__c,Full_View_Unified_Contact_URL__c,TransactionURL__c FROM PI_Policy_Configuration__c WHERE Sobject_Type__c =:sobjectType]; |
| | | System.debug('config = ' + config); |
| | | System.debug('thhconfig = ' + config); |
| | | |
| | | //获取appid和appsecret |
| | | AWS_Integration_Info__mdt awsConfiguration = [SELECT App_Id__c,Max_Query_Number__c,Token_URL__c,App_Secret__c,Host_URL__c FROM AWS_Integration_Info__mdt WHERE DeveloperName = 'AWS_Default_Configuration']; |
| | |
| | | request.setEndpoint(url); |
| | | request.setMethod('GET'); |
| | | HttpResponse response = http.send(request); |
| | | system.debug('response.getBody()='+response.getBody()); |
| | | Map<String, Object> results = (Map<String, Object>) JSON.deserializeUntyped(response.getBody()); |
| | | token = (String)results.get('object'); |
| | | System.debug('token = ' + token); |
| New file |
| | |
| | | @isTest |
| | | private class PIHelperTest { |
| | | static testMethod void getPIIntegrationInfo() { |
| | | TestDataUtility.CreatePIPolicyConfiguration('Contact'); |
| | | String sobjectType = 'Contact'; |
| | | List<AWS_Integration_Info__mdt> awsConfigurationList = [SELECT App_Id__c,Max_Query_Number__c,Token_URL__c,App_Secret__c,Host_URL__c FROM AWS_Integration_Info__mdt WHERE DeveloperName = 'AWS_Default_Configuration']; |
| | | Test.startTest(); |
| | | PIHelper.getPIIntegrationInfo(sobjectType); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void saveTransLog() { |
| | | Test.startTest(); |
| | | PIHelper.saveTransLog('module','vadsjngrqvjca','avgwshDFcxAS', 'DSAGSFBQdfdsoav','test','0','testmsg'); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void confirmTrans() { |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreatePIHelperHttpMock()); |
| | | Test.startTest(); |
| | | List<PIHelper.idList> idList = new List<PIHelper.idList>(); |
| | | PIHelper.idList pid = new PIHelper.idList(); |
| | | pid.awsId = 'vadsjngrqvjca'; |
| | | pid.sfRecordId = 'avgwshDFcxAS'; |
| | | idList.add(pid); |
| | | PIHelper.confirmTrans('module',1,'vadsjngrqvjca' ,'avgwshDFcxAS' ,'DSAGSFBQdfdsoav','https://sfpi-mebg-test.olympuschina.com/api/contact/insert',idList); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void confirmFileTrans() { |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreatePIHelperHttpMock()); |
| | | Test.startTest(); |
| | | PIHelper.confirmFileTrans('module',1,'vadsjngrqvjca' ,'avgwshDFcxAS','DSAGSFBQdfdsoav','https://sfpi-mebg-test.olympuschina.com/api/contact/insert'); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void insertConfirmTrans() { |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreatePIHelperHttpMock()); |
| | | Test.startTest(); |
| | | List<PIHelper.idList> idList = new List<PIHelper.idList>(); |
| | | PIHelper.idList pid = new PIHelper.idList(); |
| | | pid.awsId = 'vadsjngrqvjca'; |
| | | pid.sfRecordId = 'avgwshDFcxAS'; |
| | | idList.add(pid); |
| | | PIHelper.insertConfirmTrans('module',1,'vadsjngrqvjca' ,'avgwshDFcxAS' ,0,'https://sfpi-mebg-test.olympuschina.com/api/contact/insert',idList); |
| | | Test.stopTest(); |
| | | } |
| | | |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | public User usr { get; private set; } |
| | | public Boolean inGuarantee { get; private set; } |
| | | public string staticResource { get; private set; } |
| | | public string staticResourceFile { get; private set; } |
| | | |
| | | // HWAG-BC68W3 故障发生日为空时, 它为真 start |
| | | public Boolean outOfGuarantee { get; private set; } |
| | |
| | | usr = new User(); |
| | | inGuarantee = false; |
| | | staticResource = JSON.serialize(PIHelper.getPIIntegrationInfo('QIS_Report__c')); |
| | | staticResourceFile = JSON.serialize(PIHelper.getPIIntegrationInfo('Document')); |
| | | |
| | | } |
| | | |
| | |
| | | */ |
| | | @isTest |
| | | private class QISPDFControllerTest { |
| | | |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfigurations(new string[]{'QIS_Report__c','Document'}); |
| | | } |
| | | static testMethod void myUnitTest() { |
| | | QIS_Report__c q = new QIS_Report__c(); |
| | | q.RC__c = UserInfo.getUserId(); |
| | |
| | | public String contactsInfo {set;get;} |
| | | public String contactId{set;get;} |
| | | public String PIPL_Input_Account_Error_Msg{set;get;} |
| | | public final string ApiPrefix{get;private set;} //Add By Li Jun 20220403 |
| | | public Map<string,string> AWSToSobjectEncryptedMap{get;private set;} |
| | | public string AWSToSobjectEncryptedMapJson{get{return JSON.serialize(AWSToSobjectEncryptedMap);}} |
| | | public RentalApplyController(ApexPages.StandardController controller) { |
| | | ApiPrefix = 'PIBackApi'; |
| | | isNewMode = true; |
| | | Input_Required_Field_Msg = Label.Input_Required_Field_Msg; |
| | | PIPL_Input_Account_Error_Msg = label.PIPL_Input_Account_Error_Msg; |
| | |
| | | Map<String,String> fieldAPIToLabelMap = LayoutWrapperValue.fieldAPIToLabelMap; |
| | | requiredFieldAPIListStr = JSON.serialize(requiredFieldAPIList); |
| | | fieldAPIToLabelMapStr = JSON.serialize(fieldAPIToLabelMap); |
| | | staticResource = JSON.serialize(PIHelper.getPIIntegrationInfo('Rental_Apply__c')); |
| | | encryptedAPIList = PIHelper.getPIIntegrationInfo('Rental_Apply__c').PIFields; |
| | | PIHelper.PIIntegration piIntegration = PIHelper.getPIIntegrationInfo('Rental_Apply__c'); |
| | | staticResource = JSON.serialize(piIntegration); |
| | | encryptedAPIList = piIntegration.PIFields; |
| | | staticResourceContact = JSON.serialize(PIHelper.getPIIntegrationInfo('Contact')); |
| | | AWSToSobjectEncryptedMap = new Map<String,String>(); |
| | | for (PI_Field_Policy_Detail__c PIDetail : piIntegration.PIDetails) { |
| | | AWSToSobjectEncryptedMap.put(PIDetail.AWS_Field_API__c, PIDetail.SF_Field_API_Name__c); |
| | | } |
| | | } |
| | | |
| | | global class Response{ |
| New file |
| | |
| | | @isTest |
| | | private class RentalApplyControllerTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | List<String> sobjList = new List<String>(); |
| | | sobjList.add('Rental_Apply__c'); |
| | | sobjList.add('Contact'); |
| | | TestDataUtility.CreatePIPolicyConfigurations(sobjList); |
| | | |
| | | |
| | | } |
| | | static testMethod void testMethod1() { |
| | | |
| | | |
| | | String userMode = 'classic';//classic lightning |
| | | String objectType = 'Contact'; |
| | | String recordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Doctor').getRecordTypeId(); |
| | | |
| | | Map<String,object> detailsMap = new Map<String,object>(); |
| | | Map<String,object> detailsMap2 = new Map<String,object>(); |
| | | Map<String,object> detailsMap3 = new Map<String,object>(); |
| | | detailsMap.put('calculated',true); |
| | | detailsMap.put('autoNumber',false); |
| | | detailsMap.put('type','address'); |
| | | detailsMap2.put('calculated',false); |
| | | detailsMap2.put('autoNumber',false); |
| | | detailsMap2.put('type','repair'); |
| | | detailsMap3.put('calculated',false); |
| | | detailsMap3.put('autoNumber',false); |
| | | detailsMap3.put('type','repair'); |
| | | |
| | | List<Map<String, object>> componentMapList = new List<Map<String, object>>(); |
| | | List<Map<String, object>> componentMapList2 = new List<Map<String, object>>(); |
| | | List<Map<String, object>> componentMapList3 = new List<Map<String, object>>(); |
| | | Map<String, object> componentMap = new Map<String, object>(); |
| | | Map<String, object> componentMap2 = new Map<String, object>(); |
| | | Map<String, object> componentMap3 = new Map<String, object>(); |
| | | componentMap.put('value','Name'); |
| | | componentMap.put('type','Field'); |
| | | componentMap.put('details',detailsMap); |
| | | componentMapList.add(componentMap); |
| | | componentMap2.put('value','Name'); |
| | | componentMap2.put('type','Field'); |
| | | componentMap2.put('details',detailsMap2); |
| | | componentMapList2.add(componentMap2); |
| | | componentMap3.put('value','LastName'); |
| | | componentMap3.put('type','Field'); |
| | | componentMap3.put('details',detailsMap3); |
| | | componentMapList3.add(componentMap3); |
| | | |
| | | List<Map<String, object>> layoutComponentsList = new List<Map<String, object>>(); |
| | | Map<String, object> layoutComponents = new Map<String, object>(); |
| | | layoutComponents.put('layoutComponents',componentMapList); |
| | | layoutComponents.put('label','Address'); |
| | | layoutComponents.put('placeholder',true); |
| | | layoutComponents.put('editableForNew',true); |
| | | layoutComponents.put('required',false); |
| | | layoutComponentsList.add(layoutComponents); |
| | | Map<String, object> layoutComponents2 = new Map<String, object>(); |
| | | layoutComponents2.put('layoutComponents',componentMapList2); |
| | | layoutComponents2.put('label','Repair'); |
| | | layoutComponents2.put('placeholder',true); |
| | | layoutComponents2.put('editableForNew',true); |
| | | layoutComponents2.put('required',false); |
| | | layoutComponentsList.add(layoutComponents2); |
| | | Map<String, object> layoutComponents3 = new Map<String, object>(); |
| | | layoutComponents3.put('layoutComponents',componentMapList3); |
| | | layoutComponents3.put('label','Repair'); |
| | | layoutComponents3.put('placeholder',true); |
| | | layoutComponents3.put('editableForNew',true); |
| | | layoutComponents3.put('required',false); |
| | | layoutComponentsList.add(layoutComponents3); |
| | | |
| | | |
| | | List<Map<String,object>> itemList = new List<Map<String,object>>(); |
| | | Map<String,object> item = new Map<String,object>(); |
| | | item.put('layoutItems',layoutComponentsList); |
| | | itemList.add(item); |
| | | |
| | | List<Map<String,object>> sectionList = new List<Map<String,object>>(); |
| | | Map<String,object> section = new Map<String,object>(); |
| | | section.put('heading',''); |
| | | section.put('useHeading',true); |
| | | section.put('columns',1); |
| | | section.put('useCollapsibleSection',true); |
| | | section.put('layoutRows',itemList); |
| | | sectionList.add(section); |
| | | |
| | | Map<String, Object> layoutSection = new Map<String,Object>(); |
| | | layoutSection.put('layouts','123'); |
| | | layoutSection.put('editLayoutSections',sectionList); |
| | | String layoutSectionJson = JSON.serialize(layoutSection); |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.BaseHttpMock(layoutSectionJson,'OK','200')); |
| | | |
| | | Test.startTest(); |
| | | |
| | | String url = ApexPages.currentPage().getParameters().put('Name','test'); |
| | | url = ApexPages.currentPage().getParameters().put('Name','test'); |
| | | url = ApexPages.currentPage().getParameters().put('CF00N10000008ps61_lkid','test'); |
| | | url = ApexPages.currentPage().getParameters().put('CF00N10000003Mp1d_lkid','test'); |
| | | url = ApexPages.currentPage().getParameters().put('CF00N10000003O3V6_lkid','test'); |
| | | url = ApexPages.currentPage().getParameters().put('CF00N10000003Mp2R_lkid','test'); |
| | | url = ApexPages.currentPage().getParameters().put('00N10000003Msk0','test'); |
| | | url = ApexPages.currentPage().getParameters().put('00N10000003Msk5','test'); |
| | | url = ApexPages.currentPage().getParameters().put('00N100000098amW','test'); |
| | | url = ApexPages.currentPage().getParameters().put('00N10000003OJzc','test'); |
| | | ApexPages.StandardController scc = new ApexPages.StandardController(new Rental_Apply__c()); |
| | | RentalApplyController racc = new RentalApplyController(scc); |
| | | |
| | | |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod2() { |
| | | |
| | | String raJson = '{\"HP_received_sign_rich__c\":\"\",\"Name\":\"123456\",\"OPDPlan__c\":\"000000000000000\",\"GI_Diff__c\":\"\",\"Add_Approval_Status__c\":\"\",\"ApplyPerson_Phone__c\":\"\",\"Person_In_Charge__c\":\"0050l000005vPbu\",\"Loaner_centre_mail_address__c\":\"\",\"applyUser__c\":\"0050l000005vPbu\",\"Cross_Region_Assign__c\":\"\",\"Priority_Inspect__c\":false,\"SalesdeptSelect__c\":\"医疗东北营业本部\",\"RecordTypeId\":\"01210000000RHIi\",\"Zsq_Rental_Apply__c\":\"000000000000000\",\"Asset_return_time_OK__c\":\"\",\"Hospital__c\":\"0010l00001PQFkh\",\"Loaner_medical_Staff__c\":\"0030l00000mFW7G\",\"Strategic_dept__c\":\"0010l00001PQFkh\",\"Phone_number__c\":\"***********\",\"Account__c\":\"0010l00001PQFkh\",\"Demo_purpose1__c\":\"产品试用\",\"Repair__c\":\"000000000000000\",\"NoOpp_Reason__c\":\"\",\"Product_category__c\":\"GI\",\"Follow_UP_Opp__c\":\"000000000000000\",\"Campaign__c\":\"000000000000000\",\"Follow_pcl_status2_Text__c\":\"\",\"QIS_number__c\":\"000000000000000\",\"Statu_Achievements__c\":\"000000000000000\",\"QISRepair__c\":\"000000000000000\",\"CrinicalTrialName__c\":\"\",\"DB_loaner_request__c\":\"\",\"IsJump__c\":false,\"AgreementBorrowingExtensionDate__c\":\"\",\"JumpCause__c\":\"\",\"NewRepair__c\":\"000000000000000\",\"IsJump_Rental__c\":false,\"JumpCause_Rental__c\":\"\",\"JumpDate_Rental__c\":\"\",\"Demo_purpose_text__c\":\"dfasvq\",\"Hope_Lonaer_date_Num__c\":\"3\",\"Request_return_day__c\":\"2022/03/27\",\"Shipment_address__c\":\"000000000000000\",\"direct_send__c\":\"上门自提\",\"Dealer__c\":\"000000000000000\",\"pickup_time__c\":\"2022/03/24 17:44\",\"Loaner_received_staff__c\":\"test\",\"Loaner_received_staff_phone__c\":\"1234567890\",\"direct_shippment_address__c\":\"**********\",\"Post_Code__c\":\"12345-123\",\"Old_Rental_Apply__c\":\"000000000000000\",\"Split_Apply_Reason__c\":\"\",\"HP_received_sign_day__c\":\"\",\"HP_received_sign_NG__c\":false,\"HP_received_sign_NG_Reason__c\":\"\",\"AssetManageConfirm__c\":false,\"Cancel_Reason__c\":\"\",\"Loaner_cancel_request__c\":\"\",\"Cancel_time__c\":\"\",\"HP_received_sign_NewDate__c\":\"\",\"Rental_Received_Day__c\":\"\",\"Add_Request_demo_time__c\":\"\",\"Add_Request_approval_time__c\":\"\",\"ExtensionStatus__c\":\"\",\"ExtensionSuccessTimes__c\":\"\",\"ExtensionApplicationTime_Initial__c\":\"\",\"ExtensionApprovalTime_Initial__c\":\"\",\"ExtensionApplicationTime_Final__c\":\"\",\"ExtensionApprovalTime_Final__c\":\"\",\"Repair_Final_Inspection_Date__c\":\"\",\"All_Delivery_Flag_c__c\":false,\"Request_demo_time__c\":\"\",\"Request_approval_time__c\":\"\",\"Application_accept_time__c\":\"\",\"Request_answer_time__c\":\"\",\"HP_City__c\":\"Abejones\",\"OwnerId\":\"0050l000005vPbu\",\"OPD__c\":\"000000000000000\",\"OPDAmount__c\":\"\",\"IsOPD_Account__c\":\"\",\"OriginalOpdPlanApplication__c\":\"\",\"demo_purpose2__c\":\"试用(无询价)\",\"ToAgency__c\":\"大连\",\"Loaner_cancel_reason__c\":\"_\\u0001_\",\"Phone_Number_Encrypt__c\":\"415f2dab7eb6b2a866e02d823080a845\",\"Direct_Shippment_Address_Encrypt__c\":\"2df1bc4bf3800c5e05e3d9f394c3446567d1f05482d2295650b7b50e9e4aa97a92338985c9693f576e1e6df667aaee46\",\"AWS_Data_Id__c\":\"956621521466425345\"}'; |
| | | // Map<String,Object> fieldValueMap = (Map<String,Object>)JSON.deserializeStrict(raJson, Map<String,Object>.class); |
| | | |
| | | // Map<String,Object> fieldValueMap = (Map<String,Object>)JSON.deserializeUntyped(raJson); |
| | | // Rental_Apply__c rentalApplyInfo = new Rental_Apply__c(); |
| | | |
| | | // Map<String, Schema.SObjectType> schemaMap = Schema.getGlobalDescribe(); |
| | | // Schema.SObjectType rentalApplySchema = schemaMap.get('Rental_Apply__c'); |
| | | // Map<String, Schema.SObjectField> fieldAPIToTypeMap = rentalApplySchema.getDescribe().fields.getMap(); |
| | | // for(String fieldAPI :fieldValueMap.keySet()){ |
| | | // Schema.DisplayType fielddataType = fieldAPIToTypeMap.get(fieldAPI).getDescribe().getType(); |
| | | // String fieldValue = String.valueOf(fieldValueMap.get(fieldAPI)); |
| | | // if(String.isBlank(fieldValue)){ |
| | | // continue; |
| | | // } |
| | | // if(String.valueOf(fielddataType)=='DATE'){ |
| | | // System.debug('DATE fieldAPI = '+fieldAPI+' filedData = '+String.valueOf(fieldValueMap.get(fieldAPI))); |
| | | // // rentalApplyInfo.put(fieldAPI, Date.valueOf(String.valueOf(fieldValueMap.get(fieldAPI)).replace('/', '-'))); |
| | | // rentalApplyInfo.put(fieldAPI,(String.isBlank(fieldValue)||String.isEmpty(fieldValue))? null:Date.valueOf(fieldValue.replace('/', '-'))); |
| | | // }else if(String.valueOf(fielddataType)=='DATETIME'){ |
| | | // String dt = String.valueOf(fieldValueMap.get(fieldAPI)); |
| | | // if(String.isNotBlank(dt)&&dt.contains('T')){ |
| | | // dt = dt.replace('T',' '); |
| | | // rentalApplyInfo.put(fieldAPI, Datetime.valueOfGmt(dt)); |
| | | // }else if(String.isNotBlank(dt)) { |
| | | // //rentalApplyInfo.put(fieldAPI, Datetime.valueOf(dt)); |
| | | // dt = dt.replace('/', '-') + ':00'; |
| | | // System.debug('dt = ' + dt); |
| | | // rentalApplyInfo.put(fieldAPI, Datetime.valueOf(dt)); |
| | | // }else{ |
| | | // rentalApplyInfo.put(fieldAPI, null); |
| | | // } |
| | | // }else if(String.valueOf(fielddataType)=='Number'||String.valueOf(fielddataType)=='DOUBLE' ){ |
| | | // rentalApplyInfo.put(fieldAPI, Decimal.valueOf(String.valueOf(fieldValueMap.get(fieldAPI)))); |
| | | // } else if(String.valueof(fielddataType)=='BOOLEAN'){ |
| | | // rentalApplyInfo.put(fieldAPI, fieldValueMap.get(fieldAPI)); |
| | | // }else { |
| | | // rentalApplyInfo.put(fieldAPI, String.valueOf(fieldValueMap.get(fieldAPI))); |
| | | // } |
| | | // } |
| | | // insert rentalApplyInfo; |
| | | |
| | | Test.startTest(); |
| | | RentalApplyController.saveRentalApply(raJson,'savdqerva',true); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod3() { |
| | | |
| | | Rental_Apply__c ra = TestDataUtility.CreateRentalApplys(1)[0]; |
| | | String raJson = JSON.serialize(ra); |
| | | |
| | | Test.setMock(HttpCalloutMock.class, new TestDataUtility.CreateMetaDataUtilityHttpMock()); |
| | | Test.startTest(); |
| | | System.debug('ra--------'+ra); |
| | | ApexPages.StandardController sc = new ApexPages.StandardController(ra); |
| | | RentalApplyController rac = new RentalApplyController(sc); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod4() { |
| | | Rental_Apply__c ra = TestDataUtility.CreateRentalApplys(1)[0]; |
| | | String raJson = '{\"HP_received_sign_rich__c\":\"\",\"Name\":\"123456\",\"OPDPlan__c\":\"000000000000000\",\"GI_Diff__c\":\"\",\"Add_Approval_Status__c\":\"\",\"ApplyPerson_Phone__c\":\"\",\"Person_In_Charge__c\":\"0050l000005vPbu\",\"Loaner_centre_mail_address__c\":\"\",\"applyUser__c\":\"0050l000005vPbu\",\"Cross_Region_Assign__c\":\"\",\"Priority_Inspect__c\":false,\"SalesdeptSelect__c\":\"医疗东北营业本部\",\"RecordTypeId\":\"01210000000RHIi\",\"Zsq_Rental_Apply__c\":\"000000000000000\",\"Asset_return_time_OK__c\":\"\",\"Hospital__c\":\"0010l00001PQFkh\",\"Loaner_medical_Staff__c\":\"0030l00000mFW7G\",\"Strategic_dept__c\":\"0010l00001PQFkh\",\"Phone_number__c\":\"***********\",\"Account__c\":\"0010l00001PQFkh\",\"Demo_purpose1__c\":\"产品试用\",\"Repair__c\":\"000000000000000\",\"NoOpp_Reason__c\":\"\",\"Product_category__c\":\"GI\",\"Follow_UP_Opp__c\":\"000000000000000\",\"Campaign__c\":\"000000000000000\",\"Follow_pcl_status2_Text__c\":\"\",\"QIS_number__c\":\"000000000000000\",\"Statu_Achievements__c\":\"000000000000000\",\"QISRepair__c\":\"000000000000000\",\"CrinicalTrialName__c\":\"\",\"DB_loaner_request__c\":\"\",\"IsJump__c\":false,\"AgreementBorrowingExtensionDate__c\":\"\",\"JumpCause__c\":\"\",\"NewRepair__c\":\"000000000000000\",\"IsJump_Rental__c\":false,\"JumpCause_Rental__c\":\"\",\"JumpDate_Rental__c\":\"\",\"Demo_purpose_text__c\":\"dfasvq\",\"Hope_Lonaer_date_Num__c\":\"3\",\"Request_return_day__c\":\"2022/03/27\",\"Shipment_address__c\":\"000000000000000\",\"direct_send__c\":\"上门自提\",\"Dealer__c\":\"000000000000000\",\"pickup_time__c\":\"2022/03/24 17:44\",\"Loaner_received_staff__c\":\"test\",\"Loaner_received_staff_phone__c\":\"1234567890\",\"direct_shippment_address__c\":\"**********\",\"Post_Code__c\":\"12345-123\",\"Old_Rental_Apply__c\":\"000000000000000\",\"Split_Apply_Reason__c\":\"\",\"HP_received_sign_day__c\":\"\",\"HP_received_sign_NG__c\":false,\"HP_received_sign_NG_Reason__c\":\"\",\"AssetManageConfirm__c\":false,\"Cancel_Reason__c\":\"\",\"Loaner_cancel_request__c\":\"\",\"Cancel_time__c\":\"\",\"HP_received_sign_NewDate__c\":\"\",\"Rental_Received_Day__c\":\"\",\"Add_Request_demo_time__c\":\"\",\"Add_Request_approval_time__c\":\"\",\"ExtensionStatus__c\":\"\",\"ExtensionSuccessTimes__c\":\"\",\"ExtensionApplicationTime_Initial__c\":\"\",\"ExtensionApprovalTime_Initial__c\":\"\",\"ExtensionApplicationTime_Final__c\":\"\",\"ExtensionApprovalTime_Final__c\":\"\",\"Repair_Final_Inspection_Date__c\":\"\",\"All_Delivery_Flag_c__c\":false,\"Request_demo_time__c\":\"\",\"Request_approval_time__c\":\"\",\"Application_accept_time__c\":\"\",\"Request_answer_time__c\":\"\",\"HP_City__c\":\"Abejones\",\"OwnerId\":\"0050l000005vPbu\",\"OPD__c\":\"000000000000000\",\"OPDAmount__c\":\"\",\"IsOPD_Account__c\":\"\",\"OriginalOpdPlanApplication__c\":\"\",\"demo_purpose2__c\":\"试用(无询价)\",\"ToAgency__c\":\"大连\",\"Loaner_cancel_reason__c\":\"_\\u0001_\",\"Phone_Number_Encrypt__c\":\"415f2dab7eb6b2a866e02d823080a845\",\"Direct_Shippment_Address_Encrypt__c\":\"2df1bc4bf3800c5e05e3d9f394c3446567d1f05482d2295650b7b50e9e4aa97a92338985c9693f576e1e6df667aaee46\",\"AWS_Data_Id__c\":\"'+ra.AWS_Data_Id__c+'\"}'; |
| | | System.debug('ra.AWS_Data_Id__c------'+ra.AWS_Data_Id__c); |
| | | Test.startTest(); |
| | | RentalApplyController.saveRentalApply(raJson,'savdqerva',false); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | @AuraEnabled public List<Map<String,String>> doctorList{get;set;} |
| | | @AuraEnabled public String UserProType{get;set;} |
| | | @AuraEnabled public Map<String,Agency_Report__c> AgencyReportMap{get;set;} |
| | | |
| | | @AuraEnabled public Map<String,string> PIConfig{get;set;} |
| | | |
| | | public RetrospectiveWeeklyReportController() { |
| | | } |
| | |
| | | // 見出し設定 |
| | | this.fieldsMap = new Map<String,String>(); |
| | | this.fieldsMap = this.getfiledsmap(); |
| | | |
| | | this.PIConfig = new Map<String,string>(); |
| | | this.PIConfig.put('staticResourceAgencyContact', JSON.serialize(PIHelper.getPIIntegrationInfo('Agency_Contact__c'))); |
| | | } |
| | | |
| | | |
| | |
| | | ret.add(space); |
| | | |
| | | Agency_Hospital_Link__c ahl = [select Hospital__c from Agency_Hospital_Link__c where id = :hospital_id]; |
| | | List<Agency_Contact__c> doctor_list = [select id,Name,Doctor_Division1__c,Type__c,Agency_Hospital__c |
| | | List<Agency_Contact__c> doctor_list = [select id,Name,Doctor_Division1__c, |
| | | AWS_Data_Id__c,// PI改造 By Bright 20220328 |
| | | Type__c,Agency_Hospital__c |
| | | FROM Agency_Contact__c WHERE Hospital_ID18__c=:ahl.Hospital__c order by Name]; |
| | | for (Agency_Contact__c row : doctor_list) |
| | | { |
| | |
| | | tmp.put('value', row.Id); |
| | | tmp.put('selected', 'false'); |
| | | tmp.put('Doctor_Division1__c', row.Doctor_Division1__c); |
| | | tmp.put('AWS_Data_Id__c', row.AWS_Data_Id__c);// PI改造 By Bright 20220328 |
| | | ret.add(tmp); |
| | | } |
| | | return ret; |
| | |
| | | String UseProduct1, String UseProduct2, String UseProduct3, |
| | | String StageName, String oppAmount, String oppOCMPrice, String Close_Forecasted_Date, String Report_Date) |
| | | { |
| | | Department_Cateogy = GetDepartment_Cateogy(Department_Cateogy); |
| | | system.debug('Department_Cateogy+++'+Department_Cateogy); |
| | | Agency_Report__c agency_report = makeAgencyReport(Department_Cateogy,ConsumptionOfConsumables, |
| | | WorkMark,warlocksNumber,DealerPersonnel,ProductCcategory,productCategories,WarlockClassification,ProductClassification, WorkRecord, |
| | | EffectProgress,Agency_Report_Header, |
| | |
| | | //新建方法 |
| | | public static Agency_Report__c insertAgencyReport(Agency_Report__c data) { |
| | | if (String.isBlank(data.Hospital__c)) { |
| | | system.debug('data.Agency_Hospital__c+++'+data.Agency_Hospital__c); |
| | | List<Agency_Hospital_Link__c> agency_hospital_link = [select Id, Hospital__c from Agency_Hospital_Link__c where Id=:data.Agency_Hospital__c]; |
| | | system.debug('agency_hospital_link+++'+agency_hospital_link); |
| | | data.Hospital__c = agency_hospital_link[0].Hospital__c; |
| | | } |
| | | if (String.isBlank(data.Department_Class__c)) { |
| | | system.debug('data.Department_Cateogy__c+++'+data.Department_Cateogy__c); |
| | | String record_type_id = LightningUtil.getRecordTypeId(data.Department_Cateogy__c); |
| | | system.debug('RecordTypeId+++'+record_type_id); |
| | | List<Account> account = [select Id, RecordTypeId from account where Hospital_Department_Class__c=:data.Hospital__c and RecordTypeId=:record_type_id]; |
| | | system.debug('account+++'+account); |
| | | data.Department_Class__c = account[0].Id; |
| | | } |
| | | User userPro = LightningUtil.loginUserId(); |
| | |
| | | @isTest |
| | | private class SLAReportDetailsControllerTest { |
| | | |
| | | @testSetup |
| | | static void setUp(){ |
| | | TestDataUtility.CreatePIPolicyConfigurations( new string[]{'Contact'}); |
| | | } |
| | | |
| | | //有报告书 |
| | | static testMethod void testMethod1() { |
| | | |
| | |
| | | Daily_Report__c dr3 = new Daily_Report__c(); |
| | | dr3.Reporter__c = UserInfo.getUserId(); |
| | | dr3.Reported_Date__c = Date.today().addDays(4); |
| | | dr3.Status__c = '申請中'; |
| | | dr3.Status__c = '作成中'; |
| | | insert dr3; |
| | | |
| | | Event__c event = new Event__c(); |
| | |
| | | Daily_Report__c dr3 = new Daily_Report__c(); |
| | | dr3.Reporter__c = UserInfo.getUserId(); |
| | | dr3.Reported_Date__c = Date.today().addDays(4); |
| | | dr3.Status__c = '申請中'; |
| | | dr3.Status__c = '作成中'; |
| | | insert dr3; |
| | | |
| | | Event__c event = new Event__c(); |
| | |
| | | Daily_Report__c dr3 = new Daily_Report__c(); |
| | | dr3.Reporter__c = UserInfo.getUserId(); |
| | | dr3.Reported_Date__c = Date.today().addDays(4); |
| | | dr3.Status__c = '申請中'; |
| | | dr3.Status__c = '作成中'; |
| | | insert dr3; |
| | | |
| | | Event__c event = new Event__c(); |
| New file |
| | |
| | | @isTest |
| | | private class SObjectHelperTest { |
| | | static testMethod void testMethod1() { |
| | | List<Account> accList = TestDataUtility.CreateAccounts(2); |
| | | |
| | | Test.startTest(); |
| | | SObjectHelper.MergeValue(accList[0],accList[1]); |
| | | SObjectHelper.OverwriteValue(accList[0],accList[1]); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod2() { |
| | | |
| | | Test.startTest(); |
| | | SObjectHelper.GetFieldMap('Account'); |
| | | SObjectHelper.GetFieldInfos('Account'); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod3() { |
| | | |
| | | Test.startTest(); |
| | | SObjectHelper.GetFieldSet('Account','Name'); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod4() { |
| | | |
| | | Test.startTest(); |
| | | SObjectHelper.GetPicklistLabelValueMap('Account','Name'); |
| | | SObjectHelper.GetPicklistValueLabelMap('Account','Name'); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod5() { |
| | | |
| | | Test.startTest(); |
| | | SObjectHelper.GetFieldDescription('Account','Name'); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod6() { |
| | | List<Account> accList = TestDataUtility.CreateAccounts(2); |
| | | Test.startTest(); |
| | | SObjectHelper.GetSObjectField(accList[0],'RecordTypeId'); |
| | | Test.stopTest(); |
| | | } |
| | | static testMethod void testMethod7() { |
| | | List<Account> accList = TestDataUtility.CreateAccounts(2); |
| | | Test.startTest(); |
| | | SObjectHelper.GetMultiPickListOptions('a;b;c;d;e'); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | conList = new List<Contact>(); |
| | | }else{ |
| | | if(checkNullString(accountId)){ |
| | | conList = new List<Contact>([select Id,AWS_Data_Id__c,Account.Name from Contact where AWS_Data_Id__c!='']); |
| | | conList = new List<Contact>(); |
| | | }else { |
| | | conList = new List<Contact>([select Id,AWS_Data_Id__c,Account.Name from Contact where AccountId=:accountId and AWS_Data_Id__c!='']); |
| | | } |
| | |
| | | public static Response searchContactsNoPI(String contactName) { |
| | | Response resp = new Response(); |
| | | resp.status = 'fail'; |
| | | List<Contact> conListTemp = new List<Contact>([select Id,Name,Account.Name,Phone,Email from Contact where Name like :contactName]); |
| | | List<Contact> conListTemp = new List<Contact>([select Id,Name,Account.Name,Phone,Email,MobilePhone from Contact where Name like :contactName]); |
| | | if(conListTemp.size() > 0){ |
| | | resp.status = 'success'; |
| | | resp.message = JSON.serialize(conListTemp); |
| New file |
| | |
| | | @isTest |
| | | private class SearchContactControllerTest { |
| | | @TestSetup |
| | | static void makeData(){ |
| | | |
| | | } |
| | | static testMethod void testMethod1() { |
| | | TestDataUtility.CreatePIPolicyConfiguration('Contact'); |
| | | Contact con = TestDataUtility.CreateContacts(1)[0]; |
| | | con.AWS_Data_Id__c = 'davdsvgrqcx'; |
| | | con.RecordTypeId = '01210000000QfWiAAK'; |
| | | update con; |
| | | List<String> awsList = new List<String>(); |
| | | awsList.add(con.AWS_Data_Id__c); |
| | | String awsListJson = JSON.serialize(awsList); |
| | | |
| | | String url = ApexPages.currentPage().getParameters().put('accountId',con.AccountId); |
| | | Test.startTest(); |
| | | SearchContactController scc = new SearchContactController(); |
| | | SearchContactController.searchContactsNoPI(con.Name); |
| | | SearchContactController.searchContacts(awsListJson,con.Name,con.AccountId); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| New file |
| | |
| | | @isTest |
| | | private class SearchLeadControllerTest { |
| | | static testMethod void testMethod1() { |
| | | TestDataUtility.CreatePIPolicyConfiguration('Lead'); |
| | | // Lead ld = TestDataUtility.CreateLead(1)[0]; |
| | | Lead ld = new Lead(); |
| | | ld.LastName = 'test'; |
| | | ld.Email = 'test@olympus.com'; |
| | | ld.company = 'TestCompany'; |
| | | ld.AWS_Data_Id__c = 'vjmpmwevkdmqwv'; |
| | | insert ld; |
| | | |
| | | // update ld; |
| | | List<String> awsList = new List<String>(); |
| | | awsList.add(ld.AWS_Data_Id__c); |
| | | String awsListJson = JSON.serialize(awsList); |
| | | |
| | | Test.startTest(); |
| | | SearchLeadController slc = new SearchLeadController(); |
| | | SearchLeadController.searchLeads(awsListJson); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | //Add By Li Jun for PIPL 20220217 Start |
| | | //1. Query Contact by accountId |
| | | List<Contact> conList = new List<Contact>(); |
| | | List<Account> departmentClass = new List<Account>(); |
| | | system.debug('Account Id from Front-end:'+a.Id); |
| | | String accountId = a.Id; |
| | | PIHelper.PIIntegration contactPIIntegration = PIHelper.getPIIntegrationInfo('Contact'); |
| | | if(String.isNotBlank(accountId) && String.isNotEmpty(accountId)){ |
| | | conList = new List<Contact>([select Id,AWS_Data_Id__c from Contact where AccountId=:accountId and AWS_Data_Id__c!='' limit :contactPIIntegration.maxQueryNumber]); |
| | | departmentClass = [select Department_Class__c from Account where id =:accountId]; |
| | | if(departmentClass.size() > 0){ |
| | | conList = new List<Contact>([select Id,AWS_Data_Id__c from Contact where Strategic_dept_Class__c=:departmentClass[0].Department_Class__c and AWS_Data_Id__c!='' limit :contactPIIntegration.maxQueryNumber]); |
| | | } |
| | | //conList = new List<Contact>([select Id,AWS_Data_Id__c from Contact where AccountId=:accountId and AWS_Data_Id__c!='' limit :contactPIIntegration.maxQueryNumber]); |
| | | } |
| | | //2. Prepare the Contact Info |
| | | List<String> conAWSIds = new List<String>(); |
| | |
| | | |
| | | Savepoint sp = Database.setSavepoint(); |
| | | try{ |
| | | system.debug('rc = ' + rc); |
| | | upsert rc; |
| | | sfContactId = rc.Id; |
| | | }catch(Exception io){ |
| | |
| | | /** |
| | | * 初期処理. |
| | | */ |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('Contact'); |
| | | } |
| | | private static void init() { |
| | | loginId = UserInfo.getUserId(); |
| | | |
| | |
| | | con1.FirstName = 'zz1'; |
| | | con1.RecordTypeId = rtDoc.id; |
| | | con1.AccountId = accDep.id; |
| | | con1.AWS_Data_Id__c = '1231'; |
| | | // con1.State__c = '北京市'; |
| | | con2 = new Contact(); |
| | | con2.FirstName = 'zz2'; |
| | | con2.LastName = '取引先責任者2'; |
| | | con2.RecordTypeId = rtDoc.id; |
| | | con2.AccountId = accDep.id; |
| | | con2.AWS_Data_Id__c = '1232'; |
| | | // con2.State__c = '北京市'; |
| | | con3 = new Contact(); |
| | | con3.FirstName = 'zz3'; |
| | | con3.LastName = '取引先責任者3'; |
| | | con3.RecordTypeId = rtDoc.id; |
| | | con3.AccountId = accDep.id; |
| | | con3.AWS_Data_Id__c = '1233'; |
| | | // con3.State__c = '北京市'; |
| | | con4 = new Contact(); |
| | | con4.FirstName = 'zz4'; |
| | | con4.LastName = '取引先責任者4'; |
| | | con4.RecordTypeId = rtDoc.id; |
| | | con4.AccountId = accDep.id; |
| | | con4.AWS_Data_Id__c = '1234'; |
| | | // con4.State__c = '北京市'; |
| | | con5 = new Contact(); |
| | | con5.FirstName = 'zz5'; |
| | | con5.LastName = '取引先責任者5'; |
| | | con5.RecordTypeId = rtDoc.id; |
| | | con5.AccountId = accDep.id; |
| | | con5.AWS_Data_Id__c = '1235'; |
| | | // con5.State__c = '北京市'; |
| | | conList.add(con1); |
| | | conList.add(con2); |
| | |
| | | } |
| | | checkedAssets=NumberSort; |
| | | //2021-11-30 fy add LJPH-C8W8FV 置顶 end |
| | | System.debug('thh:' + checkedAssets); |
| | | } |
| | | |
| | | // |
| | |
| | | t = this.estimate.Contract_Start_Date__c.addMonths(Integer.valueOf(this.estimate.Contract_Range__c)); |
| | | t = t.addDays(-1); |
| | | this.estimate.Contract_End_Date__c = t; |
| | | //以提交报价的时点,锁定经销商的先款状态,decide时不再更新经销商的性质 thh 20220407 start |
| | | //add wangweipeng 2021/12/26 start |
| | | if(String.isNotBlank(this.estimate.Dealer__c)){ |
| | | checkDealerId = this.estimate.Dealer__c; |
| | | onChDealerUpdate(); |
| | | }else{ |
| | | this.estimate.Is_RecognitionModel__c = false; |
| | | } |
| | | // if(String.isNotBlank(this.estimate.Dealer__c)){ |
| | | // checkDealerId = this.estimate.Dealer__c; |
| | | // onChDealerUpdate(); |
| | | // }else{ |
| | | // this.estimate.Is_RecognitionModel__c = false; |
| | | // } |
| | | //add wangweipeng 2021/12/26 end |
| | | //以提交报价的时点,锁定经销商的先款状态,decide时不再更新经销商的性质 thh 20220407 end |
| | | System.debug('---------345----'+this.estimate.Dealer__c+'-------'+this.estimate.Dealer__r.FirstParagraphEnd__c); |
| | | // 位置调整 在1951 line |
| | | // Date createdDate = this.estimate.CreatedDate == null ? System.today() : this.estimate.CreatedDate.date(); |
| | |
| | | // return returnValue; |
| | | // 2021-09-10 tcm 排序逻辑调整 end |
| | | } |
| | | } |
| | | } |
| | |
| | | plist.add(new Position('一般', true)); |
| | | plist.add(new Position('高级', true)); |
| | | plist.add(new Position('主管', true)); |
| | | plist.add(new Position('副经理', true)); |
| | | plist.add(new Position('经理', false)); |
| | | plist.add(new Position('副部长', false)); |
| | | plist.add(new Position('部长', false)); |
| | | //20220402 lt SWAG-CD28H3 【委托】【期初修改4月6日开始修改】目标录入相关判断修改 start |
| | | // plist.add(new Position('副经理', true)); |
| | | // plist.add(new Position('经理', false)); |
| | | // plist.add(new Position('副部长', false)); |
| | | // plist.add(new Position('部长', false)); |
| | | plist.add(new Position('经理级', true)); |
| | | plist.add(new Position('总监级', false)); |
| | | //20220402 lt SWAG-CD28H3 【委托】【期初修改4月6日开始修改】目标录入相关判断修改 start |
| | | } |
| | | |
| | | // 当前用户信息 |
| | |
| | | for (Position p : plist) { |
| | | if (p.check) { |
| | | positionNames.add(p.positionName); |
| | | //20220406 lt SWAG-CD28H3 【委托】【期初修改4月6日开始修改】目标录入相关判断修改 start |
| | | if(p.positionName == '经理级'){ |
| | | positionNames.add('副经理'); |
| | | positionNames.add('经理'); |
| | | } |
| | | if(p.positionName == '总监级'){ |
| | | positionNames.add('副部长'); |
| | | positionNames.add('部长'); |
| | | positionNames.add('总监'); |
| | | } |
| | | //20220406 lt SWAG-CD28H3 【委托】【期初修改4月6日开始修改】目标录入相关判断修改end |
| | | } |
| | | } |
| | | if (positionNames.size() > 0) { |
| | | |
| | | soql += ' and ('; |
| | | for (Integer i = 0; i < positionNames.size(); i++) { |
| | | if (i == positionNames.size() - 1) { |
| | |
| | | soql += ')'; |
| | | } |
| | | soql += ' order by Salesdepartment__c, Province__c, UserRole.Name'; |
| | | System.debug('**********'+soql); |
| | | System.debug('**********123'+soql); |
| | | return Database.query(soql); |
| | | } |
| | | |
| | |
| | | odc.plist[2].check = false; |
| | | odc.plist[3].check = false; |
| | | odc.plist[4].check = false; |
| | | odc.plist[5].check = false; |
| | | odc.plist[6].check = false; |
| | | // odc.plist[5].check = false; |
| | | // odc.plist[6].check = false; |
| | | //odc.searchByFilter(); |
| | | //System.assertEquals(1, odc.dataBeans.size()); |
| | | //导出 |
| | |
| | | } |
| | | |
| | | } |
| | | |
| | | //20201123 zh 创建主动任务与维修合同关联 end |
| | | if (LoginUser.Job_Category__c.equals('销售推广')) { |
| | | if (this.targetEvent.Activity_Type2__c == '病院') { |
| | | |
| | | // 2021-06-11 mzy sla 注释掉了询价3 因为现在的页面没有给询价3赋值,所以会显示 询价3不等于空字符串而是等于null ,导致后面的判断进不去 |
| | | // if (this.targetEvent.Related_Opportunity1__c != '' || this.targetEvent.Related_Opportunity2__c != '' || this.targetEvent.Related_Opportunity3__c != '') { |
| | | System.debug('测试询价任务:' +'询价1:' +this.targetEvent.Related_Opportunity1__c +'---询价2:'+this.targetEvent.Related_Opportunity2__c); |
| | |
| | | taskType = System.Label.OpportunityFollow; // 询价跟进任务 |
| | | } else if (this.targetEvent.OPDPlan_Flag__c) { |
| | | taskType = System.Label.OPD; // OPD任务 |
| | | } else if (accToNumTarget.get(accToDepMap.get(this.targetEvent.whatid__c)).Is_Target_Account_Energy__c == 1 || accToNumTarget.get(accToDepMap.get(this.targetEvent.whatid__c)).Is_Target_Account__c == 1) { |
| | | taskType = System.Label.TargetAccountVisit; // 目标客户拜访任务 |
| | | } else if (accToNumTarget.get(accToDepMap.get(this.targetEvent.whatid__c)).OCM_Category__c == 'H1' || accToNumTarget.get(accToDepMap.get(this.targetEvent.whatid__c)).OCM_Category__c == 'H0') { |
| | | taskType = System.Label.visitHLevel; // H层拜访任务 |
| | | } else if (!accToNumTarget.isEmpty() && !accToDepMap.isEmpty() && (accToNumTarget.get(accToDepMap.get(this.targetEvent.whatid__c)).Is_Target_Account_Energy__c == 1 || accToNumTarget.get(accToDepMap.get(this.targetEvent.whatid__c)).Is_Target_Account__c == 1)) { |
| | | taskType = System.Label.TargetAccountVisit; // 目标客户拜访任务 |
| | | } else if (!accToNumTarget.isEmpty() && !accToDepMap.isEmpty() && (accToNumTarget.get(accToDepMap.get(this.targetEvent.whatid__c)).OCM_Category__c == 'H1' || accToNumTarget.get(accToDepMap.get(this.targetEvent.whatid__c)).OCM_Category__c == 'H0')) { |
| | | taskType = System.Label.visitHLevel; // H层拜访任务 |
| | | } else { |
| | | taskType = System.Label.DailyVisit;// 日程拜访任务 |
| | | } |
| | |
| | | taskAccType = '用户拜访'; |
| | | } |
| | | if (this.targetEvent.Activity_Type2__c == '販売店') { |
| | | taskAccType = '经销商支持'; |
| | | taskAccType = '经销商拜访'; |
| | | } |
| | | if (this.targetEvent.Activity_Type2__c == '社外イベント') { |
| | | taskAccType = '学术会议'; |
| | |
| | | taskAccType = '用户拜访'; |
| | | } |
| | | if (this.targetEvent.Activity_Type2__c == '販売店') { |
| | | taskAccType = '经销商支持'; |
| | | taskAccType = '经销商拜访'; |
| | | } |
| | | if (this.targetEvent.Activity_Type2__c == '社外イベント') { |
| | | taskAccType = '学术会议'; |
| | |
| | | @isTest |
| | | private class SimpleEventRegisterControllerTester { |
| | | |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('Contact'); |
| | | } |
| | | static testMethod void myUnitTest01() { |
| | | |
| | | Event insertTarget = new Event(); |
| New file |
| | |
| | | @isTest |
| | | private class SoqlHelperTest { |
| | | static testMethod void testMethod1() { |
| | | String sql = 'SELECT Id,Name FROM Contact WHERE Name != null Limit 1'; |
| | | Account accupdate = TestDataUtility.CreateAccounts(1)[0]; |
| | | accupdate.Name = 'update1'; |
| | | List<Account> updateAccList = new List<Account>(); |
| | | |
| | | Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin]; |
| | | User hpOwner = new User(Test_staff__c = true, LastName = 'TestUserA', FirstName = 'owner', Alias = 'hp', CommunityNickname = 'hpOwner', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id); |
| | | List<User> userList = new List<User>(); |
| | | |
| | | userList.add(hpOwner); |
| | | |
| | | Contact con = TestDataUtility.CreateContacts(1)[0]; |
| | | List<String> conidList = new List<String>(); |
| | | conidList.add(con.Id); |
| | | |
| | | Set<String> strSet = new Set<String>(); |
| | | strSet.add('test1'); |
| | | strSet.add('test2'); |
| | | Test.startTest(); |
| | | //ToInCondition |
| | | //UpsertList |
| | | SoqlHelper.ToInCondition(strSet); |
| | | SoqlHelper.DistinctQueryFields(sql); |
| | | SoqlHelper.WId(sql); |
| | | SoqlHelper.InsertList(userList); |
| | | SoqlHelper.UpdateList(updateAccList); |
| | | SoqlHelper.DeleteList(updateAccList); |
| | | SoqlHelper.DeleteListAsync(conidList); |
| | | Test.stopTest(); |
| | | |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | static final String RC_SENRYAKUKASHITSUBUNRUI = '戦略科室分類 消化科'; |
| | | static final String RC_BYOUIN = '病院'; |
| | | static final String RC_SHINRYOUKA = '診療科 消化科'; |
| | | |
| | | @TestSetup |
| | | static void makeData(){ |
| | | TestDataUtility.CreatePIPolicyConfiguration('Contact'); |
| | | } |
| | | /** 初期処理 */ |
| | | static testMethod void testInit() { |
| | | StartTradingController st = new StartTradingController(null); |
| | |
| | | public String tableDataStr{ get; set; } |
| | | public String staticResource {get; set;} |
| | | public String staticResourceContact {get; set;} |
| | | public String staticResourceRepair {get; set;} |
| | | public Contact newCon{get; set;} |
| | | |
| | | /***************底部 编辑和新增的 对象*******************/ |
| | |
| | | |
| | | staticResource = JSON.serialize(PIHelper.getPIIntegrationInfo('Address__c')); |
| | | staticResourceContact = JSON.serialize(PIHelper.getPIIntegrationInfo('Contact')); |
| | | staticResourceRepair = JSON.serialize(PIHelper.getPIIntegrationInfo('Repair__c')); |
| | | } |
| | | |
| | | /** |
| | | * 开始方法 |
| | | */ |
| | | public PageReference init(){ |
| | | accOfficeTypeId = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Office').getRecordTypeId(); |
| | | Schema.RecordTypeInfo recordTypeValue = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Office'); |
| | | if(recordTypeValue == null){ |
| | | recordTypeValue = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('office'); |
| | | } |
| | | accOfficeTypeId = recordTypeValue.getRecordTypeId(); |
| | | accAgencyTypeId = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId(); |
| | | accAgencyContactTypeId = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('AgencyContact').getRecordTypeId(); |
| | | String RepairSql = makeTextRepairSql(RepairId); |
| | |
| | | |
| | | //查询修理表数据 |
| | | private String makeTextRepairSql(String uuid){ |
| | | String RepairSql = 'SELECT ID,NAME,HP_ID__c,HP_Name__c,Delivered_Product__c,FSE_ApplyForRepair_time__c,SAP_Transfer_time__c,Dealer__c,Dealer__r.Name,Returns_Product_way__c,Address_Type_Index__c FROM Repair__c where id = \''+RepairId+'\''; |
| | | String RepairSql = 'SELECT ID,NAME,HP_ID__c,HP_Name__c,Delivered_Product__c,FSE_ApplyForRepair_time__c,SAP_Transfer_time__c,Dealer__c,Dealer__r.Name,Returns_Product_way__c,Address_Type_Index__c,AWS_Data_Id__c FROM Repair__c where id = \''+RepairId+'\''; |
| | | return RepairSql; |
| | | } |
| | | //查询地址表数据 |
| | |
| | | class AddressData { |
| | | //数据 |
| | | public Address__c address { get; set; } |
| | | |
| | | public string addressJson { get{ |
| | | if (address == null) { |
| | | return null; |
| | | } |
| | | return JSON.serialize(address); |
| | | } } |
| | | |
| | | //编辑按钮是否展示 |
| | | public String canEdit { get; private set; } |
| | | //编辑按钮是否展示 |
| | |
| | | private class StraightBackAddressControllerTest { |
| | | |
| | | private static Repair__c rpr { get; set; } |
| | | |
| | | @TestSetup |
| | | static void makeData(){ |
| | | List<String> strList = new List<String>(); |
| | | strList.add('Address__c'); |
| | | strList.add('Contact'); |
| | | strList.add('Repair__c'); |
| | | TestDataUtility.CreatePIPolicyConfigurations(strList); |
| | | } |
| | | @isTest |
| | | static void testMethod1() { |
| | | List<RecordType> rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院']; |
| | |
| | | if (!StaticParameter.EscapeOtherUpdateTenOwner) { |
| | | updateTenOwner(); |
| | | } |
| | | |
| | | } |
| | | |
| | | protected override void afterInsert() { |
| | |
| | | addShare(); |
| | | sednMessage(); |
| | | updateWin(); |
| | | |
| | | //2022-3-29 yjk SWAG-CCL6R7 |
| | | updateOpportunity(); |
| | | } |
| | | |
| | | |
| | | //2022-3-29 yjk SWAG-CCL6R7 |
| | | private void updateOpportunity(){ |
| | | for(Tender_information__c newOne : newList){ |
| | | Tender_information__c oldOne = oldMap.get(newOne.id); |
| | | if(oldOne.ResultDate__c == null && newOne.ResultDate__c != null){ |
| | | List<Opportunity> oppList = [select id,Closing_Bid_Date__c from Opportunity where Bidding_Project_Name_Bid__c = :newOne.id]; |
| | | if(oppList.size() > 0){ |
| | | for(Opportunity opp : oppList){ |
| | | opp.Closing_Bid_Date__c = newOne.ResultDate__c; |
| | | } |
| | | update oppList; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | public void sednMessage() { |
| | |
| | | |
| | | // 备品set明细 |
| | | List<TransferApplyDetail__c> eList = [ |
| | | select Repair__c, SerialNumber_F__c, Pre_After_Inspection_elapsed_days__c, Pre_Inspection_Comment__c,Fixture_Name_F__c, Shipment_request_time2__c, DeliverySlip__c, TransferApplySummary__r.Fixture_Set__r.Name, Fixture_QRCode_F__c, TransferApplySummary__r.Name, Pre_inspection_time__c, StockDown__c, StockDown_time__c, Id, Name, Asset__c, Asset__r.Name, Asset__r.SerialNumber, Asset__r.Product_Serial_No__c, |
| | | select Repair__c, SerialNumber_F__c, Pre_After_Inspection_elapsed_days__c, Pre_Inspection_Comment__c,Pre_NG_abord_reason__c,Fixture_Name_F__c, Shipment_request_time2__c, DeliverySlip__c, TransferApplySummary__r.Fixture_Set__r.Name, Fixture_QRCode_F__c, TransferApplySummary__r.Name, Pre_inspection_time__c, StockDown__c, StockDown_time__c, Id, Name, Asset__c, Asset__r.Name, Asset__r.SerialNumber, Asset__r.Product_Serial_No__c, |
| | | Asset__r.Remark__c, Asset__r.ImageAsset__c, Asset__r.ImageSerial__c, Asset__r.ImageAssetUploadedTime__c, Asset__r.ImageSerialUploadedTime__c, |
| | | Loaner_CDS_Info__c, Inspection_result__c, Check_lost_Item__c, Pre_disinfection__c, Water_leacage_check__c, Inspection_result_after__c, Arrival_in_wh__c, |
| | | Asset__r.Pre_Reserve_TAES_Detail__c, Asset__r.Pre_Reserve_TAES_Detail__r.After_Inspection_time__c, |
| | |
| | | done_flg = true; |
| | | } catch (Exception ex) { |
| | | system.debug('=====' + ex.getMessage()); |
| | | ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, ex.getMessage()+'( '+Step_status+' )')); |
| | | ApexPages.addmessage(new ApexPages.message(ApexPages.severity.Error, ex.getDmlMessage(0))); |
| | | Database.rollback(sp); |
| | | done_flg = false; |
| | | } |
| | |
| | | update erList; |
| | | } |
| | | static testMethod void test_init_error() { |
| | | Test.startTest(); |
| | | |
| | | setupTestData1(); |
| | | Test.startTest(); |
| | | List<TransferApply__c> taList = [SELECT Id,OwnerId,Status__c FROM TransferApply__c]; |
| | | List<TransferApplySummary__c> esList; |
| | | esList = [select TransferApply__r.Loaner_centre_mail_address__c, TransferApply__r.Name, TransferApply__c, Id, Name |
| | |
| | | System.assertEquals(0, controller.esdList.size()); |
| | | } |
| | | static testMethod void test_save() { |
| | | Test.startTest(); |
| | | |
| | | setupTestData1(); |
| | | |
| | | Test.startTest(); |
| | | List<TransferApply__c> taList = [SELECT Id,OwnerId,Status__c FROM TransferApply__c]; |
| | | List<TransferApplySummary__c> esList; |
| | | esList = [select TransferApply__r.Loaner_centre_mail_address__c, TransferApply__r.Name, TransferApply__c, Id, Name |
| | |
| | | } |
| | | protected override void beforeUpdate() { |
| | | changeAssume(); |
| | | SetAwaitToSendAWS();//new |
| | | //SetAwaitToSendAWS();//new |
| | | } |
| | | //new |
| | | protected override void beforeInsert() { |
| | | SetAwaitToSendAWS();//new |
| | | } |
| | | |
| | | |
| | | protected override void afterInsert() { |
| | | createAgencyTarget(); |
| | | //SetAwaitToSendAWS();//old |
| | | SetAwaitToSendAWS(); |
| | | |
| | | } |
| | | |
| | |
| | | // LHJ KWAG-BQMA89 202006 Start |
| | | updateAgencyAccout(); |
| | | // LHJ KWAG-BQMA89 202006 End |
| | | //SetAwaitToSendAWS();//old |
| | | SetAwaitToSendAWS();//old |
| | | } |
| | | |
| | | |
| | |
| | | if (!NFM601_IdMap.containsKey(acc.Id)) { |
| | | // 判断是否是接口用户 |
| | | if(UserInfo.getUserId().equals(System.Label.interfaceUserID)){ |
| | | //此处做修改,NFM624Rest接收数据后触发trigger,trigger再去调用601存在bug,修改为增加标记,使用Batch发送 |
| | | //interfaceUserUpsertAccount.add(acc.Id); |
| | | //2022-3-28 pk start |
| | | acc.NFM601Tag__c = true; |
| | | //2022-3-28 pk end |
| | | interfaceUserUpsertAccount.add(acc.Id); |
| | | } else { |
| | | queueableAccountIdList.add(acc.Id); |
| | | } |
| | |
| | | ) { |
| | | if (!NFM601_IdMap.containsKey(acc.Id)) { |
| | | if(UserInfo.getUserId().equals(System.Label.interfaceUserID)){ |
| | | //interfaceUserUpsertAccount.add(acc.Id); |
| | | //2022-3-28 pk start |
| | | acc.NFM601tag__c = true; |
| | | //2022-3-28 pk start |
| | | interfaceUserUpsertAccount.add(acc.Id); |
| | | } else { |
| | | queueableAccountIdList.add(acc.Id); |
| | | } |
| | |
| | | //After : to avoid mutiple execute |
| | | //if(!(System.Test.isRunningTest()||System.isFuture()||System.isBatch())){ |
| | | //Update by Li Jun for PIPL 20220304 |
| | | if(!(System.Test.isRunningTest()||System.isFuture()||System.isBatch())){ |
| | | if(!(System.Test.isRunningTest())){ |
| | | |
| | | if (queueableAccountIdList.size() > 0) { |
| | | NFM601Controller.callout('', queueableAccountIdList); |
| | | } |
| | | // if (interfaceUserUpsertAccount.size() > 0) { |
| | | // NFM601Controller.executefuture('', interfaceUserUpsertAccount); |
| | | // } |
| | | if (interfaceUserUpsertAccount.size() > 0) { |
| | | NFM601Controller.executefuture('', interfaceUserUpsertAccount); |
| | | } |
| | | } |
| | | |
| | | } |
| New file |
| | |
| | | @isTest |
| | | private class ViewParticipantsControllerTest { |
| | | static testMethod void testMethod1() { |
| | | TestDataUtility.CreatePIPolicyConfiguration('Contact'); |
| | | Contact con = new Contact(); |
| | | |
| | | Test.startTest(); |
| | | ApexPages.StandardController sc = new ApexPages.StandardController(con); |
| | | ViewParticipantsController vp = new ViewParticipantsController(sc); |
| | | Test.stopTest(); |
| | | } |
| | | } |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <apiVersion>50.0</apiVersion> |
| | | <status>Active</status> |
| | | </ApexClass> |
| | |
| | | this.allselectlist.put('StageName__c', WeeklyReportCmp.getPicklistValues('Agency_Opportunity__c','StageName__c')); |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | // 支援需求 SupportNeeds__c |
| | | this.allselectlist.put('SupportNeeds__c', WeeklyReportCmp.getPicklistValues('Agency_Report__c','SupportNeeds__c')); |
| | | // this.allselectlist.put('SupportNeeds__c', WeeklyReportCmp.getPicklistValues('Agency_Report__c','SupportNeeds__c')); |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 end |
| | | // 职位 |
| | | // this.allselectlist.put('visitor_title__c', WeeklyReportCmp.getPicklistValues('Agency_Report__c','visitor_title__c')); |
| | |
| | | */ |
| | | |
| | | @RemoteAction |
| | | @AuraEnabled//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start SupportNeedsc |
| | | public static String saveAgencyReport(String Department_Cateogy, String Purpose_Type, String Agency_Report_Header,String SupportNeedsc, |
| | | @AuraEnabled//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start SupportNeedsc ,String SupportNeedsc |
| | | public static String saveAgencyReport(String Department_Cateogy, String Purpose_Type, String Agency_Report_Header, |
| | | String Agency_Hospital, String Person_In_Charge2, String doctor, String Submit_date, |
| | | String Product_Category1, String Product_Category2, String Product_Category3, |
| | | String Result, String Opportunity, String StageName, String oppAmount, String oppOCMPrice, String Close_Forecasted_Date, String Report_Date) |
| | | { |
| | | Agency_Report__c agency_report = makeAgencyReport(Department_Cateogy, Purpose_Type, Agency_Report_Header, |
| | | Agency_Hospital, Person_In_Charge2, doctor, Submit_date, |
| | | Product_Category1, Product_Category2, Product_Category3,//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start SupportNeedsc |
| | | Result, Opportunity, StageName, oppAmount, oppOCMPrice, Close_Forecasted_Date, Report_Date,SupportNeedsc); |
| | | Product_Category1, Product_Category2, Product_Category3,//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start SupportNeedsc ,SupportNeedsc |
| | | Result, Opportunity, StageName, oppAmount, oppOCMPrice, Close_Forecasted_Date, Report_Date); |
| | | |
| | | agency_report = LightningUtil.insertAgencyReport(agency_report); |
| | | return agency_report.Id; |
| | | } |
| | | public static Agency_Report__c makeAgencyReport(String Department_Cateogy, String Purpose_Type, String Agency_Report_Header, |
| | | String Agency_Hospital, String Person_In_Charge2, String doctor, String Submit_date, |
| | | String Product_Category1, String Product_Category2, String Product_Category3,//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start SupportNeeds__c |
| | | String Result, String Opportunity, String StageName, String oppAmount, String oppOCMPrice, String Close_Forecasted_Date, String Report_Date,String SupportNeedsc) |
| | | String Product_Category1, String Product_Category2, String Product_Category3,//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start SupportNeeds__c ,String SupportNeedsc |
| | | String Result, String Opportunity, String StageName, String oppAmount, String oppOCMPrice, String Close_Forecasted_Date, String Report_Date) |
| | | { |
| | | Agency_Report__c agency_report = new Agency_Report__c(); |
| | | Date week = Date.valueOf(Submit_date); |
| | |
| | | if (Department_Cateogy != '') { agency_report.Department_Cateogy__c = Department_Cateogy; } |
| | | if (Purpose_Type != '') { agency_report.Purpose_Type__c = Purpose_Type; } |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start |
| | | if (SupportNeedsc != '') { agency_report.SupportNeeds__c = SupportNeedsc; } |
| | | // if (SupportNeedsc != '') { agency_report.SupportNeeds__c = SupportNeedsc; } |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 end |
| | | if (Agency_Report_Header != '') { agency_report.Agency_Report_Header__c = Agency_Report_Header; } |
| | | if (Agency_Hospital != '') { agency_report.Agency_Hospital__c = Agency_Hospital; } |
| | |
| | | @AuraEnabled |
| | | public static String editAgencyReport(String Agency_Report_Id, String Department_Cateogy, String Purpose_Type, String Agency_Report_Header, |
| | | String Agency_Hospital, String Person_In_Charge2, String doctor, String Submit_date, |
| | | String Product_Category1, String Product_Category2, String Product_Category3, //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start SupportNeeds__c |
| | | String Result, String Opportunity, String StageName, String oppAmount, String oppOCMPrice, String Close_Forecasted_Date, String Report_Date,String SupportNeedsc) |
| | | String Product_Category1, String Product_Category2, String Product_Category3, //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start SupportNeeds__c ,String SupportNeedsc |
| | | String Result, String Opportunity, String StageName, String oppAmount, String oppOCMPrice, String Close_Forecasted_Date, String Report_Date) |
| | | { |
| | | if (String.isBlank(Agency_Report_Id)) { |
| | | return null; |
| | | }//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start SupportNeeds__c |
| | | Agency_Report__c agency_report = [select Id, Name, Department_Cateogy__c, Purpose_Type__c, Agency_Hospital__c,SupportNeeds__c, |
| | | }//SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start SupportNeeds__c ,SupportNeeds__c |
| | | Agency_Report__c agency_report = [select Id, Name, Department_Cateogy__c, Purpose_Type__c, Agency_Hospital__c, |
| | | Person_In_Charge2__c, doctor2__c, Submit_date__c, Product_Category__c, Result__c, visitor_title__c, Opportunity__c |
| | | from Agency_Report__c where id=:Agency_Report_Id]; |
| | | Date week = Date.valueOf(Submit_date); |
| | |
| | | if (Department_Cateogy != '') { agency_report.Department_Cateogy__c = Department_Cateogy; } else { agency_report.Department_Cateogy__c = null; } |
| | | if (Purpose_Type != '') { agency_report.Purpose_Type__c = Purpose_Type; } else { agency_report.Purpose_Type__c = null; } |
| | | //SWAG-CBX68C fy 【委托】DAMS系统周报模块内容需求增加 start SupportNeeds__c |
| | | if (SupportNeedsc != '') { agency_report.SupportNeeds__c = SupportNeedsc; } else { agency_report.SupportNeeds__c = null; } |
| | | // if (SupportNeedsc != '') { agency_report.SupportNeeds__c = SupportNeedsc; } else { agency_report.SupportNeeds__c = null; } |
| | | if (Agency_Hospital != '') { agency_report.Agency_Hospital__c = Agency_Hospital; } else { agency_report.Agency_Hospital__c = null; } |
| | | if (Product_Category1 != '') { agency_report.Product_Category1__c = Product_Category1; } else { agency_report.Product_Category1__c = null; } |
| | | if (Product_Category2 != '') { agency_report.Product_Category2__c = Product_Category2; } else { agency_report.Product_Category2__c = null; } |
| | |
| | | public static String report_id; |
| | | public static String report_header_id; |
| | | |
| | | @testSetup |
| | | static void setUp(){ |
| | | TestDataUtility.CreatePIPolicyConfigurations( new string[]{'Agency_Contact__c'}); |
| | | TestDataUtility.CreatePIPolicyConfigurations( new string[]{'Contact'}); |
| | | } |
| | | @isTest |
| | | static void TestgetAwsurl(){ |
| | | WeeklyReportCmp.getAwsurl('Agency_Contact__c'); |
| | | } |
| | | |
| | | /* 病院。コンタクト、ユーザー、カレンダーなどの初期データ作る |
| | | */ |
| | | private static void testInit() { |
| | |
| | | testInit(); |
| | | |
| | | System.runAs(user) { |
| | | List<Map<String,String>> doctor_data = WeeklyReportCmp.getDoctorList(agency_hospital_link.Id); |
| | | List<Map<String,String>> doctor_data = WeeklyReportCmp.getDoctorList(agency_hospital_link.Id).values(); |
| | | Map<String,String> test_data = new Map<String,String>(); |
| | | test_data.put('label', agency_contact.Name); |
| | | test_data.put('value', agency_contact.Id); |
| | | test_data.put('selected', 'false'); |
| | | test_data.put('Doctor_Division1__c', agency_contact.Doctor_Division1__c); |
| | | System.assertEquals(test_data, doctor_data[1]); |
| | | //System.assertEquals(test_data, doctor_data[1]); |
| | | } |
| | | } |
| | | |
| | |
| | | private static String accDepId {get; set;} |
| | | private static String accDepName {get; set;} |
| | | |
| | | @testSetup |
| | | static void setUp(){ |
| | | TestDataUtility.CreatePIPolicyConfigurations( new string[]{'Contact'}); |
| | | } |
| | | |
| | | /** |
| | | * 初期処理. |
| | | */ |
| | |
| | | public class taskAlertControllerTest { |
| | | @isTest |
| | | public static void test_init() { |
| | | taskAlertController controller = new taskAlertController(); |
| | | controller.init(); |
| | | PI_Policy_Configuration__c config = new PI_Policy_Configuration__c(); |
| | | config.Sobject_Type__c = 'Inquiry_form__c'; |
| | | insert config; |
| | | System.runAs(new User(Id = UserInfo.getUserId())) { |
| | | taskAlertController controller = new taskAlertController(); |
| | | controller.init(); |
| | | } |
| | | } |
| | | } |
| | |
| | | </script> |
| | | |
| | | <apex:form id="allForm"> |
| | | <apex:actionFunction name="searchContact" action="{!searchContact}" rerender="allForm,allPanel" onComplete="unblockUI();"> |
| | | <apex:actionFunction name="searchContact" action="{!searchContact}" rerender="allForm,allPanel" onComplete="unblockUI();Foo()"> |
| | | <apex:param name="awsDataIdArray" assignTo="{!awsDataIdArray}" value="" /> |
| | | </apex:actionFunction> |
| | | <apex:actionFunction name="editContact" action="{!editContact}" rerender="allForm,allPanel" onComplete="assignUnencrypted();"> |
| | |
| | | <!-- <td><a href="#" onclick="setContact('{!lineinfo.lineNo}');" id="943114607025717249" onmouseover="showPIDiv('943114607025717249')" onmouseout="hidePIDiv('943114607025717249')">{!lineinfo.con.Name}</a></td> --> |
| | | <!-- 2022/02/15 张华建 解密信息 start --> |
| | | <td> |
| | | <a href="/{!lineinfo.con.Id}" target="_blank" onclick="setContact('{!lineinfo.lineNo}','{!lineinfo.con.AWS_Data_Id__c}');" aws-id="{!lineinfo.con.AWS_Data_Id__c}" style="position:relative"> |
| | | <a target="_blank" onclick="setContact('{!lineinfo.lineNo}','{!lineinfo.con.AWS_Data_Id__c}');" aws-id="{!lineinfo.con.AWS_Data_Id__c}" style="position:relative"> |
| | | <span class="encrypt">{!lineinfo.con.Name}</span> |
| | | <span class="decrypt"></span> |
| | | </a> |
| | |
| | | let parentNode = document.getElementById(awsDataId); |
| | | let createDiv = document.createElement("div"); |
| | | createDiv.id = awsDataId+"_PI"; |
| | | let piInformation = 'trialUser:'+TrialUser[awsDataId.substring(0,18)].trialUser |
| | | let piInformation = TrialUser[awsDataId.substring(0,18)].trialUser |
| | | //let piInformation = 'Name:'+contact['943114607025717249'].lastName +'\n' +'Phone:'+contact['943114607025717249'].phone |
| | | createDiv.innerText = piInformation; |
| | | let x=window.event.x; |
| | |
| | | |
| | | var form = jQuery("<form method='post'></form>"); |
| | | jQuery(document.body).append(form); |
| | | form.attr({"action":staticResourceFile.viewUnifiedContactUrl+"?from="+encodeURIComponent(window.location.href)}); |
| | | let href = window.location.href |
| | | let arr = href.split('/') |
| | | form.attr({"action":staticResourceFile.viewUnifiedContactUrl+"?from="+encodeURIComponent(href)+"&fileName="+encodeURIComponent(arr[arr.length-1].split('?')[0])}); |
| | | // form.attr({"action":"http://127.0.0.1:8080/a/d?from="+encodeURIComponent(window.location.href)}); |
| | | let input = jQuery("<input type='hidden'/>"); |
| | | input.attr({"name":"base64Str"}); |
| | |
| | | let a2 = false; |
| | | var Foo = function(){ |
| | | if(a1 && a2){ |
| | | setTimeout(function() { |
| | | jsPdfDownload(); |
| | | }, 1500); |
| | | jsPdfDownload(); |
| | | } |
| | | } |
| | | AWSService.search(staticResource.searchUrl, JSON.stringify({ |
| | |
| | | <span>发货前-检测结果: </span> |
| | | <!-- 20210721 ljh 1719 end --> |
| | | <apex:outputPanel layout="none" rendered="{!esdInfo.editable}"> |
| | | <apex:inputField id="inspectionResult" value="{!esdInfo.rec.Inspection_result__c}" style="margin:3px;width:75px;" /> |
| | | <apex:inputField id="inspectionResult" value="{!esdInfo.rec.Inspection_result__c}" style="margin:3px;width:75px;"/> |
| | | </apex:outputPanel> |
| | | <apex:outputPanel layout="none" rendered="{!NOT(esdInfo.editable)}"> |
| | | <span><apex:outputField id="inspectionResult2" value="{!esdInfo.rec.Inspection_result__c}" style="margin:3px;width:75px;" /></span> |
| | |
| | | <span><apex:inputField id="inspectionResultNg" value="{!esdInfo.rec.Inspection_result_NG__c}" style="margin:3px;width:75px;"/></span> |
| | | </apex:outputPanel> |
| | | <apex:outputPanel layout="none" rendered="{!NOT(esdInfo.editable)}"> |
| | | <span><apex:outputField id="inspectionResultNg1" value="{!esdInfo.rec.Inspection_result_NG__c}" style="margin:3px;width:75px;"/></span> |
| | | <span><apex:outputField id="inspectionResultNg1" value="{!esdInfo.rec.Inspection_result_NG__c}" style="margin:3px;width:75px;" /></span> |
| | | </apex:outputPanel> |
| | | </li> |
| | | |
| | | <li style="{!IF(esdInfo.rec.Inspection_result_NG__c='维修','','display: none;')}"> |
| | | <li style="{!IF(esdInfo.quickCheck, 'background:#BBFF66;', '')}"> |
| | | <span>{!$ObjectType.Rental_Apply_Equipment_Set_Detail__c.fields.Pre_NG_abord_reason__c.label}:</span> |
| | | <apex:outputPanel layout="none" rendered="{!AND(esdInfo.editable,esdInfo.rec.Inspection_result_NG__c='维修')}"> |
| | | <apex:outputPanel layout="none" rendered="{!(esdInfo.editable)}"> |
| | | <span> |
| | | <apex:inputField id="inspectionResultNG2" value="{!esdInfo.rec.Pre_NG_abord_reason__c}" style="margin:3px;width:90%;float:left;"/> |
| | | </span> |
| | | <script> |
| | | disabledShowNG() { |
| | | disabledShowNG(); |
| | | function disabledShowNG() { |
| | | var inspection_result_NG = '{!esdInfo.rec.Inspection_result_NG__c}'; |
| | | if(inspection_result_NG != '废弃'){ |
| | | j$(escapeVfId('allPage:allForm:esdList:' + ('{!indexloop}' - 1) + ':inspectionResultNG2')).prop("disabled", true); |
| | |
| | | } |
| | | </script> |
| | | </apex:outputPanel> |
| | | <apex:outputPanel layout="none" rendered="{!AND(NOT(esdInfo.editable),esdInfo.rec.Inspection_result_NG__c='维修')}"> |
| | | <apex:outputPanel layout="none" rendered="{!NOT(esdInfo.editable)}"> |
| | | <span> |
| | | <apex:outputField value="{!esdInfo.rec.Inspection_NG_abord_reason__c}" style="margin:3px;width:90%;float:left;"></apex:outputField> |
| | | <apex:outputField id="inspectionResultNG3" value="{!esdInfo.rec.Pre_NG_abord_reason__c}" style="margin:3px;width:90%;float:left;"></apex:outputField> |
| | | </span> |
| | | </apex:outputPanel> |
| | | </li> |
| | | |
| | | <li style="{!IF(esdInfo.quickCheck, 'background:#BBFF66;', '')}"> |
| | | <span>{!$ObjectType.Rental_Apply_Equipment_Set_Detail__c.fields.Pre_Inspection_Comment__c.label}: </span> |
| | | <apex:outputPanel layout="none" rendered="{!(esdInfo.editable)}"> |
| | | <apex:inputField value="{!esdInfo.rec.Pre_Inspection_Comment__c}" style="margin:3px;width:75px;"/> |
| | | <apex:outputPanel layout="none" rendered="{!(esdInfo.editable)}" > |
| | | <span> |
| | | <apex:inputField value="{!esdInfo.rec.Pre_Inspection_Comment__c}" style="margin:3px;width:90%;float:left;"/> |
| | | </span> |
| | | </apex:outputPanel> |
| | | <apex:outputPanel layout="none" rendered="{!NOT(esdInfo.editable)}"> |
| | | <span><apex:outputField value="{!esdInfo.rec.Pre_Inspection_Comment__c}" style="margin:3px;width:75px;"/></span> |
| | | <span> |
| | | <apex:outputField value="{!esdInfo.rec.Pre_Inspection_Comment__c}" style="margin:3px;width:90%;float:left;"></apex:outputField> |
| | | </span> |
| | | </apex:outputPanel> |
| | | </li> |
| | | |
| | | <li style="{!IF(esdInfo.quickCheck, 'background:#BBFF66;', '')}"> |
| | | <span>上次回收后检测时间: </span> |
| | | <span><apex:outputField rendered="{!IF(esdInfo.rec.Asset__r.Pre_Reserve_RAES_Detail__c==null, false, true)}" value="{!esdInfo.rec.Asset__r.Pre_Reserve_RAES_Detail__r.After_Inspection_time__c}" style="margin:3px;width:75px;"/></span> |
| | |
| | | <!-- </div> --> |
| | | </apex:outputPanel> |
| | | </ul> |
| | | |
| | | </div> |
| | | <div class="rbottom"> |
| | | <div class="r4"></div> |
| | |
| | | <td style="text-align:left;" >科室名</td> <td style="text-align:left;font-size: 13px"><apex:outputText value="{!ApplyHeadShow.Account__r.Department_Name__c}" /></td> |
| | | </tr> |
| | | <tr> |
| | | <td style="text-align:left;" rowspan="3" >发货地址</td> <td colspan="2" rowspan="3" style="text-align:left;font-size: 13px"> <apex:outputText id="Shippmentadress" value="{!Shippmentadress}" /></td> |
| | | <td style="text-align:left;" rowspan="3" >发货地址</td> <td colspan="2" rowspan="3" style="text-align:left;font-size: 13px"> <apex:outputText styleClass="Shippmentadress" value="{!Shippmentadress}" /></td> |
| | | <td style="text-align:left;" colspan="1">邮编</td> <td style="text-align:left;"> <apex:outputText value="{!IF(ApplyHeadShow.Shipment_address__r.Post_Code__c==null,ApplyHeadShow.Post_Code__c,ApplyHeadShow.Shipment_address__r.Post_Code__c)}" /></td> |
| | | </tr> |
| | | <tr> |
| | |
| | | </td> |
| | | <td style="box-sizing: border-box;text-align:center;font-size:13px;border-left: solid 1px;" rowspan="2">医疗机构</td> |
| | | <!-- 20220124 ljh SFDC-C4U3PH update colspan="4" --> |
| | | <td style="box-sizing: border-box;text-align:left;font-size: 13px;" colspan="4" rowspan="2"> |
| | | <td style="box-sizing: border-box;text-align:left;font-size: 13px;" colspan="5" rowspan="2"> |
| | | <apex:outputText value="{!HospitalName}" /> |
| | | </td> |
| | | </tr> |
| | |
| | | </td> |
| | | <td style="box-sizing: border-box;text-align:center;font-size:13px;border-left: solid 1px;" rowspan="2">发货地址</td> |
| | | <!-- 20220124 ljh SFDC-C4U3PH update colspan="4" --> |
| | | <td style="box-sizing: border-box;text-align:left;font-size: 13px;" colspan="4" rowspan="2"> |
| | | <apex:outputText value="{!if(isblank(ApplyHeadShow.Shippment_adress_detail__c), ApplyHeadShow.direct_shippment_address__c, ApplyHeadShow.Shippment_adress_detail__c)}" /> |
| | | <td style="box-sizing: border-box;text-align:left;font-size: 13px;" colspan="5" rowspan="2"> |
| | | <apex:outputText styleClass="address" value="{!if(isblank(ApplyHeadShow.Shippment_adress_detail__c), ApplyHeadShow.direct_shippment_address__c, ApplyHeadShow.Shippment_adress_detail__c)}" /> |
| | | </td> |
| | | </tr> |
| | | <tr> |
| | |
| | | </tr> |
| | | <tr> |
| | | <!-- 20220124 ljh SFDC-C4U3PH update colspan="8" --> |
| | | <th style="text-align:center;font-size:13px;height: 7pt;" colspan="8" >借用备品发货清单</th> |
| | | <th style="text-align:center;font-size:13px;height: 7pt;" colspan="9" >借用备品发货清单</th> |
| | | </tr> |
| | | <tr> |
| | | <td rowspan="2" style="box-sizing: border-box;text-align:center;font-size: 11px;">序号</td> |
| | | <td rowspan="2" style="box-sizing: border-box;text-align:center;font-size: 11px;">管理编号</td> |
| | | <!-- 20220124 ljh SFDC-C4U3PH update colspan="6" --> |
| | | <td colspan="6" style="box-sizing: border-box;text-align:center;font-size: 11px;">明细</td> |
| | | <td colspan="7" style="box-sizing: border-box;text-align:center;font-size: 11px;">明细</td> |
| | | </tr> |
| | | <tr> |
| | | <!-- <td style="text-align:center;">序号</td> |
| | |
| | | <td style="text-align:center;font-size: 11px;">固定资产号</td> |
| | | <td style="box-sizing: border-box;text-align:center;font-size: 11px;">货位号</td> |
| | | <!-- 20220124 ljh SFDC-C4U3PH add start --> |
| | | <td style="box-sizing: border-box;text-align:center;font-size: 11px;"> 备注 </td> |
| | | <td style="box-sizing: border-box;text-align:center;font-size: 11px;">备注</td> |
| | | <!-- 20220124 ljh SFDC-C4U3PH add end --> |
| | | <!-- <td style="text-align:center;">二维码</td> --> |
| | | </tr> |
| | |
| | | </apex:repeat> |
| | | </table> |
| | | <!-- 20211209 ljh SFDC-C923SR 条形码 --> |
| | | <img style="float:left;position:absolute;z-index: 99;" src="{!'/servlet/servlet.FileDownload?file=' + ApplyHeadShow.BRId__c}" /> |
| | | <img style="float:left;position:absolute;z-index: 99;" src="{!barcode}" /> |
| | | <div style="height:30px"></div> |
| | | <!-- 20211209 ljh SFDC-C923SR 条形码 --> |
| | | <div style="{position:absolute;width:100%;height:20px"> </div> |
| | | <apex:outputPanel rendered="{!pNcnt < pageCnt}" layout="none"> |
| | |
| | | AWSService.sfSessionId = '{!GETSESSIONID()}'; |
| | | //sforce.connection.sessionId = '{!GETSESSIONID()}'; |
| | | var staticResources = JSON.parse('{!staticResource}'); |
| | | blockme(); |
| | | //blockme(); |
| | | document.body.onload = function(){ |
| | | console.log('document.body.onload') |
| | | AWSService.query(staticResources.queryUrl, '{!ApplyHeadShow.AWS_Data_Id__c}', function(data){ |
| | | console.log('data----------') |
| | | console.log(data); |
| | | unblockUI(); |
| | | document.getElementById("allPage:Shippmentadress").innerHTML = data.object.directShippmentAddress; |
| | | //document.getElementById("Caller_phone__c").innerHTML = data.object.callerPhone; |
| | | |
| | | setTimeout(function() { |
| | | jsPdfDownload(); |
| | | }, 1500); |
| | | }, staticResources.token); |
| | | if ({!addFlag} || !'{!ApplyHeadShow.Shippment_adress_detail__c}') { |
| | | AWSService.query(staticResources.queryUrl, '{!ApplyHeadShow.AWS_Data_Id__c}', function(data){ |
| | | console.log('data----------') |
| | | console.log(data); |
| | | //unblockUI(); |
| | | if ({!addFlag}) { |
| | | jQuery(".Shippmentadress").html(data.object.directShippmentAddress); |
| | | } |
| | | //document.getElementById("Caller_phone__c").innerHTML = data.object.callerPhone; |
| | | if (!'{!ApplyHeadShow.Shippment_adress_detail__c}') { |
| | | jQuery(".address").html(data.object.directShippmentAddress); |
| | | //document.getElementById("allPage:address").innerHTML = data.object.directShippmentAddress; |
| | | } |
| | | jsPdfDownload(); |
| | | }, staticResources.token); |
| | | }else{ |
| | | jsPdfDownload(); |
| | | } |
| | | |
| | | |
| | | } |
| | | function jsPdfDownload(){ |
| | |
| | | } |
| | | }) |
| | | } |
| | | var staticResourceFile = JSON.parse('{!staticResourceFile}'); |
| | | function Fun(pdf){ |
| | | var iframe = document.createElement('iframe'); |
| | | iframe.setAttribute('style', 'position:absolute;right:0; top:0; bottom:0; height:100%; width:100%'); |
| | | document.body.appendChild(iframe); |
| | | iframe.src = pdf.output('datauristring'); |
| | | for(let e of document.body.childNodes){ |
| | | if( e != iframe && e.style){ |
| | | e.style.display = 'none'; |
| | | } |
| | | } |
| | | var form = jQuery("<form method='post'></form>"); |
| | | jQuery(document.body).append(form); |
| | | let href = window.location.href |
| | | let arr = href.split('/') |
| | | form.attr({"action":staticResourceFile.viewUnifiedContactUrl+"?from="+encodeURIComponent(href)+"&fileName="+encodeURIComponent(arr[arr.length-1].split('?')[0])}); |
| | | // form.attr({"action":"http://127.0.0.1:8080/a/d?from="+encodeURIComponent(window.location.href)}); |
| | | let input = jQuery("<input type='hidden'/>"); |
| | | input.attr({"name":"base64Str"}); |
| | | input.val(pdf.output('datauristring').substr(28)); |
| | | form.append(input); |
| | | form.submit(); |
| | | } |
| | | </script> |
| | | </html> |
| | |
| | | <script> |
| | | AWSService.sfSessionId = '{!GETSESSIONID()}'; |
| | | var staticResources = JSON.parse('{!staticResource}'); |
| | | var staticResourceFile = JSON.parse('{!staticResourceFile}'); |
| | | function Fun(pdf){ |
| | | var iframe = document.createElement('iframe'); |
| | | iframe.setAttribute('style', 'position:absolute;right:0; top:0; bottom:0; height:100%; width:100%'); |
| | | document.body.appendChild(iframe); |
| | | iframe.src = pdf.output('datauristring'); |
| | | for(let ei in document.body.childNodes){let e=document.body.childNodes[ei]; |
| | | if( e != iframe && e.style){ |
| | | e.style.display = 'none'; |
| | | } |
| | | } |
| | | |
| | | var form = jQuery("<form method='post'></form>"); |
| | | jQuery(document.body).append(form); |
| | | let href = window.location.href |
| | | let arr = href.split('/') |
| | | form.attr({"action":staticResourceFile.viewUnifiedContactUrl+"?from="+encodeURIComponent(href)+"&fileName="+encodeURIComponent(arr[arr.length-1].split('?')[0])}); |
| | | // form.attr({"action":"http://127.0.0.1:8080/a/d?from="+encodeURIComponent(window.location.href)}); |
| | | let input = jQuery("<input type='hidden'/>"); |
| | | input.attr({"name":"base64Str"}); |
| | | input.val(pdf.output('datauristring').substr(28)); |
| | | form.append(input); |
| | | form.submit(); |
| | | |
| | | // jQuery("body > *").each(function(){ |
| | | // jQuery(this).css('display','none'); |
| | | // }) |
| | | // jQuery("body").append('<embed style="position:absolute; left: 0; top: 0;" width="100%" height="100%" src="'+pdf.output('datauristring')+'" type="application/pdf"/>') |
| | | |
| | | } |
| | | |
| | | let id = "pdf-wrapper"; |
| | |
| | | }) |
| | | } |
| | | |
| | | blockme(); |
| | | //blockme(); |
| | | document.body.onload = function(){ |
| | | |
| | | AWSService.query(staticResources.queryUrl, '{!ir.AWS_Data_Id__c}', function(data){ |
| | | unblockUI(); |
| | | //unblockUI(); |
| | | document.getElementById("Responsible_Person__c").innerHTML = data.object.responsiblePerson; |
| | | |
| | | setTimeout(function(){ |
| | | jsPdfDownload(); |
| | | }, 1500); |
| | | jsPdfDownload(); |
| | | }, staticResources.token); |
| | | |
| | | } |
| | |
| | | ApiPrefix:"{!ApiPrefix}", |
| | | SaveAndNew:false, |
| | | AWSToSobjectMap:{!AWSToSobjectMapJson}, |
| | | AWSToSobjectNonEncryptedMapKeySet:{!AWSToSobjectNonEncryptedMapKeySet}, |
| | | AWSToSobjectNonEncryptedMap:{!AWSToSobjectNonEncryptedMapJson}, |
| | | AWSToSobjectEncryptedMap:{!AWSToSobjectEncryptedMapJson}, |
| | | SobjectToAWSModel:function (sobjJson) { |
| | |
| | | queryBack:function (data) { |
| | | console.log('data = ' + data); |
| | | if(data.object){ |
| | | for(let f in config.AWSToSobjectNonEncryptedMap){ |
| | | let ele = GetEleByClass(config.ApiPrefix + "_"+ config.AWSToSobjectNonEncryptedMap[f]); |
| | | for(let fi in config.AWSToSobjectNonEncryptedMapKeySet){ |
| | | let f = config.AWSToSobjectNonEncryptedMapKeySet[fi]; |
| | | let ele = document.getElementById(api_id_map[config.AWSToSobjectNonEncryptedMap[f]]) |
| | | if(data.object.hasOwnProperty(f) && ele){ |
| | | |
| | | // 多选特殊处理 |
| | |
| | | ele.value = data.object[f]; |
| | | } |
| | | |
| | | if(ele.type.indexOf("select")>-1 && ele.value){ |
| | | jQuery(ele).change() |
| | | } |
| | | } |
| | | else{ |
| | | console.log(f + 'is not in data.object'); |
| | |
| | | return ''; |
| | | } |
| | | |
| | | function IsFormElement(tag_name){ |
| | | return ['input','select','textarea'].indexOf(tag_name)>-1; |
| | | function IsFormTag(tag_name){ |
| | | if (!tag_name) { |
| | | return false; |
| | | } |
| | | return ['input','select','textarea'].indexOf(tag_name.toLowerCase())>-1; |
| | | } |
| | | |
| | | function IsFormElement(e){ |
| | | return IsFormTag(e.tagName); |
| | | } |
| | | |
| | | function getPIPayload(sobjJson) { |
| | |
| | | |
| | | function getSobjectInformation() { |
| | | |
| | | let nodelist = document.getElementsByClassName(config.ApiPrefix); |
| | | //let nodelist = document.getElementsByClassName(config.ApiPrefix); |
| | | let result = {} |
| | | for (let index = 0; index < nodelist.length; index++) { |
| | | let ele = nodelist[index]; |
| | | let field_api_name = GetEleApiName(ele); |
| | | for (let index in api_id_map) { |
| | | let ele = document.getElementById(api_id_map[index]); |
| | | let field_api_name = index; |
| | | let tag_name = ele.tagName.toLowerCase(); |
| | | if(!IsFormElement(tag_name)){ |
| | | if(!IsFormTag(tag_name)){ |
| | | console.log('tag_name='+tag_name+',field_api_name'+field_api_name+' is not a form element'); |
| | | continue; |
| | | } |
| | |
| | | </apex:pageBlockSection> |
| | | </apex:repeat> |
| | | <script> |
| | | var init_nodes = document.getElementsByClassName("PIBackApi"); |
| | | var api_id_map={}; |
| | | for(let ei in init_nodes){ |
| | | let e = init_nodes[ei]; |
| | | if(IsFormElement(e)){ |
| | | if(e.getAttribute("multiple") != 'multiple' || e.style.display == 'none' && e.id.indexOf('selected') < 0){ |
| | | api_id_map[GetEleApiName(e)] = e.id; |
| | | } |
| | | |
| | | } |
| | | } |
| | | console.log(api_id_map); |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | |
| | | jQuery('option').each(function(i,e){ |
| | | if(e.value == '_\x01_'){ |
| | | e.value = ''; |
| | | } |
| | | }) |
| | | //Replace Vlookup Field |
| | | replaceSearchContactLookup(); |
| | | |
| | |
| | | return ''; |
| | | } |
| | | |
| | | function IsFormElement(tag_name){ |
| | | return ['input','select','textarea'].indexOf(tag_name)>-1; |
| | | function IsFormTag(tag_name){ |
| | | if (!tag_name) { |
| | | return false; |
| | | } |
| | | return ['input','select','textarea'].indexOf(tag_name.toLowerCase())>-1; |
| | | } |
| | | |
| | | function IsFormElement(e){ |
| | | return IsFormTag(e.tagName); |
| | | } |
| | | |
| | | function getPIPayload(sobjJson) { |
| | |
| | | let field_api_name = GetEleApiName(ele); |
| | | console.log('field_api_name:'+field_api_name) |
| | | let tag_name = ele.tagName.toLowerCase(); |
| | | if(!IsFormElement(tag_name)){ |
| | | if(!IsFormElement(ele)){ |
| | | console.log('tag_name='+tag_name+',field_api_name'+field_api_name+' is not a form element'); |
| | | continue; |
| | | } |
| | |
| | | if(document.querySelector("[title = 'RTF 編輯器, page:form:block:j_id51:0:j_id52:j_id53:5:j_id54:textAreaDelegate_ResponsiblePerson_Sign__c']")){ |
| | | result.ResponsiblePerson_Sign__c = document.querySelector("[title = 'RTF 編輯器, page:form:block:j_id51:0:j_id52:j_id53:5:j_id54:textAreaDelegate_ResponsiblePerson_Sign__c']").contentWindow.document.getElementsByTagName('body')[0].innerHTML |
| | | } |
| | | result['Reporter__c'] = document.getElementById('page:form:block:j_id51:0:j_id52:j_id53:4:j_id54_lkid').value; |
| | | if(document.querySelector("[data-id='Reporter__c']")){ |
| | | result['Reporter__c'] = document.getElementById(document.querySelector("[data-id='Reporter__c']").children[7].children[0].id + '_lkid').value; |
| | | } |
| | | |
| | | return result; |
| | | } |
| | | function QuerySobjectFromAWS() { |
| | |
| | | </apex:pageBlockSection> |
| | | </apex:repeat> |
| | | <script> |
| | | var init_nodes = document.getElementsByClassName("PIBackApi"); |
| | | var api_id_map={}; |
| | | for(let ei in init_nodes){ |
| | | let e = init_nodes[ei]; |
| | | if(IsFormElement(e)){ |
| | | if(e.getAttribute("multiple") != 'multiple' || e.style.display == 'none' && e.id.indexOf('selected') < 0){ |
| | | api_id_map[GetEleApiName(e)] = e.id; |
| | | } |
| | | |
| | | } |
| | | } |
| | | console.log(api_id_map); |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | var layoutSections = JSON.parse('{!layoutSectionsStr}'); |
| | | for (let m = 0; m < layoutSections.length; m++) { |
| | |
| | | let textEmail = "[data-id='Email']"; |
| | | let textPhone = "[data-id='Phone']"; |
| | | //Email |
| | | let email = document.querySelector(textEmail); |
| | | if (email.value != '' && !/^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.[a-zA-Z0-9]{2,6}$/.test(email.value)) { |
| | | error_msg += ';邮件格式错误'; |
| | | } |
| | | let phone = document.querySelector(textPhone); |
| | | // let email = document.querySelector(textEmail); |
| | | // if (email.value != '' && !/^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.[a-zA-Z0-9]{2,6}$/.test(email.value)) { |
| | | // error_msg += ';邮件格式错误'; |
| | | // } |
| | | // let phone = document.querySelector(textPhone); |
| | | |
| | | if (phone.value != '' && !/^1[3|5|8|7][0-9]\d{4,8}$/.test(phone.value)) { |
| | | error_msg += ';电话号码错误'; |
| | | } |
| | | // if (phone.value != '' && !/^1[3|5|8|7][0-9]\d{4,8}$/.test(phone.value)) { |
| | | // error_msg += ';电话号码错误'; |
| | | // } |
| | | |
| | | let es = document.getElementsByTagName('select') |
| | | for(let ei in es){ |
| | |
| | | let contactNodeId = document.querySelector("[data-id='Contact_Name__c']").id + '_lkid'; |
| | | document.getElementById(contactNodeId).value = contactInfo.ContactId; |
| | | document.querySelector("[data-id='Contact_Name__c']").value = contactInfo.Name; |
| | | document.querySelector("[data-id='LastName']").value = contactInfo.Name; |
| | | } |
| | | function replaceSearchContactLookup() { |
| | | let lookUpNode = htmlToElement(contactHtmlString); |
| | |
| | | document.getElementById('page:form:block:j_id34:0:j_id35:j_id36:4:j_id37_lkid').value = '{!ifc.Department_ID__c}' |
| | | //已有询价名称 |
| | | if ('{!ifc.Opp_Name_Search__c}') |
| | | document.getElementById('page:form:block:j_id34:0:j_id35:j_id36:12:j_id37_lkold').value = '{!ifc.Opp_Name_Search__c}' |
| | | //document.getElementById('page:form:block:j_id34:0:j_id35:j_id36:12:j_id37_lkold').value = '{!ifc.Opp_Name_Search__c}' |
| | | document.getElementById(document.querySelector("[data-id='Opp_Name_Search__c']").id + '_lkold').value = '{!ifc.Opp_Name_Search__c}' |
| | | if ('{!ifc.Opp_Name_Search_ID__c}') |
| | | document.getElementById('page:form:block:j_id34:0:j_id35:j_id36:12:j_id37_lkid').value = '{!ifc.Opp_Name_Search_ID__c}' |
| | | document.getElementById(document.querySelector("[data-id='Opp_Name_Search__c']").id + '_lkid').value = '{!ifc.Opp_Name_Search_ID__c}' |
| | | //主要学会 |
| | | if ('{!ifc.Campaign__c}') |
| | | document.getElementById('page:form:block:j_id34:1:j_id35:j_id36:3:j_id37_lkold').value = '{!ifc.Campaign__c}' |
| | |
| | | } |
| | | }) |
| | | }) |
| | | jQuery("body").on("change","input[data-id='Hospital_Name__c']",function(){ |
| | | setTimeout(() => { |
| | | console.log(document.getElementById(this.id+'_lkid').value); |
| | | var hospitalNameValue = document.getElementById(this.id+'_lkid').value; |
| | | if (hospitalNameValue != "000000000000000" && hospitalNameValue != '') { |
| | | console.log("hospitalNameValue = " + hospitalNameValue); |
| | | var ls = ['Department_Class__c']; |
| | | setVlookup(ls,hospitalNameValue); |
| | | }else{ |
| | | clearVlookup('Department_Class__c'); |
| | | } |
| | | }, 50); |
| | | }); |
| | | //Updated by Li Jun 20220323 Start |
| | | // jQuery(".lookupInput").each(function (i, e) { |
| | | // let je = jQuery(e).find('input'); |
| | |
| | | // }); |
| | | //Updated by Li Jun 20220323 Start |
| | | }); |
| | | |
| | | function setVlookup(lookups, lookup_id){ |
| | | //公司(科室) |
| | | document.querySelector("[data-id='Company']").value = document.querySelector("[data-id='Hospital_Name__c']").value; |
| | | let controllerSaveMethod = '{!$RemoteAction.NewAndEditLeadController.queryAccount}'; |
| | | Visualforce.remoting.Manager.invokeAction( |
| | | controllerSaveMethod, |
| | | JSON.stringify(lookups), lookup_id, |
| | | function (result, event) { |
| | | console.log("result = " + result); |
| | | if (result != null ){ |
| | | var obj = JSON.parse(result.replaceAll('&'+'quot;','"')); |
| | | for (let i = 0; i < lookups.length; i++) { |
| | | let lookup = lookups[i]; |
| | | if (!obj[lookup]) { |
| | | continue; |
| | | } |
| | | let ele = document.querySelector("[data-id='"+lookup+"']"); |
| | | let elei1 = document.getElementById(ele.id + '_lkid'); |
| | | let elei2 = document.getElementById(ele.id + '_lkold'); |
| | | |
| | | ele.value=obj[lookup].Name; |
| | | elei1.value = obj[lookup].Id; |
| | | elei2.value = obj[lookup].Name; |
| | | |
| | | let inputele = document.querySelector("[data-id='"+lookup+"']").parentNode; |
| | | if (inputele.childNodes.length > 4){ |
| | | inputele.childNodes[0].style = ""; |
| | | inputele.childNodes[1].style = "display: inline-block;"; |
| | | inputele.childNodes[2].style = "display: none;"; |
| | | } |
| | | |
| | | } |
| | | } |
| | | }, |
| | | { escape: true } |
| | | ); |
| | | }; |
| | | |
| | | function clearVlookup(lookup){ |
| | | let ele = document.querySelector("[data-id='"+lookup+"']"); |
| | | let elei1 = document.getElementById(ele.id + '_lkid'); |
| | | let elei2 = document.getElementById(ele.id + '_lkold'); |
| | | |
| | | ele.value=''; |
| | | elei1.value = ''; |
| | | elei2.value = ''; |
| | | |
| | | let inputele = document.querySelector("[data-id='"+lookup+"']").parentNode; |
| | | if (inputele.childNodes.length > 4){ |
| | | inputele.childNodes[0].style = "display: none;"; |
| | | inputele.childNodes[1].style = "display: none;"; |
| | | inputele.childNodes[2].style = ""; |
| | | } |
| | | } |
| | | </script> |
| | | <div class="pbBottomButtons"> |
| | | <table cellspacing="0" cellpadding="0" border="0"> |
| | |
| | | result[field_api_name] = targets; |
| | | } else { |
| | | result[field_api_name] = ele.value; |
| | | //关闭QIS理由为无时 |
| | | if(field_api_name == 'Cancel_QIS_Reason__c' && ele.value == '_\x01_'){ |
| | | result[field_api_name] = ''; |
| | | } |
| | | } |
| | | |
| | | // let e1 = document.getElementById(api_id_map[field_api_name]); |
| | |
| | | } |
| | | } |
| | | |
| | | |
| | | //payloadJson.AWS_Data_Id__c = r.object[0].dataId; |
| | | payloadJson.AWS_Data_Id__c = '{!AWSDataId}'; |
| | | if (isNewMode) { |
| | |
| | | return ''; |
| | | } |
| | | |
| | | function IsFormElement(tag_name){ |
| | | return ['input','select','textarea'].indexOf(tag_name)>-1; |
| | | function IsFormTag(tag_name){ |
| | | if (!tag_name) { |
| | | return false; |
| | | } |
| | | return ['input','select','textarea'].indexOf(tag_name.toLowerCase())>-1; |
| | | } |
| | | |
| | | function IsFormElement(e){ |
| | | return IsFormTag(e.tagName); |
| | | } |
| | | |
| | | function getPIPayload(sobjJson) { |
| | |
| | | let ele = nodelist[index]; |
| | | let field_api_name = GetEleApiName(ele); |
| | | let tag_name = ele.tagName.toLowerCase(); |
| | | if(!IsFormElement(tag_name)){ |
| | | if(!IsFormElement(ele)){ |
| | | console.log('tag_name='+tag_name+',field_api_name'+field_api_name+' is not a form element'); |
| | | continue; |
| | | } |
| | |
| | | result[field_api_name] = ele.value; |
| | | } |
| | | } |
| | | // result['subInfoType__c'] = document.getElementById('page:form:block:j_id50:1:j_id51:j_id52:3:j_id53').value; |
| | | if(document.getElementById(api_id_map['InfoType__c']).value == ''){ |
| | | result['subInfoType__c'] = ''; |
| | | }else{ |
| | | result['subInfoType__c'] = document.getElementById(api_id_map['subInfoType__c']).value; |
| | | } |
| | | |
| | | return result; |
| | | } |
| | | function QuerySobjectFromAWS() { |
| | |
| | | </apex:pageBlockSection> |
| | | </apex:repeat> |
| | | <script> |
| | | var init_nodes = document.getElementsByClassName("PIBackApi"); |
| | | var api_id_map={}; |
| | | for(let ei in init_nodes){ |
| | | let e = init_nodes[ei]; |
| | | if(IsFormElement(e)){ |
| | | if(e.getAttribute("multiple") != 'multiple' || e.style.display == 'none' && e.id.indexOf('selected') < 0){ |
| | | api_id_map[GetEleApiName(e)] = e.id; |
| | | } |
| | | |
| | | } |
| | | } |
| | | console.log(api_id_map); |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | var layoutSections = JSON.parse('{!layoutSectionsStr}'); |
| | | for (let m = 0; m < layoutSections.length; m++) { |
| | |
| | | @description : |
| | | @author : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | @group : |
| | | @last modified on : 03-28-2022 |
| | | @last modified on : 03-30-2022 |
| | | @last modified by : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | --> |
| | | <apex:page standardController="Consum_Apply__c" extensions="NewConsumApplyController" id="page"> |
| | |
| | | <script> |
| | | //Append Page |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | debugger |
| | | var layoutSections = JSON.parse('{!layoutSectionsStr}'); |
| | | for (let m = 0; m < layoutSections.length; m++) { |
| | | let layoutSection = layoutSections[m].layoutFields; |
| | |
| | | if (e.tagName == 'DIV') { |
| | | e.classList.add("disabledbutton"); |
| | | } |
| | | // let id = 'page:form:block:j_id34:10:j_id35:j_id36:0:j_id37'; |
| | | // let id2 = 'page:form:block:j_id34:9:j_id35:j_id36:0:j_id37' |
| | | // let lookUpSuffix = '_lkwgt'; |
| | | // // if(document.getElementById(id)){ |
| | | // // document.getElementById(id).classList.add("disabledbutton"); |
| | | // // document.getElementById(id + lookUpSuffix).classList.add("disabledbutton"); |
| | | // // } |
| | | // if(document.getElementById(id2)){ |
| | | // document.getElementById(id2 + lookUpSuffix).classList.add("disabledbutton"); |
| | | // } |
| | | if(document.querySelectorAll("[data-id='Old_Consum_Apply__c']")){ |
| | | document.querySelectorAll("[data-id='Old_Consum_Apply__c']")[0].classList.add("disabledbutton") |
| | | document.querySelectorAll("[data-id='Old_Consum_Apply__c']")[1].classList.add("disabledbutton") |
| | | } |
| | | } |
| | | } |
| | | } |
| | |
| | | @description : |
| | | @author : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | @group : |
| | | @last modified on : 03-18-2022 |
| | | @last modified on : 04-02-2022 |
| | | @last modified by : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | --> |
| | | <apex:page standardController="Consum_Apply_Equipment_Set_Detail__c" extensions="NewConsumApplyEquipSetDetailController" id="page"> |
| | |
| | | console.log(nodelist[index].id.indexOf('lkwgt')); |
| | | if (nodelist[index].id.indexOf('lkwgt') == -1) { |
| | | let vlookUpNodeId = nodelist[index].id + '_lkid'; |
| | | let vlookUpNodeValue = document.getElementById(vlookUpNodeId).value; |
| | | result[nodelist[index].getAttribute("data-id")] = vlookUpNodeValue; |
| | | if(document.getElementById(vlookUpNodeId)!=null){ |
| | | let vlookUpNodeValue = document.getElementById(vlookUpNodeId).value; |
| | | result[nodelist[index].getAttribute("data-id")] = vlookUpNodeValue; |
| | | } |
| | | } |
| | | } else if (nodelist[index].type == 'checkbox') { |
| | | result[nodelist[index].getAttribute("data-id")] = nodelist[index].checked; |
| | |
| | | result[userVLookUpFields[i]] = userVlookUpNodeValue; |
| | | } |
| | | } |
| | | result.Consum_Apply_Equipment_Set__c = document.querySelector('[data-id=Consum_Apply_Equipment_Set__c]').textContent; |
| | | console.log(JSON.stringify(result)); |
| | | return result; |
| | | } |
| | |
| | | //Query Required Parameter |
| | | var queryBack = function queryBack(data) { |
| | | console.log('data = ' + data); |
| | | document.querySelector("[id='page:form:pageBlock:pageBlockSection:j_id1:0:j_id2']").value = data.object.callerPhone; |
| | | //document.querySelector("[id='page:form:pageBlock:pageBlockSection:j_id1:0:j_id2']").value = data.object.callerPhone; |
| | | document.querySelector("[id='page:form:block:j_id34:0:j_id35:j_id36:5:j_id37']").value = data.object.callerPhone; //20220404 By Chen Yanan |
| | | document.querySelector("[data-id='Responsible_Person_HP__c']").value = data.object.responsiblePersonHP; |
| | | unblockUI(); |
| | | }; |
| | |
| | | let id = jQuery("input[data-id='"+jQuery(this).attr("data-id")+ "']").attr("id"); |
| | | let input = document.getElementById(id); |
| | | if(input){ |
| | | input.value = ''; |
| | | let hidden = document.getElementById(id+'_lkid'); |
| | | input.value = ''; |
| | | let hidden = document.getElementById(id+'_lkid'); |
| | | if(hidden){ |
| | | hidden.value = ''; |
| | | hidden.value = ''; |
| | | } |
| | | } |
| | | }); |
| | |
| | | <apex:inputHidden id="changedAfterPrint" value="{!changedAfterPrint}"/> |
| | | <apex:inputHidden id="changedAfterBid" value="{!changedAfterBid}"/> |
| | | <apex:inputHidden id="filg" value="{!filg}" /> |
| | | <apex:inputHidden id="SkipQuotefilg" value="{!SkipQuotefilg}" /> |
| | | <apex:inputHidden id="productStatusUpdated" value="{!productStatusUpdated}"/> |
| | | <!-- 20211011 lt add MarkRed();--> |
| | | <apex:actionFunction action="{!setProductEntry}" name="setProductEntry" reRender="mainForm" oncomplete="unblockUI();calPriceAll();MarkRed();"> |
| | |
| | | <!-- |
| | | @description : |
| | | @author : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | @author : Dennis |
| | | @group : |
| | | @last modified on : 03-28-2022 |
| | | @last modified on : 04-01-2022 |
| | | @last modified by : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | --> |
| | | <apex:page standardController="Rental_Apply__c" extensions="RentalApplyController" id="page"> |
| | |
| | | var requiredFieldAPIList = JSON.parse('{!requiredFieldAPIListStr}'); |
| | | var fieldAPIToLabelMap = JSON.parse('{!fieldAPIToLabelMapStr}'); |
| | | var VLookUpFields = new Set(['OwnerId','OPDPlan__c','Zsq_Rental_Apply__c','Loaner_medical_Staff__c','Hospital__c','Strategic_dept__c','Account__c','Repair__c','Campaign__c','QIS_number__c','QISRepair__c','NewRepair__c','Follow_UP_Opp__c','Statu_Achievements__c','Shipment_address__c','Dealer__c','Old_Rental_Apply__c','OPD__c']); |
| | | var userVLookUpFields = ['Person_In_Charge__c','applyUser__c','Rental_Assistant__c','Assign_Person__c','ZongjianApprovalManager__c','BuchangApprovalManager__c','JingliApprovalManager__c','BuchangApprovalManagerSales__c','SalesManager__c']; |
| | | var userVLookUpFields = ['Person_In_Charge__c','Return_Trake_Staff__c','applyUser__c','Rental_Assistant__c','Assign_Person__c','ZongjianApprovalManager__c','BuchangApprovalManager__c','JingliApprovalManager__c','BuchangApprovalManagerSales__c','SalesManager__c']; |
| | | var redirectMode = 'Save'; |
| | | |
| | | //Redirect Required Parameter |
| | |
| | | alertErrorMessage(errorMessage); |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | //Query Required Parameter |
| | | var queryBack = function queryBack(data) { |
| | |
| | | } |
| | | } |
| | | |
| | | var GetEleByClass = function(class_name){ |
| | | let eles = document.getElementsByClassName(class_name); |
| | | if(eles.length > 0) return eles[0]; |
| | | return null; |
| | | } |
| | | |
| | | function GetEleApiName(ele){ |
| | | for(let ci in ele.classList){ |
| | | let c = ele.classList[ci]; |
| | | if(c.indexOf('PIBackApi_')>-1){ |
| | | return c.replace('PIBackApi_',''); |
| | | } |
| | | } |
| | | return ''; |
| | | } |
| | | |
| | | function IsFormTag(tag_name){ |
| | | if (!tag_name) { |
| | | return false; |
| | | } |
| | | return ['input','select','textarea'].indexOf(tag_name.toLowerCase())>-1; |
| | | } |
| | | |
| | | function IsFormElement(e){ |
| | | return IsFormTag(e.tagName); |
| | | } |
| | | |
| | | //Get Sensitive Information |
| | | function getPIPayload(rentalApplyJson) { |
| | | let rentalApplyPayloadList = []; |
| | |
| | | return true; |
| | | } |
| | | |
| | | function getCKEinstance(api_name){ |
| | | let t = jQuery("label[for$='textAreaDelegate_"+api_name+"']").closest("tr").find("textarea")[0]; |
| | | if(t && t.id){ |
| | | return CKEDITOR.instances[t.id] |
| | | |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | //Get Page Information |
| | | function getRentalApplyInformation() { |
| | | let nodelist = document.querySelectorAll("[data-id]"); |
| | | let result = {} |
| | | //富文本 |
| | | if(document.querySelector("[aria-describedby = 'cke_38']")){ |
| | | result.HP_received_sign_rich__c = document.querySelector("[aria-describedby = 'cke_38']").contentWindow.document.getElementsByTagName('body')[0].innerHTML |
| | | } |
| | | if(document.querySelector("[aria-describedby = 'cke_71']")){ |
| | | result. Extension_List_RentalApply__c = document.querySelector("[aria-describedby = 'cke_71']").contentWindow.document.getElementsByTagName('body')[0].innerHTML |
| | | } |
| | | // if(document.querySelector("[aria-describedby = 'cke_38']")){ |
| | | // result.HP_received_sign_rich__c = document.querySelector("[aria-describedby = 'cke_38']").contentWindow.document.getElementsByTagName('body')[0].innerHTML |
| | | // } |
| | | // result.HP_received_sign_rich__c = CKEDITOR.instances["page:form:block:j_id34:12:j_id35:j_id36:1:j_id37:textAreaDelegate_HP_received_sign_rich__c"].getData(); |
| | | // if(document.querySelector("[aria-describedby = 'cke_71']")){ |
| | | // result. Extension_List_RentalApply__c = document.querySelector("[aria-describedby = 'cke_71']").contentWindow.document.getElementsByTagName('body')[0].innerHTML |
| | | // } |
| | | for (let index = 0; index < nodelist.length; index++) { |
| | | if (VLookUpFields.has(nodelist[index].getAttribute("data-id"))) { |
| | | console.log(nodelist[index].id.indexOf('lkwgt')); |
| | |
| | | } |
| | | } |
| | | } |
| | | //page:form:j_id30:j_id34:2:j_id35:j_id36:2:j_id37 |
| | | //page:form:j_id27:j_id31:2:j_id32:j_id33:2:j_id34 |
| | | result.demo_purpose2__c = document.querySelector("[id='page:form:block:j_id34:2:j_id35:j_id36:2:j_id37']").value; |
| | | result.ToAgency__c = document.querySelector("[id='page:form:block:j_id34:0:j_id35:j_id36:14:j_id37']").value; |
| | | result.Loaner_cancel_reason__c = document.querySelector("[id='page:form:block:j_id34:12:j_id35:j_id36:1:j_id37']").value; |
| | | console.log(JSON.stringify(result)); |
| | | //格式化时间 |
| | | if(result.HP_received_sign_day__c){ |
| | | result.HP_received_sign_day__c = result.HP_received_sign_day__c.replace(/\//g, '-')+':00'; |
| | | if(document.querySelector("[id='page:form:block:j_id34:2:j_id35:j_id36:2:j_id37']")!=null){ |
| | | result.demo_purpose2__c = document.querySelector("[id='page:form:block:j_id34:2:j_id35:j_id36:2:j_id37']").value; |
| | | } |
| | | if(document.querySelector("[id='page:form:block:j_id34:0:j_id35:j_id36:18:j_id37']")!=null){ |
| | | result.ToAgency__c = document.querySelector("[id='page:form:block:j_id34:0:j_id35:j_id36:18:j_id37']").value; |
| | | } |
| | | //document.querySelector("[id='page:form:block:j_id34:0:j_id35:j_id36:18:j_id37']").disabled =true; // Commented By Li Jun 20220304 |
| | | if(document.querySelector("[id='page:form:block:j_id34:13:j_id35:j_id36:1:j_id37']")!=null){ |
| | | result.Loaner_cancel_reason__c = document.querySelector("[id='page:form:block:j_id34:13:j_id35:j_id36:1:j_id37']").value; |
| | | }else{ |
| | | if(document.querySelector("[id='page:form:block:j_id34:11:j_id35:j_id36:1:j_id37']")!=null){ |
| | | result.Loaner_cancel_reason__c = document.querySelector("[id='page:form:block:j_id34:11:j_id35:j_id36:1:j_id37']").value; |
| | | } |
| | | } |
| | | // //格式化时间 |
| | | // if(result.HP_received_sign_day__c){ |
| | | // result.HP_received_sign_day__c = result.HP_received_sign_day__c.replace(/\//g, '-')+':00'; |
| | | // } |
| | | let e = getCKEinstance('HP_received_sign_rich__c'); |
| | | if(e){ |
| | | result.HP_received_sign_rich__c = e.getData(); |
| | | } |
| | | e = getCKEinstance('Extension_List_RentalApply__c'); |
| | | if(e){ |
| | | result.Extension_List_RentalApply__c = e.getData(); |
| | | } |
| | | if(document.getElementById('page:form:block:j_id34:0:j_id35:j_id36:13:j_id37' + '_lkid')!=null){ |
| | | // result.ToAgency__c = document.getElementById('page:form:block:j_id34:0:j_id35:j_id36:18:j_id37').value; |
| | | result.Office_Assistant1__c = document.getElementById('page:form:block:j_id34:0:j_id35:j_id36:13:j_id37' + '_lkid').value; |
| | | } |
| | | console.log(JSON.stringify(result)); |
| | | return result; |
| | | } |
| | | |
| | |
| | | return template.content.firstChild; |
| | | } |
| | | function queryContactName() { |
| | | function queryContactName() { |
| | | let sfId = document.getElementById(document.querySelector("[data-id='Account__c']").id + '_lkid').value; |
| | | let sfId = document.getElementById(document.querySelector("[data-id='Loaner_medical_Staff__c']").id + '_lkid').value; |
| | | let dataId = ''; |
| | | if ('{!contactsInfo}' != '') { |
| | | let contactsInfo = JSON.parse('{!contactsInfo}'); |
| | |
| | | document.querySelector("[data-id='Loaner_medical_Staff__c']").value = result.object.lastName; |
| | | }; |
| | | AWSService.query(staticResourcesContact.queryUrl, dataId, queryBackContactName, staticResourcesContact.token); |
| | | } |
| | | } |
| | | //自定义lookup查询 |
| | | function searchContact(contactNodeId){ |
| | |
| | | </apex:pageBlockSection> |
| | | </apex:repeat> |
| | | <script> |
| | | var init_nodes = document.getElementsByClassName("PIBackApi"); |
| | | var api_id_map={}; |
| | | for(let ei in init_nodes){ |
| | | let e = init_nodes[ei]; |
| | | if(IsFormElement(e)){ |
| | | if(e.getAttribute("multiple") != 'multiple' || e.style.display == 'none' && e.id.indexOf('selected') < 0){ |
| | | api_id_map[GetEleApiName(e)] = e.id; |
| | | } |
| | | |
| | | } |
| | | } |
| | | console.log(api_id_map); |
| | | //Append Page |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | var layoutSections = JSON.parse('{!layoutSectionsStr}'); |
| | |
| | | let layoutField = layoutSection[n]; |
| | | if (layoutField.fieldAPI != '' && document.querySelector("[data-id='"+layoutField.fieldAPI+"']") != null) { |
| | | let e = document.querySelector("[data-id='"+layoutField.fieldAPI+"']"); |
| | | console.log('layoutField.fieldAPI= ' + layoutField.fieldAPI); |
| | | e.disabled = !(layoutField.editableField); |
| | | if (!(layoutField.editableField)) { |
| | | if (e.getAttribute("multiple") && e.getAttribute("multiple") == 'multiple') { |
| | |
| | | if (e.tagName == 'DIV') { |
| | | e.classList.add("disabledbutton"); |
| | | } |
| | | if(document.querySelector('[data-id=Old_Rental_Apply__c] .lookupIcon')){ |
| | | document.querySelector('[data-id=Old_Rental_Apply__c] .lookupIcon').classList.add("disabledbutton"); |
| | | } |
| | | |
| | | |
| | | } |
| | | } |
| | | } |
| | | } |
| | | var onlyReadFields = ['ExtensionStatus__c','ExtensionApplicationTime_Initial__c','ExtensionApprovalTime_Initial__c','ExtensionApplicationTime_Final__c','ExtensionApprovalTime_Final__c','ExtensionSuccessTimes__c','ZongjianApprovalManager__c','BuchangApprovalManager__c','JingliApprovalManager__c','BuchangApprovalManagerSales__c','SalesManager__c']; |
| | | console.log(onlyReadFields); |
| | | for(let i=0;i<onlyReadFields.length;i++){ |
| | | document.querySelector('[data-id='+onlyReadFields[i]+']').parentNode.remove(); |
| | | } |
| | | |
| | | //2. Query AWS Data by dataId |
| | | console.log('Mode for rentalApply Page:' + {!isNewMode}); |
| | | if (!{!isNewMode}) { |
| | |
| | | } |
| | | }) |
| | | }); |
| | | |
| | | |
| | | |
| | | |
| | | // jQuery(".lookupInput").each(function(i,e){ |
| | | // let je =jQuery(e).find('input'); |
| | |
| | | @description : |
| | | @author : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | @group : |
| | | @last modified on : 03-25-2022 |
| | | @last modified on : 03-30-2022 |
| | | @last modified by : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | --> |
| | | <apex:page standardController="Repair__c" extensions="NewRepairController" id="page"> |
| | |
| | | alertErrorMessage(errorMessage); |
| | | } |
| | | } |
| | | var GetEleApiName = function(ele){ |
| | | for(let ci in ele.classList){ |
| | | let c = ele.classList[ci]; |
| | | if(c.indexOf('PIBackApi'+'_')>-1){ |
| | | return c.replace('PIBackApi'+'_',''); |
| | | } |
| | | } |
| | | return ''; |
| | | function GetEleApiName(ele){ |
| | | for(let ci in ele.classList){ |
| | | let c = ele.classList[ci]; |
| | | if(c.indexOf('PIBackApi_')>-1){ |
| | | return c.replace('PIBackApi_',''); |
| | | } |
| | | } |
| | | return ''; |
| | | } |
| | | |
| | | //Query Required Parameter |
| | | // var queryBack = function queryBack(data) { |
| | |
| | | <script> |
| | | AWSService.sfSessionId = '{!GETSESSIONID()}'; |
| | | var staticResources = JSON.parse('{!staticResource}'); |
| | | var staticResourceFile = JSON.parse('{!staticResourceFile}'); |
| | | function Fun(pdf){ |
| | | var iframe = document.createElement('iframe'); |
| | | iframe.setAttribute('style', 'position:absolute;right:0; top:0; bottom:0; height:100%; width:100%'); |
| | | document.body.appendChild(iframe); |
| | | iframe.src = pdf.output('datauristring'); |
| | | for(let e of document.body.childNodes){ |
| | | if( e != iframe && e.style){ |
| | | e.style.display = 'none'; |
| | | } |
| | | } |
| | | |
| | | var form = jQuery("<form method='post'></form>"); |
| | | jQuery(document.body).append(form); |
| | | let href = window.location.href |
| | | let arr = href.split('/') |
| | | form.attr({"action":staticResourceFile.viewUnifiedContactUrl+"?from="+encodeURIComponent(href)+"&fileName="+encodeURIComponent(arr[arr.length-1].split('?')[0])}); |
| | | // form.attr({"action":"http://127.0.0.1:8080/a/d?from="+encodeURIComponent(window.location.href)}); |
| | | let input = jQuery("<input type='hidden'/>"); |
| | | input.attr({"name":"base64Str"}); |
| | | input.val(pdf.output('datauristring').substr(28)); |
| | | form.append(input); |
| | | form.submit(); |
| | | |
| | | // jQuery("body > *").each(function(){ |
| | | // jQuery(this).css('display','none'); |
| | | // }) |
| | | // jQuery("body").append('<embed style="position:absolute; left: 0; top: 0;" width="100%" height="100%" src="'+pdf.output('datauristring')+'" type="application/pdf"/>') |
| | | |
| | | } |
| | | |
| | | let id = "pdf-wrapper"; |
| | |
| | | }) |
| | | } |
| | | |
| | | blockme(); |
| | | //blockme(); |
| | | document.body.onload = function(){ |
| | | |
| | | AWSService.query(staticResources.queryUrl, '{!qr.AWS_Data_Id__c}', function(data){ |
| | | unblockUI(); |
| | | //unblockUI(); |
| | | document.getElementById("Responsible_Person_HP__c").innerHTML = data.object.responsiblePersonHP; |
| | | document.getElementById("Caller_phone__c").innerHTML = data.object.callerPhone; |
| | | |
| | | setTimeout(() => { |
| | | jsPdfDownload(); |
| | | }, 1500); |
| | | jsPdfDownload(); |
| | | }, staticResources.token); |
| | | |
| | | } |
| | |
| | | } |
| | | for(var i=0;i<result.object.length;i++){ |
| | | if(result.object[i].sfRecordId != null){ |
| | | contact[result.object[i].sfRecordId] = result.object[i].lastName |
| | | var o = []; |
| | | o.lastName = result.object[i].lastName; |
| | | o.phone = result.object[i].phone; |
| | | contact[result.object[i].sfRecordId] = o; |
| | | } |
| | | } |
| | | resolve('success'); |
| | |
| | | var p = new Promise(function(resolve, reject){ |
| | | for(let key in contact){ |
| | | var k = ''+key; |
| | | document.getElementById(k).innerText = contact[k]; |
| | | document.getElementById(k).innerText = contact[k].lastName; |
| | | if(document.getElementById(k+'_Phone')){ |
| | | document.getElementById(k+'_Phone').innerText = contact[k].phone; |
| | | } |
| | | } |
| | | }); |
| | | return p; |
| | |
| | | <apex:page controller="SearchContactController" id="page"> |
| | | <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}" /> |
| | | <apex:includeScript value="{! URLFOR($Resource.AWSService, 'AWSService.js') }" /> |
| | | <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}" /> |
| | | <apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}" /> |
| | | <apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}" /> |
| | | |
| | |
| | | console.log('JSON Result from aws:'+JSON.stringify(result)); |
| | | if(result.object&&result.object.length>0){ |
| | | initContactTable(result); |
| | | } |
| | | }else{ |
| | | unblockUI(); |
| | | alert('没有查到该联系人') |
| | | } |
| | | }) |
| | | } |
| | | |
| | |
| | | let tableBody = document.createElement('TBODY'); |
| | | table.appendChild(tableBody); |
| | | let headerTR = document.createElement('TR'); |
| | | let colsHeader = ['姓名','客户名称','邮箱', '电话']; |
| | | let colsHeader = ['姓名','客户名称','邮箱', '电话','手机号']; |
| | | tableBody.appendChild(headerTR); |
| | | for (let i = 0; i < colsHeader.length; i++) { |
| | | let td = document.createElement('TH'); |
| | |
| | | unblockUI(); |
| | | } |
| | | function initContactTable(data) { |
| | | let cols = ['Name','AccountName','Email', 'Phone']; |
| | | let cols = ['Name','AccountName','Email', 'Phone','MobilePhone']; |
| | | let contactInfoList = []; |
| | | let awsDataIds = []; |
| | | for(var i=0;i<data.object.length;i++){ |
| | |
| | | let contactInfo = new Object(); |
| | | contactInfo.Name = data.object[i].lastName; |
| | | contactInfo.Email = data.object[i].email; |
| | | contactInfo.MobilePhone = data.object[i].mobilePhone; |
| | | contactInfo.Phone = data.object[i].phone; |
| | | contactInfo.AWSDataId = data.object[i].dataId; |
| | | awsDataIds.push(contactInfo.AWSDataId); |
| | |
| | | <apex:page controller="SearchContactController" showHeader="false" id="page"> |
| | | <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}" /> |
| | | <apex:includeScript value="{! URLFOR($Resource.AWSService, 'AWSService.js') }" /> |
| | | <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}" /> |
| | | <apex:includeScript value="{!URLFOR($Resource.PleaseWaitDialog)}" /> |
| | | <apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}" /> |
| | | |
| | |
| | | let tableBody = document.createElement('TBODY'); |
| | | table.appendChild(tableBody); |
| | | let headerTR = document.createElement('TR'); |
| | | let colsHeader = ['姓名','客户名称','邮箱', '电话']; |
| | | let colsHeader = ['姓名','客户名称','邮箱', '电话','手机号']; |
| | | tableBody.appendChild(headerTR); |
| | | for (let i = 0; i < colsHeader.length; i++) { |
| | | let td = document.createElement('TH'); |
| | |
| | | unblockUI(); |
| | | } |
| | | function initContactTable(data) { |
| | | let cols = ['Name','AccountName', 'Email', 'Phone']; |
| | | let cols = ['Name','AccountName', 'Email', 'Phone','MobilePhone']; |
| | | let contactInfoList = []; |
| | | let awsDataIds = []; |
| | | if(data.object){ |
| | |
| | | let contactInfo = new Object(); |
| | | contactInfo.Name = data.object[i].lastName; |
| | | contactInfo.Email = data.object[i].email; |
| | | contactInfo.MobilePhone = data.object[i].mobilePhone; |
| | | contactInfo.Phone = data.object[i].phone; |
| | | contactInfo.AWSDataId = data.object[i].dataId; |
| | | contactInfo.pi = true; |
| | |
| | | contactInfo.Name = noPIInfo[f].Name!=null?noPIInfo[f].Name:''; |
| | | contactInfo.Email = noPIInfo[f].Email!=null?noPIInfo[f].Email:''; |
| | | contactInfo.Phone = noPIInfo[f].Phone!=null?noPIInfo[f].Phone:''; |
| | | contactInfo.MobilePhone = noPIInfo[f].MobilePhone!=null?noPIInfo[f].MobilePhone:''; |
| | | contactInfo.AWSDataId = ''; |
| | | contactInfo.sfRecordId = noPIInfo[f].Id!=null?noPIInfo[f].Id:''; |
| | | contactInfo.AccountName = noPIInfo[f]['Account']['Name']; |
| | |
| | | <!-- 20220217 Li Jun for PIPL End --> |
| | | <script type="text/javascript"> |
| | | AWSService.sfSessionId = '{!GETSESSIONID()}'; |
| | | //像医生区分(职务)下拉列表加入**** |
| | | // var o = new Option(); |
| | | // o.text = '****'; |
| | | // document.getElementById('Page:mainForm:idSearchVisitor:updateContactDoctorDivision').add(o); |
| | | function addContact(){ |
| | | window.opener.showModal(); |
| | | |
| | |
| | | let y=window.event.y; |
| | | createDiv.style.left=x; |
| | | createDiv.style.top=y; |
| | | createDiv.style.marginLeft='20px'; |
| | | createDiv.style.marginTop='-40px'; |
| | | createDiv.style.height='80px'; |
| | | createDiv.style.width='120px'; |
| | | createDiv.style.background = "#dddddd"; |
| | | createDiv.style.position = "absolute"; |
| | | parentNode.appendChild(createDiv); |
| | |
| | | return JSON.stringify([{ |
| | | lastName : document.getElementById("Page:mainForm:idSearchVisitor:updateContactLastName").value, |
| | | phone : document.getElementById("Page:mainForm:idSearchVisitor:updateContactPhone").value, |
| | | type : document.getElementById("Page:mainForm:idSearchVisitor:updateContactType").value, |
| | | doctorDivision1 : document.getElementById("Page:mainForm:idSearchVisitor:updateContactDoctorDivision").value, |
| | | dataId:selectedAwsDataId |
| | | }]); |
| | | } |
| | |
| | | return; |
| | | } |
| | | blockme(); |
| | | let es = document.getElementsByTagName('select') |
| | | for(let ei in es){ |
| | | let e = es[ei]; |
| | | for(let opi in e.options){ |
| | | let op = e.options[opi]; |
| | | if(!op)continue; |
| | | if(op.value == "*****" && op.selected){ |
| | | unblockUI(); |
| | | alert('下拉框不能主动选择密文选项') |
| | | return; |
| | | } |
| | | } |
| | | } |
| | | ProcessPIForAWS({},GetEditObj()); |
| | | } |
| | | function Trans(){ |
| | |
| | | return false; |
| | | } |
| | | } |
| | | return true; |
| | | // 先款后修-提交报价时如果是先款对象进行提示 thh 20220407 start |
| | | var FirstParagraphEnd = j$(escapeVfId('allPage:allForm:allBlock:contract:FirstParagraphEnd')).val(); |
| | | if(FirstParagraphEnd == 'on'){ |
| | | if (confirm('本次签约经销商是先款对象,请确认是否提交报价?')) { |
| | | return true; |
| | | }else{ |
| | | return false; |
| | | } |
| | | } |
| | | // 先款后修-提交报价时如果是先款对象进行提示 thh 20220407 end |
| | | return true; |
| | | } |
| | | //add by gwy 2021-01-27 end 提交时的提示框 |
| | | |
| | |
| | | <!-- |
| | | @description : |
| | | @author : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | @group : |
| | | @last modified on : 03-30-2022 |
| | | @last modified by : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | --> |
| | | <apex:page controller="StraightBackAddressController" action="{!init}" showHeader="false" sidebar="true" id="allPage" title="直返收货地址"> |
| | | <apex:stylesheet value="{!URLFOR($Resource.blockUIcss)}"/> |
| | | <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/> |
| | |
| | | var tableDataStr = ''; |
| | | var staticResource = JSON.parse('{!staticResource}'); |
| | | var staticResourceContact = JSON.parse('{!staticResourceContact}'); |
| | | var staticResourceRepair = JSON.parse('{!staticResourceRepair}'); |
| | | |
| | | var PIData = {}; |
| | | var contactDataIds = []; |
| | | var ObjIdDecrypt = ''; |
| | |
| | | var isAddCon = false; |
| | | var contactInfoStr = ''; |
| | | |
| | | var addressAwsData = {}; |
| | | |
| | | var isBlocking = false; |
| | | function b(){ |
| | | if (!isBlocking) { |
| | | blockme(); |
| | | isBlocking = true; |
| | | } |
| | | } |
| | | |
| | | function ub(){ |
| | | if (isBlocking) { |
| | | unblockUI(); |
| | | isBlocking = false; |
| | | } |
| | | } |
| | | |
| | | //替换vlookup |
| | | var newSearchContactWindow = null; |
| | | window.onload = function () { |
| | |
| | | document.getElementById('allPage:allForm:oppBlock2:UpdAddressId:ZipCode__c').value='' |
| | | document.getElementById('allPage:allForm:oppBlock2:UpdAddressId:Detailed_Address__c').value='' |
| | | } |
| | | |
| | | //{!IF(isSearchBtn,'searchBtnJs()',false)}; |
| | | let b1= false; |
| | | let b2= false; |
| | | |
| | | let Foo = function(){ |
| | | if (b1 && b2 && !b) { |
| | | window.location.reload(); |
| | | } |
| | | } |
| | | |
| | | AWSService.post(staticResource.transactionUrl, JSON.stringify({ |
| | | "txId":add_aws_result.txId, |
| | | "txId":add_aws_result.txId, |
| | | "isSuccess":b ? 0 : 1 |
| | | }), function(result){ |
| | | b1 = true; |
| | | Foo(); |
| | | }, staticResource.token); |
| | | |
| | | if(isAddCon){ |
| | | AWSService.post(staticResourceContact.transactionUrl, JSON.stringify({ |
| | | "txId":con_aws_result.txId, |
| | | "isSuccess":b ? 0 : 1 |
| | | }), function(result){ |
| | | if(isAddCon){ |
| | | AWSService.post(staticResourceContact.transactionUrl, JSON.stringify({ |
| | | "txId":con_aws_result.txId, |
| | | "isSuccess":b ? 0 : 1, |
| | | "sfRecordId":document.getElementById('allPage:allForm:sfRecordId').value |
| | | }), function(result){ |
| | | if(!b) |
| | | window.location.reload(); |
| | | }, staticResourceContact.token); |
| | | }else{ |
| | | if(!b) |
| | | window.location.reload(); |
| | | } |
| | | }, staticResource.token); |
| | | b2 = true; |
| | | Foo(); |
| | | }, staticResourceContact.token); |
| | | }else{ |
| | | b2 = true; |
| | | Foo(); |
| | | } |
| | | |
| | | |
| | | } |
| | | |
| | |
| | | } |
| | | //保存方法 |
| | | function savaJs(){ |
| | | //blockme(); |
| | | //b(); |
| | | if(document.getElementById('allPage:allForm:oppBlock2:UpdAddressId:Create_Contacts__c').value != ''){ |
| | | isAddCon = true; |
| | | } |
| | |
| | | document.getElementById("errorMsg").innerHTML = '<strong>【联系人】和【联系人(新建)】不能同时有值!</strong> '; |
| | | return; |
| | | } |
| | | blockme(); |
| | | b(); |
| | | console.log('{!insUpdData}') |
| | | if(document.getElementById("allPage:allForm:oppBlock2:UpdAddressId:Create_Contacts__c").value //【联系人(新建)】不为空 |
| | | &&document.getElementById("allPage:allForm:oppBlock2:UpdAddressId:CustomerRecordType").value!='{!accOfficeTypeId}'////记录类型id 办事处 |
| | | &&document.getElementById("allPage:allForm:oppBlock2:UpdAddressId:CustomerRecordType").value!='{!accAgencyTypeId}'//记录类型id 販売店 |
| | | &&document.getElementById("allPage:allForm:oppBlock2:UpdAddressId:CustomerRecordType").value!='{!accAgencyContactTypeId}'){//记录类型id 经销商联系人 |
| | | if(document.getElementById("allPage:allForm:oppBlock2:UpdAddressId:Create_Contacts__c").value){ |
| | | //new contact |
| | | ProcessPI({},GetEditObj('contact'),'contact',function(){ |
| | | //new address |
| | |
| | | } |
| | | } |
| | | function searchBtnJs(){ |
| | | blockme(); |
| | | b(); |
| | | var addressDataIds = ''; |
| | | //查询地址 |
| | | if(document.getElementById('allPage:allForm:searchBlock:txtAddressId').value != ''){ |
| | |
| | | searchBtn('\''+addressName+'\''); |
| | | return |
| | | }else{ |
| | | |
| | | for(var i=0;i<result.object.length;i++){ |
| | | addressDataIds += ',\''+ result.object[i].dataId + '\''; |
| | | addressAwsData[result.object[i].dataId] = result.object[i]; |
| | | } |
| | | addressDataIds = addressDataIds.substring(1); |
| | | resolve('success'); |
| | | } |
| | | }; |
| | | var addressName = document.getElementById('allPage:allForm:searchBlock:txtAddressId').value; |
| | | AWSService.queryAddress('https://sfpi-mebg-test.olympuschina.com/api/address/search',addressName.trim(),queryBack,staticResource.token); |
| | | AWSService.post(staticResource.searchUrl,{ |
| | | detailedAddress:addressName.trim() |
| | | },queryBack,staticResource.token); |
| | | }).then(function(data){ |
| | | console.log('data = '+data) |
| | | console.log('addressDataIds = '+addressDataIds) |
| | |
| | | searchBtn(addressDataIds); |
| | | } |
| | | } |
| | | //采用按钮 |
| | | function onAdoptJs(objId){ |
| | | if(objId != null){ |
| | | //判断当前修理单是否已经申请修理 |
| | | var uploadTime = '{!FSEApplyForRepairTime}'; |
| | | if(uploadTime != 'null'){ |
| | | var prompt = '由于当前修理单已申请修理,请问是否采用并上传数据到SAP?'; |
| | | if(confirm(prompt)){ |
| | | blockme(); |
| | | adoptSave(objId+"",true); |
| | | } |
| | | }else{ |
| | | adoptSave(objId+"",false); |
| | | //加密客户名字段 |
| | | // function encryptCustomer(e){ |
| | | // let obj = JSON.parse(payloadForNewPI); |
| | | // let payloadForNewPIJson = JSON.stringify(obj); |
| | | // let payloadForNewPI = jQuery(e.target).closest("tr").find("a.cusmer__c"); |
| | | // AWSService.update(staticResources.updateUrl, '', payloadForNewPI, updateMethod, staticResources.token, staticResources.transactionUrl, false, insertOrUpdateBack, redirectCallBack); |
| | | // }, |
| | | |
| | | sforce.connection.sessionId = '{!GETSESSIONID()}'; |
| | | function UpdateSobject(staticResource,sobj,transId,callback){ |
| | | |
| | | let result = sforce.connection.update([sobj]); |
| | | let tobj = { |
| | | txId: transId |
| | | }; |
| | | let b = result[0].getBoolean('success'); |
| | | if(b) { |
| | | console.log('call sf Log Id: ' + result[0].id); |
| | | tobj.sfRecordId = result[0].id; |
| | | tobj.isSuccess = 1; |
| | | |
| | | //return result[0].id; |
| | | }else { |
| | | console.log('call sf to insert log'); |
| | | tobj.isSuccess = 0; |
| | | //return ''; |
| | | } |
| | | |
| | | AWSService.post(staticResource.transactionUrl,tobj,function(data){ |
| | | if (callback) { |
| | | data.isSuccess = b; |
| | | callback(data) |
| | | } |
| | | } |
| | | },staticResource.token); |
| | | } |
| | | |
| | | |
| | | |
| | | function adoptSaveJs(address,isUpload){ |
| | | //由于要把采用时间记录到地址表中,所以新建一个地址对象 |
| | | // Address__c DatetimeUpdate = new Address__c(); |
| | | // DatetimeUpdate = tableData[i].address; |
| | | //详细地址 |
| | | let address_str = address.Detailed_Address__c.trim(); |
| | | if (addressAwsData.hasOwnProperty(address.AWS_Data_Id__c)) { |
| | | address_str = addressAwsData[address.AWS_Data_Id__c].detailedAddress; |
| | | } |
| | | let cityName = '';//市 |
| | | //市不为空,因为要使用 __r.Name 如果为空,会报错 |
| | | if(address.City__c){ |
| | | cityName = address.City__r.Name.trim(); |
| | | //省 同上 |
| | | if(address.Province__c){ |
| | | let ProvinceCity = address.Province__r.Name.trim()+cityName; |
| | | //防止详细地址里面带着省份和市 |
| | | if(address_str.indexOf(ProvinceCity) < 0){ |
| | | address_str = ProvinceCity + address_str; |
| | | } |
| | | } |
| | | } |
| | | //联系人 |
| | | let contactsName = ''; |
| | | if(address.Contacts__c){ |
| | | contactsName = address.Contacts__r.Name; |
| | | } |
| | | |
| | | if (addressAwsData.hasOwnProperty(address.Contacts__r.AWS_Data_Id__c)) { |
| | | contactsName = addressAwsData[address.Contacts__r.AWS_Data_Id__c].lastName; |
| | | } |
| | | |
| | | //客户 |
| | | let ContactPerson = ''; |
| | | if(address.Customer__c){ |
| | | ContactPerson = address.Customer__r.Name; |
| | | } |
| | | try{ |
| | | //保存数据到修理表中 |
| | | let rc = new sforce.SObject('Repair__c'); |
| | | rc.Id='{!RepairId}'; |
| | | rc.address_Contacts__c=contactsName; |
| | | rc.address_ZipCode__c = address.ZipCode__c; |
| | | rc.address_City__c = cityName; |
| | | rc.address_Contacts_Name__c = ContactPerson; |
| | | let AddressTypeIndex = {!AddressTypeIndex}; |
| | | //isUpload:是否上传SAP FSEApplyForRepairTime:SAP修理申请时间 |
| | | if(isUpload && '{!pc.SAP_Transfer_time__c}'){ |
| | | rc.Address_type__c = 'X'; |
| | | rc.Address_Type_Index__c = AddressTypeIndex+1; |
| | | } |
| | | rc.address_Telephone__c=address.Telephone__c; |
| | | rc.Detailed_Address__c=address_str; |
| | | |
| | | if (addressAwsData.hasOwnProperty(address.AWS_Data_Id__c)) { |
| | | rc.address_Telephone__c=addressAwsData[address.AWS_Data_Id__c].telephone; |
| | | rc.address_ZipCode__c=addressAwsData[address.AWS_Data_Id__c].zipCode; |
| | | } |
| | | |
| | | let UpdateRepair = function(callback){ |
| | | AWSService.post(staticResourceRepair.updateUrl,[{ |
| | | dataId:'{!pc.AWS_Data_Id__c}', |
| | | addressContactsName:rc.address_Contacts_Name__c, |
| | | addressContacts:rc.address_Contacts__c, |
| | | addressTelephone:rc.address_Telephone__c, |
| | | addressZipCode:rc.address_ZipCode__c, |
| | | detailedAddress:rc.Detailed_Address__c |
| | | }],function(data){ |
| | | if(data && data.object){ |
| | | console.log(data); |
| | | rc.address_Contacts_Name__c = data.object[0].addressContactsName; |
| | | rc.Address_Contacts_Name_Encrypt__c = data.object[0].addressContactsNameEncrypt; |
| | | rc.address_Contacts__c = data.object[0].addressContacts; |
| | | rc.Address_Contacts_Encrypt__c = data.object[0].addressContactsEncrypt; |
| | | rc.address_Telephone__c = data.object[0].addressTelephone; |
| | | rc.Address_Telephone_Encrypt__c = data.object[0].addressTelephoneEncrypt; |
| | | rc.address_ZipCode__c = data.object[0].addressZipCode; |
| | | rc.Address_ZipCode_Encrypt__c = data.object[0].addressZipCodeEncrypt; |
| | | rc.Detailed_Address__c = data.object[0].detailedAddress; |
| | | rc.Detailed_Address_Encrypt__c = data.object[0].detailedAddressEncrypt; |
| | | |
| | | UpdateSobject(staticResourceRepair,rc,data.txId,callback); |
| | | }else{ |
| | | alert('AWS更新修理失败'); |
| | | ub(); |
| | | } |
| | | },staticResourceRepair.token) |
| | | } |
| | | |
| | | //保存数据到保有设备表中 |
| | | let UpdateAsset = function(){ |
| | | let ast = new sforce.SObject('Asset'); |
| | | ast.Id = '{!pc.Delivered_Product__c}', |
| | | ast.address_Contacts__c= contactsName, |
| | | ast.address_ZipCode__c = address.ZipCode__c, |
| | | ast.address_City__c = cityName, |
| | | ast.address_Telephone__c = address.Telephone__c, |
| | | ast.address_Contacts_Name__c = ContactPerson, |
| | | ast.Detailed_Address__c= address_str |
| | | if (addressAwsData.hasOwnProperty(address.AWS_Data_Id__c)) { |
| | | ast.address_ZipCode__c=addressAwsData[address.AWS_Data_Id__c].zipCode; |
| | | ast.address_Telephone__c=addressAwsData[address.AWS_Data_Id__c].telephone; |
| | | } |
| | | let result = sforce.connection.update([ast]); |
| | | let b = result[0].getBoolean('success'); |
| | | return b; |
| | | } |
| | | |
| | | |
| | | let UpdateAddress = function(){ |
| | | let add = new sforce.SObject('Address__c'); |
| | | add.Id = address.Id; |
| | | //最后把当前时间保存到地址表中,作为采用时间 |
| | | add.Using_Datetime__c = new Date(); |
| | | let result = sforce.connection.update([add]); |
| | | let b = result[0].getBoolean('success'); |
| | | return b; |
| | | } |
| | | |
| | | b(); |
| | | UpdateRepair(function(data){ |
| | | if (data.isSuccess) { |
| | | let b = UpdateAsset(); |
| | | if (b) { |
| | | b = UpdateAddress(); |
| | | if (b) { |
| | | window.location.href = '/{!RepairId}'; |
| | | }else{ |
| | | ub(); |
| | | alert('采用失败'); |
| | | } |
| | | }else{ |
| | | ub(); |
| | | alert('采用失败'); |
| | | } |
| | | }else{ |
| | | |
| | | ub(); |
| | | alert('SF更新修理失败'); |
| | | } |
| | | }) |
| | | |
| | | //页面重定向 |
| | | //return redirectPag(); |
| | | }catch( e){ |
| | | //失败提示 |
| | | //ApexPages.addMessages(e); |
| | | } |
| | | } |
| | | //采用按钮 |
| | | function onAdoptJs(e, address){ |
| | | |
| | | //判断当前修理单是否已经申请修理 |
| | | var uploadTime = '{!FSEApplyForRepairTime}'; |
| | | if(uploadTime != 'null' && uploadTime){ |
| | | var prompt = '由于当前修理单已申请修理,请问是否采用并上传数据到SAP?'; |
| | | if(confirm(prompt)){ |
| | | adoptSaveJs(address,true); |
| | | } |
| | | }else{ |
| | | adoptSaveJs(address,false); |
| | | } |
| | | |
| | | } |
| | | /* function onAdoptJs(){ |
| | | if(checkedTrue != null){ |
| | | blockme(); |
| | | b(); |
| | | var lawtable = document.getElementById("tableHeader_L");//获取id为tableHeader_L的table |
| | | var rows = lawtable.rows;//获取所有行 |
| | | var InputObj = rows[checkedTrue].cells[0].getElementsByTagName("input")[0]; |
| | |
| | | } |
| | | //查询敏感字段 |
| | | function queryPI(){ |
| | | //blockme(); |
| | | //b(); |
| | | tableDataStr = JSON.parse(document.getElementById('allPage:allForm:tableValueFrontEnd').value); |
| | | PIData = {}; |
| | | contactDataIds = []; |
| | |
| | | q1().then(function(data){ |
| | | return q2(data); |
| | | }) |
| | | //unblockUI(); |
| | | //ub(); |
| | | } |
| | | |
| | | |
| | |
| | | '\n邮编: '+PIData[awsDataId].zipCode+ |
| | | '\n详细地址: '+PIData[awsDataId].detailedAddress |
| | | }else{ |
| | | piInformation = |
| | | '电话: '+PIData[awsDataId].telephone+ |
| | | piInformation = '联系人: null'+ |
| | | '\n电话: '+PIData[awsDataId].telephone+ |
| | | '\n邮编: '+PIData[awsDataId].zipCode+ |
| | | '\n详细地址: '+PIData[awsDataId].detailedAddress |
| | | } |
| | |
| | | createDiv.style.background="#dddddd"; |
| | | createDiv.style.position = "absolute"; |
| | | parentNode.appendChild(createDiv); |
| | | parentNode.style.position = "relative"; |
| | | parentNode.style.position = "relative"; |
| | | } |
| | | |
| | | function hidePIDiv(awsDataId){ |
| | |
| | | //自定义lookup查询 |
| | | function searchContact(contactNodeId,field){ |
| | | closeField = field; |
| | | let searchContactKeyWord = document.getElementById(field).value |
| | | let accountValue = ""; |
| | | if (document.getElementById('allPage:allForm:oppBlock2:UpdAddressId:Customer__r_Name')!=null) { |
| | | let accountNodeId = document.getElementById('allPage:allForm:oppBlock2:UpdAddressId:Customer__r_Name').id + '_lkid'; |
| | |
| | | console.log(accountValue); |
| | | if(accountValue !='000000000000000'){ |
| | | let baseUrl = "/apex/SearchContactPage"; |
| | | let suffixUrl = "?contactId="+contactNodeId+"&accountId="+accountValue+"&searchContactKeyWord=" + searchContactKeyWord; |
| | | let suffixUrl = "?contactId="+contactNodeId+"&accountId="+accountValue; |
| | | let newSearchContactParam = 'height=600,width=800,left=100,top=100,dialogHide=true,resizable=no,scrollbars=yes,toolbar=no,status=no'; |
| | | newSearchContactWindow = window.open(baseUrl+suffixUrl, 'Popup', newSearchContactParam); |
| | | if (window.focus) { |
| | |
| | | } |
| | | return false; |
| | | }else{ |
| | | alert('请先选择客户再选择联系人') |
| | | console.log('请先选择客户再选择联系人') |
| | | } |
| | | } |
| | | |
| | |
| | | document.getElementById(contactNodeId).value = contactInfo.ContactId; |
| | | document.getElementById(closeField).value = contactInfo.Name; |
| | | } |
| | | function queryRecordType(){ |
| | | if(document.getElementById('allPage:allForm:oppBlock2:UpdAddressId:Customer__r_Name').value){ |
| | | queryRecordType(); |
| | | //2022 02 28 张华建 display PI Data end |
| | | </script> |
| | | <script type="text/javascript"> |
| | | |
| | | function DecryptAddress(){ |
| | | let arr1 = [];let a1=false; |
| | | let arr2 = [];let a2=false; |
| | | j$('td.oraddress').each(function(i,e){ |
| | | let did = j$(e).attr('address-data-id'); |
| | | if (did) { |
| | | arr1.push(did); |
| | | } |
| | | |
| | | did = j$(e).attr('contact-data-id'); |
| | | if (did) { |
| | | arr2.push(did); |
| | | } |
| | | }) |
| | | |
| | | if (arr1.length) { |
| | | b(); |
| | | AWSService.post(staticResource.searchUrl,{ |
| | | dataIds:arr1 |
| | | },function(data){ |
| | | ub(); |
| | | if(data && data.object && data.object.length > 0){ |
| | | for (let di in data.object) { |
| | | if (data.object[di] && data.object[di].dataId) { |
| | | addressAwsData[data.object[di].dataId] = data.object[di]; |
| | | } |
| | | } |
| | | |
| | | } |
| | | },staticResource.token) |
| | | } |
| | | |
| | | if (arr2.length) { |
| | | b(); |
| | | AWSService.post(staticResourceContact.searchUrl,{ |
| | | dataIds:arr2 |
| | | },function(data){ |
| | | ub(); |
| | | if(data && data.object && data.object.length > 0){ |
| | | for (let di in data.object) { |
| | | if (data.object[di] && data.object[di].dataId) { |
| | | addressAwsData[data.object[di].dataId] = data.object[di]; |
| | | } |
| | | } |
| | | |
| | | } |
| | | },staticResourceContact.token) |
| | | } |
| | | } |
| | | //2022 02 28 张华建 display PI Data end |
| | | </script> |
| | | <apex:form id="allForm"> |
| | | <apex:inputHidden id="tableValueFrontEnd" value="{!tableDataStr}"/> |
| | | <apex:inputHidden value="{!contactId}" id="contactId"/> |
| | | <apex:inputHidden value="{!insUpdDataStr}" id="insUpdDataStr"/> |
| | | <apex:inputHidden value="{!sfRecordId}" id="sfRecordId"/> |
| | | <div id="tab01"> |
| | | <!-- 页面数据初始化方法 --> |
| | | <apex:actionFunction name="init" action="{!init}" rerender="oppBlock1,message,checEventFrame" onComplete="unblockUI();"></apex:actionFunction> |
| | | <apex:actionFunction name="init" action="{!init}" rerender="oppBlock1,message,checEventFrame" onComplete="ub();"></apex:actionFunction> |
| | | <!-- 检索数据查询方法 --> |
| | | <apex:actionFunction name="searchBtn" action="{!searchBtn}" rerender="oppBlock1,message,checEventFrame,tableValueFrontEnd" onComplete="unblockUI();"> |
| | | <apex:actionFunction name="searchBtn" action="{!searchBtn}" rerender="oppBlock1,message,checEventFrame,tableValueFrontEnd" onComplete="ub();DecryptAddress();"> |
| | | <apex:param name="addressDataIds" assignTo="{!addressDataIds}" value=""></apex:param> |
| | | </apex:actionFunction> |
| | | <!-- 采用方法 --> |
| | | <apex:actionFunction name="adoptSave" action="{!adoptSave}" rerender="oppBlock2,message" onComplete="unblockUI();"> |
| | | <apex:actionFunction name="adoptSave" action="{!adoptSave}" rerender="oppBlock2,message" onComplete="ub();"> |
| | | <apex:param name="adoptId" assignTo="{!adoptId}" value="" /> |
| | | <apex:param name="isUpload" assignTo="{!isUpload}" value="" /> |
| | | </apex:actionFunction> |
| | | <!-- 保存和修改方法 --> |
| | | <apex:actionFunction name="save" action="{!save}" rerender="oppBlock2,message,sfRecordId" onComplete="unblockUI();{!IF(isSearchBtn,'searchBtnJs()',false)};Trans();"></apex:actionFunction> |
| | | <!-- 查询客户记录类型方法 --> |
| | | <apex:actionFunction name="queryRecordType" action="{!queryRecordType}" rerender="oppBlock2,message" onComplete="unblockUI();"></apex:actionFunction> |
| | | <apex:actionFunction name="save" action="{!save}" rerender="oppBlock2,message" onComplete="ub();Trans()"></apex:actionFunction> |
| | | <!-- 点击修改按钮获取修改数据方法 --> |
| | | <apex:actionFunction name="onEditor" action="{!onEditor}" rerender="oppBlock2,checEventFrame,insUpdDataStr" onComplete="decrypt();unblockUI();"> |
| | | <apex:actionFunction name="onEditor" action="{!onEditor}" rerender="oppBlock2,checEventFrame,insUpdDataStr" onComplete="decrypt();ub();"> |
| | | <apex:param name="UpdId" assignTo="{!UpdId}" value="" /> |
| | | </apex:actionFunction> |
| | | <!-- 复制方法 --> |
| | | <apex:actionFunction name="onCopy" action="{!onCopy}" rerender="oppBlock2,checEventFrame," onComplete="decrypt();unblockUI();"> |
| | | <apex:actionFunction name="onCopy" action="{!onCopy}" rerender="oppBlock2,checEventFrame," onComplete="decrypt();ub();"> |
| | | <apex:param name="UpdId" assignTo="{!UpdId}" value="" /> |
| | | </apex:actionFunction> |
| | | <!-- 返回父页面 --> |
| | | <apex:actionFunction name="redirectPag" action="{!redirectPag}" rerender="true" onComplete="unblockUI();"></apex:actionFunction> |
| | | <apex:actionFunction name="redirectPag" action="{!redirectPag}" rerender="true" onComplete="ub();"></apex:actionFunction> |
| | | <apex:pageBlock id="searchBlock" tabStyle="Report"> |
| | | <table style="border-bottom-width: 0px; font-size:12px;width:100%"> |
| | | <tr> |
| | |
| | | </a> |
| | | </td> |
| | | <td style="width: 20%"> |
| | | <apex:commandButton onclick="searchBtnJs();return false;" rendered="true" value="检索" style="width:60px;" onComplete="unblockUI();"/> |
| | | <apex:commandButton onclick="searchBtnJs();return false;" rendered="true" value="检索" style="width:60px;" onComplete=""/> |
| | | |
| | | <!-- <apex:commandButton onclick="onAdoptJs();return false;" rendered="true" value="采用" style="width:60px;background:#98c1fbf7"/> |
| | | --> |
| | |
| | | <td align="center" style="vertical-align: inherit;border-width: 0px 1px 1px 0px;"> |
| | | <apex:outputText value="{!or.address.Address_Classification__c}" /> |
| | | </td> |
| | | <td align="left" style="vertical-align: inherit;border-width: 0px 1px 1px 0px;"> |
| | | <td align="left" class="Customer__c" style="vertical-align: inherit;border-width: 0px 1px 1px 0px;"> |
| | | <apex:outputfield value="{!or.address.Customer__c}" /> |
| | | </td> |
| | | <td align="left" style="vertical-align: inherit;border-width: 0px 1px 1px 0px;" aws-data-id="{!or.address.AWS_Data_Id__c}"> |
| | | <td align="left" class="oraddress" style="vertical-align: inherit;border-width: 0px 1px 1px 0px;" address-data-id="{!or.address.AWS_Data_Id__c}" contact-data-id="{!or.address.Contacts__r.AWS_Data_Id__c}"> |
| | | <!-- <apex:outputfield value="{!or.address.Contacts__c}" id="{!or.address.Contacts__c}_{!or.address.Id}"/> --> |
| | | <a href="#" id="{!or.address.Id}" onmouseover="showPIDiv('{!or.address.Id}')" onmouseout="hidePIDiv('{!or.address.Id}')" aws-data-id="{!or.address.Contacts__r.AWS_Data_Id__c}">{!or.address.Contacts__r.Name}</a> |
| | | </td> |
| | |
| | | <apex:commandButton value=" 复制 " onclick="onCopyJs('{!or.address.id}');return false;" style="background: #98c1fbf7;display:{!or.canCopy};"/> |
| | | </td> |
| | | <td align="center" style="vertical-align: inherit;width:30px;"> |
| | | <apex:commandButton value=" 采用 " onclick="onAdoptJs('{!or.address.id}');return false;" style="background: #98c1fbf7;display:{!or.canAdopt};"/> |
| | | <apex:commandButton value=" 采用 " onclick="onAdoptJs(event,JSON.parse('{!or.addressJson}'));return false;" style="background: #98c1fbf7;display:{!or.canAdopt};"/> |
| | | </td> |
| | | </tr> |
| | | <apex:variable value="{!cnt + 1}" var="cnt" /> |
| | |
| | | <apex:pageBlock id="oppBlock2" tabStyle="Report"> |
| | | <apex:pageblocksection title="编辑地址" id="UpdAddressId" rendered="true" columns="4"> |
| | | <apex:inputfield value="{!insUpdData.Address_Classification__c}" id="Address_Classification__c" /> |
| | | <apex:inputfield value="{!insUpdData.Customer__c}" id="Customer__r_Name" required="false" onchange="queryRecordType();" /> |
| | | <apex:inputfield value="{!insUpdData.Customer__c}" id="Customer__r_Name" required="false" /> |
| | | <!-- Before PIPL 20220308 --> |
| | | <!-- <apex:inputfield value="{!insUpdData.Contacts__c}" id="Contacts__c" required="false"/> --> |
| | | <!-- Add By Li Jun for PIPL 20220308 Start --> |
| | | <!-- <apex:inputText label="联系人" disabled="true" value="{!contactNameValue}" id="Contacts__c">--> |
| | | <apex:inputText label="联系人" value="{!contactNameValue}" id="Contacts__c"> |
| | | <apex:inputText label="联系人" disabled="true" value="{!contactNameValue}" id="Contacts__c"> |
| | | </apex:inputText> |
| | | <apex:inputHidden id="contactIdValue" value="{!contactIdValue}"/> |
| | | <!-- Add By Li Jun for PIPL 20220308 End --> |
| | |
| | | <apex:inputHidden id="Telephone_Encrypted__c" value="{!insUpdData.Telephone_Encrypted__c}"/> |
| | | <apex:inputHidden id="ZipCode_Encrypted__c" value="{!insUpdData.ZipCode_Encrypted__c}"/> |
| | | <apex:inputHidden id="Detailed_Address_Encrypted__c" value="{!insUpdData.Detailed_Address_Encrypted__c}"/> |
| | | <apex:inputHidden id="CustomerRecordType" value="{!accRecordTypeId}"/> |
| | | </apex:pageblocksection> |
| | | |
| | | <div style="text-align: center;"> |
| | |
| | | </apex:form> |
| | | <apex:outputPanel id="checEventFrame"> |
| | | <script type="text/javascript"> |
| | | |
| | | |
| | | j$("select option[value='办事处']")[1].remove(); |
| | | DecryptAddress(); |
| | | |
| | | </script> |
| | | </apex:outputPanel> |
| | | <script type="javascript/text"> |
| | | |
| | | </script> |
| | | |
| | | </apex:page> |
| | |
| | | </apex:outputPanel> |
| | | </li> |
| | | <li style="{!IF(esdInfo.quickCheck, 'background:#BBFF66;', '')}"> |
| | | <span>{!$ObjectType.TransferApplyDetail__c.fields.Pre_Inspection_Comment__c.label}: </span> |
| | | <span>{!$ObjectType.TransferApplyDetail__c.fields.Pre_NG_abord_reason__c.label}: </span> |
| | | <apex:outputPanel layout="none" rendered="{!(esdInfo.editable)}"> |
| | | <apex:inputField value="{!esdInfo.rec.Pre_Inspection_Comment__c}" style="margin:3px;width:75px;"/> |
| | | <span> |
| | | <apex:inputField id="inspectionResultNg2" value="{!esdInfo.rec.Pre_NG_abord_reason__c}" style="margin:3px;width:75px;"/> |
| | | <script> |
| | | disabledShowNG(); |
| | | function disabledShowNG() { |
| | | var inspection_result_NG = '{!esdInfo.rec.Inspection_result_ng__c}'; |
| | | console.log("====",inspection_result_NG) |
| | | if(inspection_result_NG != '废弃'){ |
| | | j$(escapeVfId('allPage:allForm:esdList:' + ('{!indexloop}' - 1) + ':inspectionResultNG2')).prop("disabled", true); |
| | | } |
| | | } |
| | | </script> |
| | | </span> |
| | | </apex:outputPanel> |
| | | <apex:outputPanel layout="none" rendered="{!NOT(esdInfo.editable)}"> |
| | | <span><apex:outputField value="{!esdInfo.rec.Pre_Inspection_Comment__c}" style="margin:3px;width:75px;"/></span> |
| | | <span><apex:outputField id="inspectionResultNg3" value="{!esdInfo.rec.Pre_NG_abord_reason__c}" style="margin:3px;width:75px;"/></span> |
| | | </apex:outputPanel> |
| | | </li> |
| | | <li style="{!IF(esdInfo.quickCheck, 'background:#BBFF66;', '')}"> |
| | | <span>{!$ObjectType.TransferApplyDetail__c.fields.Pre_Inspection_Comment__c.label}: </span> |
| | | <apex:outputPanel layout="none" rendered="{!(esdInfo.editable)}"> |
| | | <span> |
| | | <apex:inputField value="{!esdInfo.rec.Pre_Inspection_Comment__c}" style="margin:3px;width:90%;float:left;"/> |
| | | </span> |
| | | </apex:outputPanel> |
| | | <apex:outputPanel layout="none" rendered="{!NOT(esdInfo.editable)}"> |
| | | <span> |
| | | <apex:outputField value="{!esdInfo.rec.Pre_Inspection_Comment__c}" style="margin:3px;width:90%;float:left;"/> |
| | | </span> |
| | | </apex:outputPanel> |
| | | </li> |
| | | <li style="{!IF(esdInfo.quickCheck, 'background:#BBFF66;', '')}"> |
| | |
| | | AWSToSobjectEncryptedMap:{!AWSToSobjectEncryptedMapJson} |
| | | }; |
| | | var staticResources = JSON.parse('{!staticResource}'); |
| | | var staticResourceAWSContact = JSON.parse('{!staticResourceAWSContact}'); |
| | | //var staticResourceAWSContact = JSON.parse('{!staticResourceAWSContact}'); |
| | | function QuerySobjectFromAWS() { |
| | | AWSService.query(staticResources.queryUrl, '{!AWSDataId}', queryBack, staticResources.token); |
| | | console.log('Query contact by awsid:'+'{!awsContactId}'); |
| | | if('{!awsContactId}'){ |
| | | AWSService.query(staticResourceAWSContact.queryUrl, '{!awsContactId}', queryBack, staticResources.token); |
| | | } |
| | | // console.log('Query contact by awsid:'+'{!awsContactId}'); |
| | | // if('{!awsContactId}'){ |
| | | // AWSService.query(staticResourceAWSContact.queryUrl, '{!awsContactId}', queryBack, staticResources.token); |
| | | // } |
| | | |
| | | } |
| | | var queryBack = function queryBack(data) { |
| | |
| | | console.log('data.object is ' + data.object); |
| | | return; |
| | | } |
| | | console.log('Data from AWS:'+JSON.stringify(data.object)); |
| | | if('{!awsContactId}'){ |
| | | data.object.name = data.object.lastName; |
| | | data.object.type = data.object.type; |
| | | data.object.doctorDivision1 = data.object.doctorDivision1; |
| | | } |
| | | console.log('Data from AWS:'+JSON.stringify(data.object)); |
| | | // console.log('Data from AWS:'+JSON.stringify(data.object)); |
| | | // if('{!awsContactId}'){ |
| | | // data.object.name = data.object.lastName; |
| | | // data.object.type = data.object.type; |
| | | // data.object.doctorDivision1 = data.object.doctorDivision1; |
| | | // } |
| | | // console.log('Data from AWS:'+JSON.stringify(data.object)); |
| | | |
| | | for(let f in config.AWSToSobjectNonEncryptedMap){ |
| | | let t = "[title='"+config.ApiPrefix+config.AWSToSobjectNonEncryptedMap[f]+"']"; |
| | |
| | | <apex:pageBlockSection showHeader="false" title="" collapsible="true" columns="2" id="pageBlockSection"> |
| | | <!--Each section has layoutFields, let's iterate them as well--> |
| | | <apex:repeat value="{!encryptedAPIList}" var="encryptedAPI"> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" value="{!Case[encryptedAPI]}" /> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" title="{!ApiPrefix}{!encryptedAPI}" value="{!Case[encryptedAPI]}" /> |
| | | </apex:repeat> |
| | | </apex:pageBlockSection> |
| | | <script> |
| | | var staticResources = JSON.parse('{!staticResource}'); |
| | | var AWSToSobjectEncryptedMapJson = JSON.parse('{!AWSToSobjectEncryptedMapJson}'); |
| | | var ApiPrefix = '{!ApiPrefix}'; |
| | | function QueryCaseFromAWS() { |
| | | AWSService.query(staticResources.queryUrl, '{!AWSDataId}', queryBack, staticResources.token); |
| | | } |
| | | var queryBack = function queryBack(data) { |
| | | document.querySelector("[id='page:form:pageBlock:pageBlockSection:j_id2:0:j_id3']").innerHTML = data.object.cicTelephone; |
| | | document.querySelector("[data-id='CASE_CUSTOMER__c']").innerHTML = data.object.caseCustomer; |
| | | document.querySelector("[data-id='Customer_manual__c']").innerHTML = data.object.customerManual; |
| | | |
| | | for(let f in AWSToSobjectEncryptedMapJson){ |
| | | let t = "[title='"+ApiPrefix+AWSToSobjectEncryptedMapJson[f]+"']"; |
| | | let ele = document.querySelector(t); |
| | | if(ele){ |
| | | ele.title = ''; |
| | | if(data.object.hasOwnProperty(f)){ |
| | | ele.innerHTML = data.object[f]; |
| | | } |
| | | else{ |
| | | console.log(f + 'is not in data.object'); |
| | | } |
| | | }else{ |
| | | console.log('selector='+t+' not found'); |
| | | } |
| | | } |
| | | }; |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | console.log('sfdcPage.appendToOnloadQueue') |
| | |
| | | <apex:outputField html-data-id="{!encryptedAPI}" title="{!ApiPrefix}{!encryptedAPI}" value="{!Contact[encryptedAPI]}" /> |
| | | </apex:repeat> |
| | | <apex:outputText label="统一用户Id" id="viewContactId" value="" /> |
| | | <apex:outputText label="服务平台编码" id="ServicePlatformCode" value="" /> |
| | | </apex:pageBlockSection> |
| | | <script> |
| | | var config = { |
| | |
| | | // document.querySelector("[data-id='LastName']").value = data.object.lastName; |
| | | }; |
| | | var queryBackContactId = function queryBackContactId(data) { |
| | | |
| | | console.log('queryBackContactId:') |
| | | console.log(JSON.stringify(data)) |
| | | if(data.status == '0'){ |
| | | document.getElementById('page:form:pageBlock:pageBlockSection:viewContactId').innerText = data.object.viewContactId; |
| | | document.getElementById('page:form:pageBlock:pageBlockSection:viewContactId').innerText = data.object.viewContactId!=null?data.object.viewContactId:''; |
| | | document.getElementById('page:form:pageBlock:pageBlockSection:ServicePlatformCode').innerText = data.object.servicePlatformCode!=null?data.object.servicePlatformCode:''; |
| | | } |
| | | }; |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | |
| | | @description : |
| | | @author : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | @group : |
| | | @last modified on : 03-17-2022 |
| | | @last modified on : 03-29-2022 |
| | | @last modified by : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | --> |
| | | <apex:page standardController="Consum_Apply__c" extensions="NewConsumApplyController" id="page"> |
| | |
| | | <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/> |
| | | <apex:form id="form"> |
| | | <apex:pageblock id="pageBlock"> |
| | | <!-- <apex:pageBlockSection showHeader="false" title="" collapsible="true" columns="2" id="pageBlockSection"> |
| | | <!--Each section has layoutFields, let's iterate them as well--> |
| | | <!-- <apex:repeat value="{!encryptedAPIList}" var="encryptedAPI"> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" value="{!Consum_Apply__c[encryptedAPI]}" /> |
| | | </apex:repeat> |
| | | </apex:pageBlockSection> --> |
| | | <apex:pageBlockSection showHeader="false" title="" collapsible="true" columns="2" id="pageBlockSection"> |
| | | <!--Each section has layoutFields, let's iterate them as well--> |
| | | <apex:repeat value="{!encryptedAPIList}" var="encryptedAPI"> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" value="{!Consum_Apply__c[encryptedAPI]}" /> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" title="{!ApiPrefix}{!encryptedAPI}" value="{!Consum_Apply__c[encryptedAPI]}" /> |
| | | </apex:repeat> |
| | | </apex:pageBlockSection> |
| | | <script> |
| | | var staticResources = JSON.parse('{!staticResource}'); |
| | | var AWSToSobjectEncryptedMapJson = JSON.parse('{!AWSToSobjectEncryptedMapJson}'); |
| | | var ApiPrefix = '{!ApiPrefix}'; |
| | | function QueryConsumApplyFromAWS() { |
| | | AWSService.query(staticResources.queryUrl, '{!AWSDataId}', queryBack, staticResources.token); |
| | | } |
| | | var queryBack = function queryBack(data) { |
| | | document.querySelector("[id='page:form:pageBlock:pageBlockSection:j_id2:0:j_id3']").innerHTML = data.object.phoneNumber; |
| | | document.querySelector("[data-id='direct_shippment_address__c']").innerHTML = data.object.directShippmentAddress; |
| | | // document.querySelector("[id='page:form:pageBlock:pageBlockSection:j_id2:1:j_id3']").innerHTML = data.object.phoneNumber; |
| | | // document.querySelector("[data-id='direct_shippment_address__c']").innerHTML = data.object.directShippmentAddress; |
| | | if(!data.object){ |
| | | console.log('data.object is ' + data.object); |
| | | return; |
| | | } |
| | | for(let f in AWSToSobjectEncryptedMapJson){ |
| | | let t = "[title='"+ApiPrefix+AWSToSobjectEncryptedMapJson[f]+"']"; |
| | | let ele = document.querySelector(t); |
| | | if(ele){ |
| | | ele.title = ''; |
| | | if(data.object.hasOwnProperty(f)){ |
| | | ele.innerHTML = data.object[f]; |
| | | } |
| | | else{ |
| | | console.log(f + 'is not in data.object'); |
| | | } |
| | | }else{ |
| | | console.log('selector='+t+' not found'); |
| | | } |
| | | } |
| | | }; |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | console.log('sfdcPage.appendToOnloadQueue'); |
| | |
| | | <apex:repeat value="{!layoutEncryptedAPIList}" var="encryptedAPI"> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" title="{!ApiPrefix}{!encryptedAPI}" value="{!Inquiry_form__c[encryptedAPI]}" /> |
| | | </apex:repeat> |
| | | <apex:outputField html-data-id="Contact_Name__c" title="{!ApiPrefix}Contact_Name__c" value="{!Inquiry_form__c['Contact_Name__c']}" /> |
| | | </apex:pageBlockSection> |
| | | <script> |
| | | var config = { |
| | |
| | | AWSToSobjectEncryptedMap:{!AWSToSobjectEncryptedMapJson} |
| | | }; |
| | | var staticResources = JSON.parse('{!staticResource}'); |
| | | var staticResourceContact = JSON.parse('{!staticResourceContact}'); |
| | | function QuerySobjectFromAWS() { |
| | | AWSService.query(staticResources.queryUrl, '{!AWSDataId}', queryBack, staticResources.token); |
| | | debugger |
| | | let t = "[title='"+config.ApiPrefix+"Contact_Name__c']"; |
| | | let ele = document.querySelector(t); |
| | | if('{!contactAWSDataId}' != '无' && '{!contactName}' != '无'){ |
| | | if('{!contactAWSDataId}' != ''){ |
| | | AWSService.query(staticResourceContact .queryUrl, '{!contactAWSDataId}', queryContactBack, staticResourceContact.token); |
| | | }else{ |
| | | ele.innerHTML = '{!contactName}'; |
| | | } |
| | | }else{ |
| | | |
| | | ele.innerHTML = ''; |
| | | } |
| | | } |
| | | var queryContactBack = function queryContactBack(data){ |
| | | if(!data.object){ |
| | | console.log('data.object is ' + data.object); |
| | | return; |
| | | } |
| | | console.log('data.object is ' + data.object); |
| | | |
| | | let t = "[title='"+config.ApiPrefix+"Contact_Name__c']"; |
| | | let ele = document.querySelector(t); |
| | | if(ele){ |
| | | ele.title=''; |
| | | ele.innerHTML = data.object.lastName; |
| | | } |
| | | |
| | | }; |
| | | |
| | | |
| | | var queryBack = function queryBack(data) { |
| | | if(!data.object){ |
| | | console.log('data.object is ' + data.object); |
| | |
| | | if(data.object.hasOwnProperty(f)){ |
| | | if (f == 'email') { |
| | | let eml = document.querySelector("[data-id='Email__c']"); |
| | | eml.href = 'mailto:'+data.object[f]; |
| | | eml.text = data.object[f]; |
| | | if(eml){ |
| | | eml.href = 'mailto:'+data.object[f]; |
| | | eml.text = data.object[f]; |
| | | } |
| | | |
| | | }else{ |
| | | ele.innerHTML = data.object[f]; |
| | | } |
| | |
| | | <apex:form id="form"> |
| | | <apex:pageblock id="pageBlock"> |
| | | <apex:pageBlockSection showHeader="false" title="" collapsible="true" columns="2" id="pageBlockSection"> |
| | | <!--Each section has layoutFields, let's iterate them as well--> |
| | | <apex:repeat value="{!encryptedAPIList}" var="encryptedAPI"> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" value="{!Lead[encryptedAPI]}" /> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" title="{!ApiPrefix}{!encryptedAPI}" value="{!Lead[encryptedAPI]}" /> |
| | | </apex:repeat> |
| | | </apex:pageBlockSection> |
| | | <script> |
| | | AWSService.sfSessionId = '{!GETSESSIONID()}'; |
| | | var staticResources = JSON.parse('{!staticResource}'); |
| | | var AWSToSobjectEncryptedMapJson = JSON.parse('{!AWSToSobjectEncryptedMapJson}'); |
| | | var ApiPrefix = '{!ApiPrefix}'; |
| | | function QueryLeadFromAWS() { |
| | | AWSService.query(staticResources.queryUrl, '{!AWSDataId}', queryBack, staticResources.token); |
| | | } |
| | | var queryBack = function queryBack(data) { |
| | | document.querySelector("[data-id='LastName']").innerHTML = data.object.lastName; |
| | | document.querySelector("[id='page:form:pageBlock:pageBlockSection:j_id3:0:j_id4']").innerHTML = data.object.phone; |
| | | //document.querySelector("[data-id='Email']").innerHTML = data.object.email; |
| | | let eml = document.querySelector("[data-id='Email']"); |
| | | eml.href = 'mailto:'+data.object.email; |
| | | eml.text = data.object.email; |
| | | console.log('resp from aws:'+JSON.stringify(data.object)); |
| | | if(!data.object){ |
| | | console.log('data.object is ' + data.object); |
| | | return; |
| | | } |
| | | for(let f in AWSToSobjectEncryptedMapJson){ |
| | | let t = "[title='"+ApiPrefix+AWSToSobjectEncryptedMapJson[f]+"']"; |
| | | let ele = document.querySelector(t); |
| | | if(ele){ |
| | | ele.title = ''; |
| | | if(data.object.hasOwnProperty(f)){ |
| | | if (f == 'email') { |
| | | let eml = document.querySelector("[data-id='Email']"); |
| | | if(eml){ //20220403 By Chen Yanan |
| | | eml.href = 'mailto:'+data.object[f]; |
| | | eml.text = data.object[f]; |
| | | continue; |
| | | } |
| | | } |
| | | ele.innerHTML = data.object[f]; |
| | | } |
| | | else{ |
| | | console.log(f + 'is not in data.object'); |
| | | } |
| | | }else{ |
| | | console.log('selector='+t+' not found'); |
| | | } |
| | | |
| | | } |
| | | }; |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | console.log('sfdcPage.appendToOnloadQueue') |
| | |
| | | </apex:repeat> |
| | | </apex:pageBlockSection> |
| | | <script> |
| | | AWSService.sfSessionId = '{!GETSESSIONID()}'; |
| | | // AWSService.sfSessionId = '{!GETSESSIONID()}'; // 20220404 By Chen Yanan |
| | | var staticResources = JSON.parse('{!staticResource}'); |
| | | function QueryConsumApplyFromAWS() { |
| | | AWSService.query(staticResources.queryUrl, '{!AWSDataId}', queryBack, staticResources.token); |
| | | } |
| | | var queryBack = function queryBack(data) { |
| | | document.querySelector("[id='page:form:pageBlock:pageBlockSection:j_id2:0:j_id3']").innerHTML = data.object.callerPhone; |
| | | document.querySelector("[data-id='Responsible_Person_HP__c']").innerHTML = data.object.responsiblePersonHP; |
| | | document.querySelector("[id='page:form:pageBlock:pageBlockSection:j_id2:1:j_id3']").innerHTML = data.object.callerPhone; |
| | | }; |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | console.log('sfdcPage.appendToOnloadQueue'); |
| | |
| | | @description : |
| | | @author : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | @group : |
| | | @last modified on : 03-17-2022 |
| | | @last modified on : 03-29-2022 |
| | | @last modified by : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | --> |
| | | <apex:page standardController="Rental_Apply__c" extensions="RentalApplyController" id="page"> |
| | |
| | | <apex:includeScript value="{!URLFOR($Resource.jquery183minjs)}"/> |
| | | <apex:form id="form"> |
| | | <apex:pageblock id="pageBlock"> |
| | | <!-- <apex:pageBlockSection showHeader="false" title="" collapsible="true" columns="2" id="pageBlockSection"> |
| | | <!--Each section has layoutFields, let's iterate them as well--> |
| | | <!-- <apex:repeat value="{!encryptedAPIList}" var="encryptedAPI"> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" value="{!Rental_Apply__c[encryptedAPI]}" /> |
| | | </apex:repeat> |
| | | </apex:pageBlockSection> --> |
| | | |
| | | <apex:pageBlockSection showHeader="false" title="" collapsible="true" columns="2" id="pageBlockSection"> |
| | | <!--Each section has layoutFields, let's iterate them as well--> |
| | | <apex:repeat value="{!encryptedAPIList}" var="encryptedAPI"> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" value="{!Rental_Apply__c[encryptedAPI]}" /> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" title="{!ApiPrefix}{!encryptedAPI}" value="{!Rental_Apply__c[encryptedAPI]}" /> |
| | | </apex:repeat> |
| | | </apex:pageBlockSection> |
| | | <script> |
| | | var staticResources = JSON.parse('{!staticResource}'); |
| | | var AWSToSobjectEncryptedMapJson = JSON.parse('{!AWSToSobjectEncryptedMapJson}'); |
| | | var ApiPrefix = '{!ApiPrefix}'; |
| | | function QueryConsumApplyFromAWS() { |
| | | AWSService.query(staticResources.queryUrl, '{!AWSDataId}', queryBack, staticResources.token); |
| | | } |
| | | var queryBack = function queryBack(data) { |
| | | document.querySelector("[id='page:form:pageBlock:pageBlockSection:j_id2:1:j_id3']").innerHTML = data.object.phoneNumber; |
| | | document.querySelector("[data-id='direct_shippment_address__c']").innerHTML = data.object.directShippmentAddress; |
| | | // document.querySelector("[id='page:form:pageBlock:pageBlockSection:j_id2:0:j_id3']").innerText = data.object.phoneNumber; |
| | | // document.querySelector("[data-id='direct_shippment_address__c']").innerText = data.object.directShippmentAddress; |
| | | if(!data.object){ |
| | | console.log('data.object is ' + data.object); |
| | | return; |
| | | } |
| | | for(let f in AWSToSobjectEncryptedMapJson){ |
| | | let t = "[title='"+ApiPrefix+AWSToSobjectEncryptedMapJson[f]+"']"; |
| | | let ele = document.querySelector(t); |
| | | if(ele){ |
| | | ele.title = ''; |
| | | if(data.object.hasOwnProperty(f)){ |
| | | ele.innerHTML = data.object[f]; |
| | | } |
| | | else{ |
| | | console.log(f + 'is not in data.object'); |
| | | } |
| | | }else{ |
| | | console.log('selector='+t+' not found'); |
| | | } |
| | | |
| | | } |
| | | }; |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | console.log('sfdcPage.appendToOnloadQueue'); |
| | |
| | | @description : |
| | | @author : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | @group : |
| | | @last modified on : 03-23-2022 |
| | | @last modified on : 03-30-2022 |
| | | @last modified by : ChangeMeIn@UserSettingsUnder.SFDoc |
| | | --> |
| | | <apex:page standardController="Repair__c" extensions="NewRepairController" id="page"> |
| | |
| | | var staticResourceContact = JSON.parse('{!staticResourceContact}'); |
| | | var staticResourceAddress = JSON.parse('{!staticResourceAddress}'); |
| | | function QueryConsumApplyFromAWS() { |
| | | AWSService.query(staticResources.queryUrl, '{!AWSDataId}', queryBack, staticResources.token); |
| | | debugger; |
| | | AWSService.query(staticResources.queryUrl, '{!AWSDataId}', queryBack, staticResources.token); |
| | | } |
| | | var queryBack = function queryBack(data) { |
| | | console.log(data); |
| | |
| | | document.querySelector("[data-id='address_ZipCode__c']").innerHTML = data.object.addressZipCode; |
| | | document.querySelector("[data-id='Detailed_Address__c']").innerHTML = data.object.detailedAddress; |
| | | document.querySelector("[data-id='RepairApplicant__c']").innerHTML = data.object.repairApplicant; |
| | | AWSService.query(staticResourceAddress.queryUrl, '{!DecryptAWSDataId}', queryBackDecrypt, staticResourceAddress.token); |
| | | //AWSService.query(staticResourceAddress.queryUrl, '{!DecryptAWSDataId}', queryBackDecrypt, staticResourceAddress.token); |
| | | }; |
| | | /* |
| | | var queryBackContact = function queryBack(data) { |
| | | console.log(data); |
| | | document.querySelector("[data-id='address_Contacts__c']").innerHTML = data.object.lastName; |
| | |
| | | document.querySelector("[data-id='address_ZipCode__c']").innerHTML = data.object.zipCode; |
| | | document.querySelector("[data-id='address_Telephone__c']").innerHTML = data.object.telephone; |
| | | AWSService.query(staticResourceContact.queryUrl, '{!ContactAWSDataId}', queryBackContact, staticResourceContact.token); |
| | | } |
| | | }*/ |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | console.log('sfdcPage.appendToOnloadQueue'); |
| | | QueryConsumApplyFromAWS(); |
| | |
| | | <apex:pageblock id="pageBlock"> |
| | | <apex:pageBlockSection showHeader="false" title="" collapsible="true" columns="2" id="pageBlockSection"> |
| | | <!--Each section has layoutFields, let's iterate them as well--> |
| | | <apex:repeat value="{!encryptedAPIList}" var="encryptedAPI"> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" value="{!Report__c[encryptedAPI]}" /> |
| | | <apex:repeat value="{!layoutEncryptedAPIList}" var="encryptedAPI"> |
| | | <apex:outputField html-data-id="{!encryptedAPI}" title="{!ApiPrefix}{!encryptedAPI}" value="{!Report__c[encryptedAPI]}" /> |
| | | </apex:repeat> |
| | | <apex:outputField html-data-id="Practitioner1__c" title="{!ApiPrefix}Practitioner1__c" value="{!Report__c['Practitioner1__c']}" /> |
| | | <apex:outputField html-data-id="Practitioner2__c" title="{!ApiPrefix}Practitioner2__c" value="{!Report__c['Practitioner2__c']}" /> |
| | | <apex:outputField html-data-id="Practitioner3__c" title="{!ApiPrefix}Practitioner3__c" value="{!Report__c['Practitioner3__c']}" /> |
| | | <apex:outputField html-data-id="Practitioner4__c" title="{!ApiPrefix}Practitioner4__c" value="{!Report__c['Practitioner4__c']}" /> |
| | | <apex:outputField html-data-id="Practitioner5__c" title="{!ApiPrefix}Practitioner5__c" value="{!Report__c['Practitioner5__c']}" /> |
| | | </apex:pageBlockSection> |
| | | <script> |
| | | var staticResources = JSON.parse('{!staticResource}'); |
| | | var AWSToSobjectEncryptedMapJson = JSON.parse('{!AWSToSobjectEncryptedMapJson}'); |
| | | var staticResourceContact = JSON.parse('{!staticResourceContact}'); |
| | | var ApiPrefix = '{!ApiPrefix}'; |
| | | function QueryLeadFromAWS() { |
| | | AWSService.query(staticResources.queryUrl, '{!AWSDataId}', queryBack, staticResources.token); |
| | | debugger |
| | | let t1 = "[title='"+'{!ApiPrefix}'+"Practitioner1__c']"; |
| | | let t2 = "[title='"+'{!ApiPrefix}'+"Practitioner2__c']"; |
| | | let t3 = "[title='"+'{!ApiPrefix}'+"Practitioner3__c']"; |
| | | let t4 = "[title='"+'{!ApiPrefix}'+"Practitioner4__c']"; |
| | | let t5 = "[title='"+'{!ApiPrefix}'+"Practitioner5__c']"; |
| | | let ele1 = document.querySelector(t1); |
| | | let ele2 = document.querySelector(t2); |
| | | let ele3 = document.querySelector(t3); |
| | | let ele4 = document.querySelector(t4); |
| | | let ele5 = document.querySelector(t5); |
| | | if('{!contactAWSDataId1}' != '无' && '{!contactName1}' != '无'){ |
| | | if('{!contactAWSDataId1}' != ''){ |
| | | AWSService.query(staticResourceContact .queryUrl, '{!contactAWSDataId1}', queryContactBack1, staticResourceContact.token); |
| | | }else{ |
| | | ele1.innerHTML = '{!contactName1}'; |
| | | } |
| | | if('{!contactAWSDataId2}' != ''){ |
| | | AWSService.query(staticResourceContact .queryUrl, '{!contactAWSDataId2}', queryContactBack2, staticResourceContact.token); |
| | | }else{ |
| | | ele2.innerHTML = '{!contactName1}'; |
| | | } |
| | | if('{!contactAWSDataId3}' != ''){ |
| | | AWSService.query(staticResourceContact .queryUrl, '{!contactAWSDataId3}', queryContactBack3, staticResourceContact.token); |
| | | }else{ |
| | | ele3.innerHTML = '{!contactName1}'; |
| | | } |
| | | if('{!contactAWSDataId4}' != ''){ |
| | | AWSService.query(staticResourceContact .queryUrl, '{!contactAWSDataId4}', queryContactBack4, staticResourceContact.token); |
| | | }else{ |
| | | ele4.innerHTML = '{!contactName1}'; |
| | | } |
| | | if('{!contactAWSDataId5}' != ''){ |
| | | AWSService.query(staticResourceContact .queryUrl, '{!contactAWSDataId5}', queryContactBack5, staticResourceContact.token); |
| | | }else{ |
| | | ele1.innerHTML = '{!contactName1}'; |
| | | } |
| | | }else{ |
| | | ele1.innerHTML = ''; |
| | | ele2.innerHTML = ''; |
| | | ele3.innerHTML = ''; |
| | | ele4.innerHTML = ''; |
| | | ele5.innerHTML = ''; |
| | | } |
| | | } |
| | | var queryBack = function queryBack(data) { |
| | | document.querySelector("[data-id='VOC_Informer_Name__c']").innerText=data.object.vocInformerName |
| | | document.querySelector("[id='page:form:pageBlock:pageBlockSection:j_id2:1:j_id3']").innerText=data.object.callerPhone |
| | | document.querySelector("[data-id='VOC_Informer_Contact__c']").innerText=data.object.vocInformerContact |
| | | document.querySelector("[data-id='Person_In_Charge_Text__c']").innerText=data.object.personInChargeText |
| | | document.querySelector("[data-id='Professor_sigh_text__c']").innerText=data.object.professorSighText |
| | | document.querySelector("[data-id='Staff_Info_Manual_c__c']").innerText=data.object.staffInfoManual |
| | | document.querySelector("[data-id='Medical_History__c']").innerText = data.object.medicalHistory |
| | | document.querySelector("[data-id='Responsible_Person_HP_c__c']").innerText=data.object.responsiblePersonHP |
| | | document.querySelector("[data-id='Practitioner1_Part__c']").innerText=data.object.practitioner1Part |
| | | document.getElementById('page:form:pageBlock:pageBlockSection:j_id2:8:j_id3').innerText=data.object.practitioner2Part |
| | | document.getElementById('page:form:pageBlock:pageBlockSection:j_id2:9:j_id3').innerText=data.object.practitioner3Part |
| | | document.getElementById('page:form:pageBlock:pageBlockSection:j_id2:10:j_id3').innerText=data.object.practitioner4Part |
| | | document.getElementById('page:form:pageBlock:pageBlockSection:j_id2:11:j_id3').innerText=data.object.practitioner5Part |
| | | document.querySelector("[data-id='age__c']").innerText=data.object.age |
| | | document.querySelector("[data-id='sex__c']").innerText=data.object.sex |
| | | if(!data.object){ |
| | | console.log('data.object is ' + data.object); |
| | | return; |
| | | } |
| | | for(let f in AWSToSobjectEncryptedMapJson){ |
| | | let t = "[title='"+ApiPrefix+AWSToSobjectEncryptedMapJson[f]+"']"; |
| | | let ele = document.querySelector(t); |
| | | if(ele){ |
| | | ele.title = ''; |
| | | if(data.object.hasOwnProperty(f)){ |
| | | ele.innerHTML = data.object[f]; |
| | | } |
| | | else{ |
| | | console.log(f + 'is not in data.object'); |
| | | } |
| | | }else{ |
| | | console.log('selector='+t+' not found'); |
| | | } |
| | | |
| | | } |
| | | }; |
| | | var queryContactBack1 = function queryContactBack1(data){ |
| | | if(!data.object){ |
| | | console.log('data.object is ' + data.object); |
| | | return; |
| | | } |
| | | console.log('data.object is ' + data.object); |
| | | |
| | | let t = "[title='"+'{!ApiPrefix}'+"Practitioner1__c']"; |
| | | let ele = document.querySelector(t); |
| | | if(ele){ |
| | | ele.title=''; |
| | | ele.innerHTML = data.object.lastName; |
| | | } |
| | | |
| | | }; |
| | | var queryContactBack2 = function queryContactBack2(data){ |
| | | if(!data.object){ |
| | | console.log('data.object is ' + data.object); |
| | | return; |
| | | } |
| | | console.log('data.object is ' + data.object); |
| | | |
| | | let t = "[title='"+'{!ApiPrefix}'+"Practitioner2__c']"; |
| | | let ele = document.querySelector(t); |
| | | if(ele){ |
| | | ele.title=''; |
| | | ele.innerHTML = data.object.lastName; |
| | | } |
| | | |
| | | }; |
| | | var queryContactBack3 = function queryContactBack3(data){ |
| | | if(!data.object){ |
| | | console.log('data.object is ' + data.object); |
| | | return; |
| | | } |
| | | console.log('data.object is ' + data.object); |
| | | |
| | | let t = "[title='"+'{!ApiPrefix}'+"Practitioner3__c']"; |
| | | let ele = document.querySelector(t); |
| | | if(ele){ |
| | | ele.title=''; |
| | | ele.innerHTML = data.object.lastName; |
| | | } |
| | | |
| | | }; |
| | | var queryContactBack4 = function queryContactBack4(data){ |
| | | if(!data.object){ |
| | | console.log('data.object is ' + data.object); |
| | | return; |
| | | } |
| | | console.log('data.object is ' + data.object); |
| | | |
| | | let t = "[title='"+'{!ApiPrefix}'+"Practitioner4__c']"; |
| | | let ele = document.querySelector(t); |
| | | if(ele){ |
| | | ele.title=''; |
| | | ele.innerHTML = data.object.lastName; |
| | | } |
| | | |
| | | }; |
| | | var queryContactBack5 = function queryContactBack5(data){ |
| | | if(!data.object){ |
| | | console.log('data.object is ' + data.object); |
| | | return; |
| | | } |
| | | console.log('data.object is ' + data.object); |
| | | |
| | | let t = "[title='"+'{!ApiPrefix}'+"Practitioner5__c']"; |
| | | let ele = document.querySelector(t); |
| | | if(ele){ |
| | | ele.title=''; |
| | | ele.innerHTML = data.object.lastName; |
| | | } |
| | | |
| | | }; |
| | | sfdcPage.appendToOnloadQueue(function () { |
| | | console.log('awsDataId = '+'{!AWSDataId}') |
| | | QueryLeadFromAWS(); |
| | | }); |
| | | </script> |
| | |
| | | //测试环境 |
| | | var url = "https://stagefull-ocm.cs117.force.com/eSignSystem/s/EsignDataEntry?"; |
| | | |
| | | |
| | | if( profileID == '00e10000000dE0KAAU' || profileID == '00e10000000Y3o5AAC'){ |
| | | var DNName = '{!eSignForm__c.DNNameNo0__c}'; |
| | | var encode = window.btoa(DNName); |
| | | var qrcode = new QRCode(document.getElementById("qrcode1"), { |
| | | // https://ocm.force.com/eSignSystem/s/?DNName= |
| | | text: url+"DNName="+encode, |
| | | width: 200, |
| | | height: 200, |
| | | colorDark : "#000000", |
| | | colorLight : "#ffffff", |
| | | correctLevel : QRCode.CorrectLevel.H |
| | | }); |
| | | var ManageCode = '{!eSignForm__c.AgencyNum__c}'; |
| | | var ManageCodeencode = window.btoa(ManageCode); |
| | | var qrcode = new QRCode(document.getElementById("qrcode0"), { |
| | | // https://ocm.force.com/eSignSystem/s/?DNName= |
| | | text: url+"AgencyID="+ManageCodeencode, |
| | | width: 200, |
| | | height: 200, |
| | | colorDark : "#000000", |
| | | colorLight : "#ffffff", |
| | | correctLevel : QRCode.CorrectLevel.H |
| | | }); |
| | | } |
| | | var DNName = '{!eSignForm__c.DNNameNo0__c}'; |
| | | var encode = window.btoa(DNName); |
| | | var qrcode = new QRCode(document.getElementById("qrcode1"), { |
| | | // https://ocm.force.com/eSignSystem/s/?DNName= |
| | | text: url+"DNName="+encode, |
| | | width: 200, |
| | | height: 200, |
| | | colorDark : "#000000", |
| | | colorLight : "#ffffff", |
| | | correctLevel : QRCode.CorrectLevel.H |
| | | }); |
| | | var ManageCode = '{!eSignForm__c.AgencyNum__c}'; |
| | | var ManageCodeencode = window.btoa(ManageCode); |
| | | var qrcode = new QRCode(document.getElementById("qrcode0"), { |
| | | // https://ocm.force.com/eSignSystem/s/?DNName= |
| | | text: url+"AgencyID="+ManageCodeencode, |
| | | width: 200, |
| | | height: 200, |
| | | colorDark : "#000000", |
| | | colorLight : "#ffffff", |
| | | correctLevel : QRCode.CorrectLevel.H |
| | | }); |
| | | </script> |
| | | </apex:page> |
| | |
| | | // j$(escapeVfId('Page:mainForm:block:Dealer_Final_Price')).attr('disabled',false); |
| | | } |
| | | // 报价 精琢技术 fy 2021-09-06 end |
| | | |
| | | // debugger |
| | | // var SkipQuotefilg = j$(escapeVfId('Page:mainForm:SkipQuotefilg')).value(); |
| | | // if(SkipQuotefilg == 'true'){ |
| | | // alert('画面配置变更,已生成新的报价单,请重新做报价计算'); |
| | | // } |
| | | } |
| | | // 格式化数字 |
| | | function number_format() { |
| | |
| | | // } |
| | | // }else{ |
| | | QuoteDecision.call(); |
| | | // var SkipQuotefilg = j$(escapeVfId('Page:mainForm:SkipQuotefilg')).value(); |
| | | // console.log('SkipQuotefilg:' + SkipQuotefilg); |
| | | blockme(); |
| | | return true; // by katsu なぜ return false? return true に変更した! |
| | | |
| | |
| | | //医療従事者の診療科(兼務先)を変更の場合、戦略科室・病院も修正 |
| | | trigger ContactHpDeptUpd on Contact (before insert, before update) { |
| | | if((!Test.isRunningTest())&&UserInfo.getUserId()==System.Label.ByPassTrigger){ |
| | | return; |
| | | } |
| | | List<String> accIds = new List<String>(); |
| | | List<String> FirstNameList = new List<String>(); |
| | | List<String> LastnameList = new List<String>(); |
| | |
| | | } |
| | | if(!deleteFiles.isEmpty()&&(!System.isFuture()||System.isBatch())){ |
| | | system.debug('DeleteFiles Value:'+JSON.serialize(deleteFiles)); |
| | | AWSServiceTool.deleteFileAddress(deleteFiles); |
| | | if(!Test.isRunningTest()){ |
| | | AWSServiceTool.deleteFileAddress(deleteFiles); |
| | | } |
| | | } |
| | | } |
| | |
| | | * Opportunity作成後(コピー)、triggerにて集計項目をnullにする |
| | | * 商談の「外貿/内貿」と「通貨」の値が一致させるトリガーです。 |
| | | * 商談の所有者【システム】に所有者のIdを入れる |
| | | * OpportunityBefInsUpdTriggerTest |
| | | */ |
| | | trigger OpportunityBefUpd on Opportunity (before insert, before update) { |
| | | |
| | | List<String> idlist = new List<String>(); |
| | | if(Trigger.isInsert){ |
| | | //询价担当人和战略科室担当人不一致,在这里同步 20170512 XFUU-ALB9JK |
| | |
| | | //if(ops.State_Owner__c == '能量') ops.STMS_Package_Sale__c = true; |
| | | // opIds.add(ops.Id); |
| | | // acs.add(ops.) |
| | | |
| | | //2022-3-29 yjk SWAG-CCL6R7 |
| | | Opportunity oldOne = Trigger.oldMap.get(ops.id); |
| | | if(oldOne.Bidding_Project_Name_Bid__c==null && ops.Bidding_Project_Name_Bid__c !=null ){ |
| | | List<Tender_information__c> ticList = [select id,ResultDate__c from Tender_information__c where id = :ops.Bidding_Project_Name_Bid__c]; |
| | | |
| | | ops.Closing_Bid_Date__c = ticList.size() == 1? ticList.get(0).ResultDate__c : null ; |
| | | |
| | | } |
| | | } |
| | | // System.debug('====================='+opIds); |
| | | // //在询价触发器里改这个验证,排除备品状态是取消的,只要是有备品,就不允许更改最终用户。 |
| | |
| | | trigger Repair on Repair__c (before insert, after insert, before update, after update, after delete, before delete) { |
| | | RepairHandler handler = new RepairHandler(); |
| | | handler.run(); |
| | | System.debug( '-----: trigger start'); |
| | | if ( Trigger.isBefore && Trigger.isUpdate) { |
| | | RepairTrigger.CheckUpdate(Trigger.old, Trigger.newMap); |
| | | } |
| | | |
| | | // ---------------------------------------------------------------------- |
| | | // wangweipeng 20210727 start |
| | | // 新增修理时,如果直返收货地址的信息都为空,那么就根据医院的 OCSM管理省(文本) 字段来匹配地址表里 省和市字段 |
| | | // 如果能匹配到那么默认是这条新增的修理收货地址 |
| | | // ---------------------------------------------------------------------- |
| | | if ( Trigger.isBefore && Trigger.isInsert) { |
| | | RepairBeforeInsertHandler ribt = new RepairBeforeInsertHandler(); |
| | | ribt.beforeInsertValue(Trigger.new,Trigger.old); |
| | | } |
| | | //wangweipeng 20210727 end |
| | | |
| | | if ((Trigger.isAfter && Trigger.isInsert) || (Trigger.isAfter && Trigger.isUpdate) || (Trigger.isAfter && Trigger.isDelete)) { |
| | | if(!(System.isFuture()||System.isBatch())){// Add By Lijun 20220303 to avoid mutiple execute |
| | | NFM103Controller.NFM103Trigger(Trigger.new, Trigger.newMap, Trigger.old, Trigger.oldMap); |
| | | NFM603Controller.NFM603Trigger(Trigger.new, Trigger.newMap, Trigger.old, Trigger.oldMap); |
| | | RepairTrigger.UpdateAssert(Trigger.new, Trigger.newMap, Trigger.old, Trigger.oldMap); |
| | | } |
| | | } |
| | | // ---------------------------------------------------------------------- |
| | | // ここより、修理のサービスコントラクト項目を自動的に更新するロジック |
| | | // ---------------------------------------------------------------------- |
| | | if ( Trigger.isBefore && (Trigger.isInsert || Trigger.isUpdate)) { |
| | | //先款后修-修理增加先款标识 thh 20220322 start |
| | | RepairTrigger.AdvancePaymentFlagUpsert(Trigger.new, Trigger.newMap, Trigger.old, Trigger.oldMap); |
| | | //先款后修-修理增加先款标识 thh 20220322 end |
| | | |
| | | // 納入機器IDを一意に格納する Setです。 |
| | | Set<ID> assetIds = new Set<Id>(); |
| | | |
| | | // 納入機器の一意のIDを得る |
| | | for ( Repair__c repair : Trigger.New) { |
| | | if (String.isBlank(repair.Delivered_Product__c) == false) assetIds.add( repair.Delivered_Product__c); |
| | | if(Test.isRunningTest()||UserInfo.getUserId()!=System.Label.ByPassTrigger){ |
| | | RepairHandler handler = new RepairHandler(); |
| | | handler.run(); |
| | | System.debug( '-----: trigger start'); |
| | | test(); |
| | | if ( Trigger.isBefore && Trigger.isUpdate) { |
| | | RepairTrigger.CheckUpdate(Trigger.old, Trigger.newMap); |
| | | } |
| | | |
| | | // 有効なサービス契約の Mapを得る |
| | | // arg1は納入機器のID, arg2は納入機器のIDのサービス契約一覧 |
| | | // 区分虚拟维修合同和正常维修合同 |
| | | // 正常维修合同保有设备集合 |
| | | Map<Id, List<Maintenance_Contract_Asset__c>> effectiveContracts = new Map<Id, List<Maintenance_Contract_Asset__c>>(); |
| | | // 虚拟维修合同保有设备集合 |
| | | Map<Id, List<Maintenance_Contract_Asset__c>> effectiveContractsVM = new Map<Id, List<Maintenance_Contract_Asset__c>>(); |
| | | List<Maintenance_Contract_Asset__c> contracts = OncallFinalStatusManager.selectMaintenance_Contract_Asset_List(assetIds); |
| | | for (Maintenance_Contract_Asset__c local : contracts) { |
| | | if (local.Maintenance_Contract__r.RecordType.DeveloperName == 'VM_Contract') { |
| | | List<Maintenance_Contract_Asset__c> middleTableVMList = effectiveContractsVM.get(local.Asset__c); |
| | | if (middleTableVMList == null) { |
| | | middleTableVMList = new List<Maintenance_Contract_Asset__c>(); |
| | | effectiveContractsVM.put(local.Asset__c, middleTableVMList); |
| | | } |
| | | middleTableVMList.add(local); |
| | | } else { |
| | | List<Maintenance_Contract_Asset__c> middleTableList = effectiveContracts.get(local.Asset__c); |
| | | if (middleTableList == null) { |
| | | middleTableList = new List<Maintenance_Contract_Asset__c>(); |
| | | effectiveContracts.put(local.Asset__c, middleTableList); |
| | | } |
| | | middleTableList.add(local); |
| | | } |
| | | // ---------------------------------------------------------------------- |
| | | // wangweipeng 20210727 start |
| | | // 新增修理时,如果直返收货地址的信息都为空,那么就根据医院的 OCSM管理省(文本) 字段来匹配地址表里 省和市字段 |
| | | // 如果能匹配到那么默认是这条新增的修理收货地址 |
| | | // ---------------------------------------------------------------------- |
| | | if ( Trigger.isBefore && Trigger.isInsert) { |
| | | RepairBeforeInsertHandler ribt = new RepairBeforeInsertHandler(); |
| | | ribt.beforeInsertValue(Trigger.new,Trigger.old); |
| | | } |
| | | System.debug( '-----: 维修合同开始'); |
| | | // 本題のロジック |
| | | for ( Repair__c repair : Trigger.New) { |
| | | //add wangweipeng 2021/12/09 start |
| | | boolean defaultFlag = true; |
| | | //add wangweipeng 2021/12/09 end |
| | | // 草案中修理だけ更新 |
| | | // GZW 特殊处理 跳过维修中心自动赋值,以手选为准 start |
| | | // 判断条件追加 && repair.Exc_work_location__c == false |
| | | if(repair.Exc_work_location__c){ |
| | | defaultFlag = false; |
| | | //wangweipeng 20210727 end |
| | | |
| | | if ((Trigger.isAfter && Trigger.isInsert) || (Trigger.isAfter && Trigger.isUpdate) || (Trigger.isAfter && Trigger.isDelete)) { |
| | | // if(!(System.isFuture()||System.isBatch())){// Add By Lijun 20220303 to avoid mutiple execute |
| | | NFM103Controller.NFM103Trigger(Trigger.new, Trigger.newMap, Trigger.old, Trigger.oldMap); |
| | | NFM603Controller.NFM603Trigger(Trigger.new, Trigger.newMap, Trigger.old, Trigger.oldMap); |
| | | RepairTrigger.UpdateAssert(Trigger.new, Trigger.newMap, Trigger.old, Trigger.oldMap); |
| | | // } |
| | | } |
| | | // ---------------------------------------------------------------------- |
| | | // ここより、修理のサービスコントラクト項目を自動的に更新するロジック |
| | | // ---------------------------------------------------------------------- |
| | | if ( Trigger.isBefore && (Trigger.isInsert || Trigger.isUpdate)) { |
| | | //先款后修-修理增加先款标识 thh 20220322 start |
| | | RepairTrigger.AdvancePaymentFlagUpsert(Trigger.new, Trigger.newMap, Trigger.old, Trigger.oldMap); |
| | | //先款后修-修理增加先款标识 thh 20220322 end |
| | | |
| | | // 納入機器IDを一意に格納する Setです。 |
| | | Set<ID> assetIds = new Set<Id>(); |
| | | |
| | | // 納入機器の一意のIDを得る |
| | | for ( Repair__c repair : Trigger.New) { |
| | | if (String.isBlank(repair.Delivered_Product__c) == false) assetIds.add( repair.Delivered_Product__c); |
| | | } |
| | | // GZW 特殊处理 跳过维修中心自动赋值,以手选为准 start |
| | | |
| | | if ((repair.Status__c == '草案中' || String.isBlank(repair.Status__c)) == false) { |
| | | // if (Trigger.isUpdate && repair.SAP_Transfer_time__c == null) { |
| | | if (Trigger.isUpdate && repair.SAP_Transfer_time__c == null && repair.Exc_work_location__c == false) { |
| | | |
| | | repair = RepairTrigger.updateWorkLocationSelect(repair, null); |
| | | defaultFlag = false; |
| | | } |
| | | continue; |
| | | } |
| | | System.debug( '-----:自动带出维修合同'); |
| | | // 修理の「故障発生日」が、サービス契約の「契約開始日」〜「契約終了日」に含まれるか? |
| | | List<Maintenance_Contract_Asset__c> middleTableList = effectiveContracts.get(repair.Delivered_Product__c); |
| | | |
| | | Boolean needsetnull = true; |
| | | System.debug( '-----:自动带出维修合同11111' + middleTableList); |
| | | // if (middleTableList == null) { |
| | | if (middleTableList == null && repair.Exc_work_location__c == false) { |
| | | if ((repair.NewProductGuarante_Txt__c == '2: 多年保修' |
| | | || repair.NewProductGuarante_Txt__c == '2: 服务多年保修' |
| | | || repair.NewProductGuarante_Txt__c == '8: 市场多年保修') |
| | | && (repair.Sales_Branch__c != repair.Finance_of_Branch__c) && repair.SAP_Transfer_time__c == null) { |
| | | repair = RepairTrigger.updateWorkLocationSelect(repair, null); |
| | | defaultFlag = false; |
| | | // 有効なサービス契約の Mapを得る |
| | | // arg1は納入機器のID, arg2は納入機器のIDのサービス契約一覧 |
| | | // 区分虚拟维修合同和正常维修合同 |
| | | // 正常维修合同保有设备集合 |
| | | Map<Id, List<Maintenance_Contract_Asset__c>> effectiveContracts = new Map<Id, List<Maintenance_Contract_Asset__c>>(); |
| | | // 虚拟维修合同保有设备集合 |
| | | Map<Id, List<Maintenance_Contract_Asset__c>> effectiveContractsVM = new Map<Id, List<Maintenance_Contract_Asset__c>>(); |
| | | List<Maintenance_Contract_Asset__c> contracts = OncallFinalStatusManager.selectMaintenance_Contract_Asset_List(assetIds); |
| | | for (Maintenance_Contract_Asset__c local : contracts) { |
| | | if (local.Maintenance_Contract__r.RecordType.DeveloperName == 'VM_Contract') { |
| | | List<Maintenance_Contract_Asset__c> middleTableVMList = effectiveContractsVM.get(local.Asset__c); |
| | | if (middleTableVMList == null) { |
| | | middleTableVMList = new List<Maintenance_Contract_Asset__c>(); |
| | | effectiveContractsVM.put(local.Asset__c, middleTableVMList); |
| | | } |
| | | middleTableVMList.add(local); |
| | | } else { |
| | | List<Maintenance_Contract_Asset__c> middleTableList = effectiveContracts.get(local.Asset__c); |
| | | if (middleTableList == null) { |
| | | middleTableList = new List<Maintenance_Contract_Asset__c>(); |
| | | effectiveContracts.put(local.Asset__c, middleTableList); |
| | | } |
| | | middleTableList.add(local); |
| | | } |
| | | } |
| | | if (middleTableList != null) for (Maintenance_Contract_Asset__c middleTable : middleTableList) { |
| | | if (repair.SERVICE_CONTRACT_JUDEGE_DAY__C != null |
| | | && repair.SERVICE_CONTRACT_JUDEGE_DAY__C >= middleTable.Maintenance_Contract__r.Contract_Start_Date__c |
| | | && repair.SERVICE_CONTRACT_JUDEGE_DAY__C <= middleTable.Maintenance_Contract__r.Contract_End_Date__c |
| | | && middleTable != null |
| | | && middleTable.Maintenance_Contract__r.Status__c == '契約' |
| | | && middleTable.Maintenance_Contract__r.Contract_Start_Date__c != null |
| | | && middleTable.Maintenance_Contract__r.Contract_End_Date__c != null |
| | | ) { |
| | | //限次合同产品信息维护相关 FXK 2021/03/05 Start |
| | | //1.如果记录类型是维修合同 或者 记录类型是服务任务但不是URF限次合同,保持现状 |
| | | //如果最大大修次数大于0,并且已经大修次数 小于 最大大修次数,那么保持现状 |
| | | if (middleTable.Maintenance_Contract__r.RecordType.DeveloperName == 'Maintenance_Contract' |
| | | || (middleTable.Maintenance_Contract__r.RecordType.DeveloperName == 'NewMaintenance_Contract' |
| | | && (middleTable.Maintenance_Contract__r.URF_Contract__c != true |
| | | || (middleTable.Maintenance_Contract__r.URF_Contract__c == true |
| | | && (middleTable.Series_MaxRepairCount_F__c > 0 |
| | | && middleTable.Series_RepairCount_F__c < middleTable.Series_MaxRepairCount_F__c))))) { |
| | | repair.Maintenance_Contract__c = middleTable.Maintenance_Contract__c; |
| | | // repair.Contract_Principal_Office__c = middleTable.Maintenance_Contract__r.SalesOfficeCode_selection__c; |
| | | // system.debug('555555:' + middleTable.Maintenance_Contract__r.SalesOfficeCode_selection__c); |
| | | // system.debug('mmmmmmmm:' + Trigger.isInsert); |
| | | // system.debug('nnnnnnn:' + Trigger.isUpdate); |
| | | repair.repairPlace__c = middleTable.Maintenance_Contract__r.SalesOfficeCode_selection__c; |
| | | //新增逻辑 HWAG-BKP5FB 精琢科技 2020/03/19 Start |
| | | //wangweipeng 发生数据到SAP以后,修理的维修中心不能做修改 |
| | | // if(repair.SAP_Transfer_time__c == null){ |
| | | if(repair.SAP_Transfer_time__c == null && repair.Exc_work_location__c == false){ |
| | | repair = RepairTrigger.updateWorkLocationSelect(repair, middleTable); |
| | | System.debug( '-----: 维修合同开始'); |
| | | // 本題のロジック |
| | | for ( Repair__c repair : Trigger.New) { |
| | | //add wangweipeng 2021/12/09 start |
| | | boolean defaultFlag = true; |
| | | //add wangweipeng 2021/12/09 end |
| | | // 草案中修理だけ更新 |
| | | // GZW 特殊处理 跳过维修中心自动赋值,以手选为准 start |
| | | // 判断条件追加 && repair.Exc_work_location__c == false |
| | | if(repair.Exc_work_location__c){ |
| | | defaultFlag = false; |
| | | } |
| | | // GZW 特殊处理 跳过维修中心自动赋值,以手选为准 start |
| | | |
| | | if ((repair.Status__c == '草案中' || String.isBlank(repair.Status__c)) == false) { |
| | | // if (Trigger.isUpdate && repair.SAP_Transfer_time__c == null) { |
| | | if (Trigger.isUpdate && repair.SAP_Transfer_time__c == null && repair.Exc_work_location__c == false) { |
| | | |
| | | repair = RepairTrigger.updateWorkLocationSelect(repair, null); |
| | | defaultFlag = false; |
| | | } |
| | | continue; |
| | | } |
| | | System.debug( '-----:自动带出维修合同'); |
| | | // 修理の「故障発生日」が、サービス契約の「契約開始日」〜「契約終了日」に含まれるか? |
| | | List<Maintenance_Contract_Asset__c> middleTableList = effectiveContracts.get(repair.Delivered_Product__c); |
| | | |
| | | Boolean needsetnull = true; |
| | | System.debug( '-----:自动带出维修合同11111' + middleTableList); |
| | | // if (middleTableList == null) { |
| | | if (middleTableList == null && repair.Exc_work_location__c == false) { |
| | | if ((repair.NewProductGuarante_Txt__c == '2: 多年保修' |
| | | || repair.NewProductGuarante_Txt__c == '2: 服务多年保修' |
| | | || repair.NewProductGuarante_Txt__c == '8: 市场多年保修') |
| | | && (repair.Sales_Branch__c != repair.Finance_of_Branch__c) && repair.SAP_Transfer_time__c == null) { |
| | | repair = RepairTrigger.updateWorkLocationSelect(repair, null); |
| | | defaultFlag = false; |
| | | } |
| | | } |
| | | if (middleTableList != null) for (Maintenance_Contract_Asset__c middleTable : middleTableList) { |
| | | if (repair.SERVICE_CONTRACT_JUDEGE_DAY__C != null |
| | | && repair.SERVICE_CONTRACT_JUDEGE_DAY__C >= middleTable.Maintenance_Contract__r.Contract_Start_Date__c |
| | | && repair.SERVICE_CONTRACT_JUDEGE_DAY__C <= middleTable.Maintenance_Contract__r.Contract_End_Date__c |
| | | && middleTable != null |
| | | && middleTable.Maintenance_Contract__r.Status__c == '契約' |
| | | && middleTable.Maintenance_Contract__r.Contract_Start_Date__c != null |
| | | && middleTable.Maintenance_Contract__r.Contract_End_Date__c != null |
| | | ) { |
| | | //限次合同产品信息维护相关 FXK 2021/03/05 Start |
| | | //1.如果记录类型是维修合同 或者 记录类型是服务任务但不是URF限次合同,保持现状 |
| | | //如果最大大修次数大于0,并且已经大修次数 小于 最大大修次数,那么保持现状 |
| | | if (middleTable.Maintenance_Contract__r.RecordType.DeveloperName == 'Maintenance_Contract' |
| | | || (middleTable.Maintenance_Contract__r.RecordType.DeveloperName == 'NewMaintenance_Contract' |
| | | && (middleTable.Maintenance_Contract__r.URF_Contract__c != true |
| | | || (middleTable.Maintenance_Contract__r.URF_Contract__c == true |
| | | && (middleTable.Series_MaxRepairCount_F__c > 0 |
| | | && middleTable.Series_RepairCount_F__c < middleTable.Series_MaxRepairCount_F__c))))) { |
| | | repair.Maintenance_Contract__c = middleTable.Maintenance_Contract__c; |
| | | // repair.Contract_Principal_Office__c = middleTable.Maintenance_Contract__r.SalesOfficeCode_selection__c; |
| | | // system.debug('555555:' + middleTable.Maintenance_Contract__r.SalesOfficeCode_selection__c); |
| | | // system.debug('mmmmmmmm:' + Trigger.isInsert); |
| | | // system.debug('nnnnnnn:' + Trigger.isUpdate); |
| | | repair.repairPlace__c = middleTable.Maintenance_Contract__r.SalesOfficeCode_selection__c; |
| | | //新增逻辑 HWAG-BKP5FB 精琢科技 2020/03/19 Start |
| | | //wangweipeng 发生数据到SAP以后,修理的维修中心不能做修改 |
| | | // if(repair.SAP_Transfer_time__c == null){ |
| | | if(repair.SAP_Transfer_time__c == null && repair.Exc_work_location__c == false){ |
| | | repair = RepairTrigger.updateWorkLocationSelect(repair, middleTable); |
| | | defaultFlag = false; |
| | | } |
| | | // 新增逻辑 HWAG-BKP5FB 精琢科技 2020/03/19 End |
| | | // HWAG-BJABEY LHJ 2019/12/04 Start |
| | | repair.MaintenanceContractType__c = middleTable.Maintenance_Contract__r.RecordType.Name; |
| | | // HWAG-BJABEY LHJ 2019/12/04 End |
| | | } |
| | | //2.如果记录类型是服务任务并且是URF限次合同,如果最大大修次数为0或者空,那么直接add Error报错 让联系服务管理部; |
| | | if (middleTable.Maintenance_Contract__r.RecordType.DeveloperName == 'NewMaintenance_Contract' |
| | | && middleTable.Maintenance_Contract__r.URF_Contract__c == true) { |
| | | if (middleTable.Series_MaxRepairCount_F__c == 0 || middleTable.Series_MaxRepairCount_F__c == null) { |
| | | //直接add Error报错 让联系服务管理部 |
| | | repair.addError('修理设备不是限次设备,请联系服务管理部'); |
| | | } |
| | | //如果最大大修次数大于0,并且已经大修次数 大于或等于 最大大修次数,那么不仅不赋值维修合同信息,而且清空当前信息 |
| | | if (middleTable.Series_MaxRepairCount_F__c > 0 && middleTable.Series_RepairCount_F__c >= middleTable.Series_MaxRepairCount_F__c) { |
| | | //不赋值维修合同信息,而且清空当前信息 |
| | | repair.Maintenance_Contract__c = null; |
| | | repair.MaintenanceContractType__c = null; |
| | | } |
| | | } |
| | | //限次合同产品信息维护相关 FXK 2021/03/05 END |
| | | needsetnull = false; |
| | | System.debug( '-----:自动带出维修合同22222');//把保有设备上的维修合同存到修理上 |
| | | break; |
| | | } |
| | | } |
| | | //MaintenanceContractType__c:维修合同记录类型 |
| | | /*如果不在合同中,则将1.‘修理’中的‘维修合同’和‘修理’中的‘维修合同记录类型’清空*/ |
| | | if (needsetnull) { |
| | | System.debug( '-----:nullにせよ'); |
| | | repair.Maintenance_Contract__c = null; |
| | | repair.MaintenanceContractType__c = null; |
| | | } |
| | | |
| | | System.debug( '-----: repair=' + repair); |
| | | System.debug( '-----: repair.Maintenance_Contract__c=' + repair.Maintenance_Contract__c); |
| | | System.debug( '-----: repair.SERVICE_CONTRACT_JUDEGE_DAY__C=' + repair.SERVICE_CONTRACT_JUDEGE_DAY__C); |
| | | // 设备修理时,自动带出虚拟维修合同 |
| | | List<Maintenance_Contract_Asset__c> middleTableVMList = effectiveContractsVM.get(repair.Delivered_Product__c); |
| | | // Boolean needsetnull = true; |
| | | System.debug( '-----:自动带出虚拟维修合同'); |
| | | System.debug( '-----:自动带出虚拟维修合同' + middleTableVMList); |
| | | // if (middleTableVMList == null) { |
| | | if (middleTableVMList == null && repair.Exc_work_location__c == false) { |
| | | if ((repair.NewProductGuarante_Txt__c == '2: 多年保修' |
| | | || repair.NewProductGuarante_Txt__c == '2: 服务多年保修' |
| | | || repair.NewProductGuarante_Txt__c == '8: 市场多年保修') |
| | | && (repair.Sales_Branch__c != repair.Finance_of_Branch__c)) { |
| | | repair = RepairTrigger.updateWorkLocationSelect(repair, null); |
| | | defaultFlag = false; |
| | | } |
| | | } |
| | | if (middleTableVMList != null) for (Maintenance_Contract_Asset__c middleTable : middleTableVMList) { |
| | | if (repair.SERVICE_CONTRACT_JUDEGE_DAY__C != null |
| | | && repair.SERVICE_CONTRACT_JUDEGE_DAY__C >= middleTable.startDateGurantee_Text__c |
| | | && repair.SERVICE_CONTRACT_JUDEGE_DAY__C <= middleTable.endDateGurantee_Text__c |
| | | && middleTable != null |
| | | && middleTable.Maintenance_Contract__r.Status__c == '契約' |
| | | && middleTable.startDateGurantee_Text__c != null |
| | | && middleTable.endDateGurantee_Text__c != null |
| | | ) { |
| | | repair.VM_Maintenance_Contract__c = middleTable.Maintenance_Contract__c; |
| | | needsetnull = false; |
| | | //新增逻辑 SLIU-BMMDWK 精琢科技 2020/03/17 Start |
| | | // if (repair.VM_Maintenance_Contract__c != null) { |
| | | if (repair.VM_Maintenance_Contract__c != null && repair.Exc_work_location__c == false) { |
| | | repair = RepairTrigger.updateWorkLocationSelect(repair, middleTable); |
| | | defaultFlag = false; |
| | | } |
| | | // 新增逻辑 HWAG-BKP5FB 精琢科技 2020/03/19 End |
| | | // HWAG-BJABEY LHJ 2019/12/04 Start |
| | | repair.MaintenanceContractType__c = middleTable.Maintenance_Contract__r.RecordType.Name; |
| | | // HWAG-BJABEY LHJ 2019/12/04 End |
| | | // 新增逻辑 SLIU-BMMDWK 精琢科技 2020/03/17 End |
| | | break; |
| | | } |
| | | //2.如果记录类型是服务任务并且是URF限次合同,如果最大大修次数为0或者空,那么直接add Error报错 让联系服务管理部; |
| | | if (middleTable.Maintenance_Contract__r.RecordType.DeveloperName == 'NewMaintenance_Contract' |
| | | && middleTable.Maintenance_Contract__r.URF_Contract__c == true) { |
| | | if (middleTable.Series_MaxRepairCount_F__c == 0 || middleTable.Series_MaxRepairCount_F__c == null) { |
| | | //直接add Error报错 让联系服务管理部 |
| | | repair.addError('修理设备不是限次设备,请联系服务管理部'); |
| | | } |
| | | //如果最大大修次数大于0,并且已经大修次数 大于或等于 最大大修次数,那么不仅不赋值维修合同信息,而且清空当前信息 |
| | | if (middleTable.Series_MaxRepairCount_F__c > 0 && middleTable.Series_RepairCount_F__c >= middleTable.Series_MaxRepairCount_F__c) { |
| | | //不赋值维修合同信息,而且清空当前信息 |
| | | repair.Maintenance_Contract__c = null; |
| | | repair.MaintenanceContractType__c = null; |
| | | } |
| | | } |
| | | if (needsetnull) { |
| | | System.debug( '-----:nullにせよ'); |
| | | repair.VM_Maintenance_Contract__c = null; |
| | | } |
| | | |
| | | //add wangweipeng 2021/12/10 start |
| | | if(defaultFlag){ |
| | | //一般修理品的维修中心赋值逻辑 |
| | | //SAP上传修理时间 |
| | | if(repair.SAP_Transfer_time__c == null){ |
| | | if(repair.On_site_repair__c == 'RC修理'||repair.On_site_repair__c== '直送SORC修理'||repair.On_site_repair__c== '直送OGZ修理' ){ |
| | | System.debug('-----------------11------'); |
| | | repair = RepairTrigger.generalUpdateWorkLocationSelect(repair); |
| | | } |
| | | //限次合同产品信息维护相关 FXK 2021/03/05 END |
| | | needsetnull = false; |
| | | System.debug( '-----:自动带出维修合同22222');//把保有设备上的维修合同存到修理上 |
| | | break; |
| | | } |
| | | } |
| | | //MaintenanceContractType__c:维修合同记录类型 |
| | | /*如果不在合同中,则将1.‘修理’中的‘维修合同’和‘修理’中的‘维修合同记录类型’清空*/ |
| | | if (needsetnull) { |
| | | System.debug( '-----:nullにせよ'); |
| | | repair.Maintenance_Contract__c = null; |
| | | repair.MaintenanceContractType__c = null; |
| | | //add wangweipeng 2021/12/10 end |
| | | } |
| | | |
| | | System.debug( '-----: repair=' + repair); |
| | | System.debug( '-----: repair.Maintenance_Contract__c=' + repair.Maintenance_Contract__c); |
| | | System.debug( '-----: repair.SERVICE_CONTRACT_JUDEGE_DAY__C=' + repair.SERVICE_CONTRACT_JUDEGE_DAY__C); |
| | | // 设备修理时,自动带出虚拟维修合同 |
| | | List<Maintenance_Contract_Asset__c> middleTableVMList = effectiveContractsVM.get(repair.Delivered_Product__c); |
| | | // Boolean needsetnull = true; |
| | | System.debug( '-----:自动带出虚拟维修合同'); |
| | | System.debug( '-----:自动带出虚拟维修合同' + middleTableVMList); |
| | | // if (middleTableVMList == null) { |
| | | if (middleTableVMList == null && repair.Exc_work_location__c == false) { |
| | | if ((repair.NewProductGuarante_Txt__c == '2: 多年保修' |
| | | || repair.NewProductGuarante_Txt__c == '2: 服务多年保修' |
| | | || repair.NewProductGuarante_Txt__c == '8: 市场多年保修') |
| | | && (repair.Sales_Branch__c != repair.Finance_of_Branch__c)) { |
| | | repair = RepairTrigger.updateWorkLocationSelect(repair, null); |
| | | defaultFlag = false; |
| | | } |
| | | } |
| | | if (middleTableVMList != null) for (Maintenance_Contract_Asset__c middleTable : middleTableVMList) { |
| | | if (repair.SERVICE_CONTRACT_JUDEGE_DAY__C != null |
| | | && repair.SERVICE_CONTRACT_JUDEGE_DAY__C >= middleTable.startDateGurantee_Text__c |
| | | && repair.SERVICE_CONTRACT_JUDEGE_DAY__C <= middleTable.endDateGurantee_Text__c |
| | | && middleTable != null |
| | | && middleTable.Maintenance_Contract__r.Status__c == '契約' |
| | | && middleTable.startDateGurantee_Text__c != null |
| | | && middleTable.endDateGurantee_Text__c != null |
| | | ) { |
| | | repair.VM_Maintenance_Contract__c = middleTable.Maintenance_Contract__c; |
| | | needsetnull = false; |
| | | //新增逻辑 SLIU-BMMDWK 精琢科技 2020/03/17 Start |
| | | // if (repair.VM_Maintenance_Contract__c != null) { |
| | | if (repair.VM_Maintenance_Contract__c != null && repair.Exc_work_location__c == false) { |
| | | repair = RepairTrigger.updateWorkLocationSelect(repair, middleTable); |
| | | defaultFlag = false; |
| | | } |
| | | // 新增逻辑 SLIU-BMMDWK 精琢科技 2020/03/17 End |
| | | break; |
| | | } |
| | | } |
| | | if (needsetnull) { |
| | | System.debug( '-----:nullにせよ'); |
| | | repair.VM_Maintenance_Contract__c = null; |
| | | } |
| | | System.debug( '-----: 维修合同结束'); |
| | | |
| | | //add wangweipeng 2021/12/10 start |
| | | if(defaultFlag){ |
| | | //一般修理品的维修中心赋值逻辑 |
| | | //SAP上传修理时间 |
| | | if(repair.SAP_Transfer_time__c == null){ |
| | | if(repair.On_site_repair__c == 'RC修理'||repair.On_site_repair__c== '直送SORC修理'||repair.On_site_repair__c== '直送OGZ修理' ){ |
| | | System.debug('-----------------11------'); |
| | | repair = RepairTrigger.generalUpdateWorkLocationSelect(repair); |
| | | } |
| | | } |
| | | } |
| | | //add wangweipeng 2021/12/10 end |
| | | } |
| | | |
| | | System.debug( '-----: 维修合同结束'); |
| | | |
| | | // 20160727 add 计算修理工作日 |
| | | RepairTrigger.setRepairWorkday(Trigger.new, Trigger.newMap, Trigger.old, Trigger.oldMap); |
| | | // |
| | | if (Trigger.isUpdate) { |
| | | /****************************************************************************************************/ |
| | | //迁移进程生成器中repair Alltime功能 Start |
| | | /****************************************************************************************************/ |
| | | for (Repair__c a : Trigger.new) { |
| | | String StatusStr = ''; |
| | | if (a.Delete_Flag__c == true) { |
| | | StatusStr = '0.删除'; |
| | | } else if (a.RepairOrderStatusCode__c == 'A99' && a.IncorrectDataComment__c != null) { |
| | | StatusStr = '0.删除'; |
| | | } else if ((a.RepairOrderStatusCode__c == 'A95' || a.RepairOrderStatusCode__c == 'A96') |
| | | && a.Return_Without_Repair_IF__c == true) { |
| | | StatusStr = '0.取消'; |
| | | } else if (a.Finish_Check__c == 1) { |
| | | StatusStr = '5.完毕'; |
| | | } else if (a.Facility_Return_Receipt_Collection_Date__c != null |
| | | || a.Repair_Returned_To_HP_Date__c != null |
| | | || a.Repair_Shipped_Date__c != null) { |
| | | StatusStr = '4.修理品返送阶段'; |
| | | } else if (a.Repair_Final_Inspection_Date__c != null |
| | | || a.Repair_Completed_Date__c != null |
| | | || a.Repair_Start_Date__c != null) { |
| | | StatusStr = '3.维修阶段'; |
| | | } else if (a.Agreed_Date__c != null |
| | | || a.Repair_Discount_Date__c != null |
| | | || a.Repair_Estimated_Date__c != null |
| | | || a.Repair_Inspection_Date__c != null) { |
| | | StatusStr = '2.维修报价阶段'; |
| | | } else { |
| | | StatusStr = a.Status__c; |
| | | } |
| | | |
| | | a.Status__c = a.Status1__c; |
| | | // DOJ2.1 gzw AwareDate公式考文本 start |
| | | if (a.AwareDate__c != a.Aware_date__c && |
| | | (a.Aware_date__c >= Date.newInstance(2021, 9, 1) || |
| | | a.AwareDate__c >= Date.newInstance(2021, 9, 1) )) { |
| | | a.Aware_date__c = a.AwareDate__c; |
| | | } |
| | | // DOJ2.1 gzw AwareDate公式考文本 end |
| | | |
| | | // 20160727 add 计算修理工作日 |
| | | RepairTrigger.setRepairWorkday(Trigger.new, Trigger.newMap, Trigger.old, Trigger.oldMap); |
| | | // |
| | | if (Trigger.isUpdate) { |
| | | /****************************************************************************************************/ |
| | | //迁移进程生成器中repair Alltime功能 End |
| | | //迁移进程生成器中repair Alltime功能 Start |
| | | /****************************************************************************************************/ |
| | | for (Repair__c a : Trigger.new) { |
| | | String StatusStr = ''; |
| | | if (a.Delete_Flag__c == true) { |
| | | StatusStr = '0.删除'; |
| | | } else if (a.RepairOrderStatusCode__c == 'A99' && a.IncorrectDataComment__c != null) { |
| | | StatusStr = '0.删除'; |
| | | } else if ((a.RepairOrderStatusCode__c == 'A95' || a.RepairOrderStatusCode__c == 'A96') |
| | | && a.Return_Without_Repair_IF__c == true) { |
| | | StatusStr = '0.取消'; |
| | | } else if (a.Finish_Check__c == 1) { |
| | | StatusStr = '5.完毕'; |
| | | } else if (a.Facility_Return_Receipt_Collection_Date__c != null |
| | | || a.Repair_Returned_To_HP_Date__c != null |
| | | || a.Repair_Shipped_Date__c != null) { |
| | | StatusStr = '4.修理品返送阶段'; |
| | | } else if (a.Repair_Final_Inspection_Date__c != null |
| | | || a.Repair_Completed_Date__c != null |
| | | || a.Repair_Start_Date__c != null) { |
| | | StatusStr = '3.维修阶段'; |
| | | } else if (a.Agreed_Date__c != null |
| | | || a.Repair_Discount_Date__c != null |
| | | || a.Repair_Estimated_Date__c != null |
| | | || a.Repair_Inspection_Date__c != null) { |
| | | StatusStr = '2.维修报价阶段'; |
| | | } else { |
| | | StatusStr = a.Status__c; |
| | | } |
| | | |
| | | a.Status__c = a.Status1__c; |
| | | // DOJ2.1 gzw AwareDate公式考文本 start |
| | | if (a.AwareDate__c != a.Aware_date__c && |
| | | (a.Aware_date__c >= Date.newInstance(2021, 9, 1) || |
| | | a.AwareDate__c >= Date.newInstance(2021, 9, 1) )) { |
| | | a.Aware_date__c = a.AwareDate__c; |
| | | } |
| | | // DOJ2.1 gzw AwareDate公式考文本 end |
| | | |
| | | /****************************************************************************************************/ |
| | | //迁移进程生成器中repair Alltime功能 End |
| | | /****************************************************************************************************/ |
| | | } |
| | | } |
| | | } |
| | | } |
| | | // ---------------------------------------------------------------------- |
| | | // ここまで、サービスコントラクト項目を自動的に更新するロジック |
| | | // ---------------------------------------------------------------------- |
| | | // ---------------------------------------------------------------------- |
| | | // ここまで、サービスコントラクト項目を自動的に更新するロジック |
| | | // ---------------------------------------------------------------------- |
| | | |
| | | |
| | | // ---------------------------------------------------------------------- |
| | | // これより、On-Callの「On-Call跟进结果」を更新するロジック |
| | | // ---------------------------------------------------------------------- |
| | | // ---------------------------------------------------------------------- |
| | | // これより、On-Callの「On-Call跟进结果」を更新するロジック |
| | | // ---------------------------------------------------------------------- |
| | | |
| | | if ( ( Trigger.isBefore && ( Trigger.isInsert || Trigger.isUpdate)) || ( Trigger.isAfter && Trigger.isDelete)) { |
| | | if ( ( Trigger.isBefore && ( Trigger.isInsert || Trigger.isUpdate)) || ( Trigger.isAfter && Trigger.isDelete)) { |
| | | |
| | | // 処理対象となる修理を全部確保 |
| | | List<Repair__c> repairs = ( Trigger.isBefore ? Trigger.New : new List<Repair__c>()); |
| | | Set<Id> cncallIds = new Set<Id>(); |
| | | for ( Repair__c repair : ( Trigger.isBefore ? Trigger.New : Trigger.Old)) { |
| | | if (String.isBlank(repair.On_Call_ID__c) == false) { |
| | | cncallIds.add( repair.On_Call_ID__c); |
| | | // 処理対象となる修理を全部確保 |
| | | List<Repair__c> repairs = ( Trigger.isBefore ? Trigger.New : new List<Repair__c>()); |
| | | Set<Id> cncallIds = new Set<Id>(); |
| | | for ( Repair__c repair : ( Trigger.isBefore ? Trigger.New : Trigger.Old)) { |
| | | if (String.isBlank(repair.On_Call_ID__c) == false) { |
| | | cncallIds.add( repair.On_Call_ID__c); |
| | | } |
| | | } |
| | | |
| | | // 処理対象となるオンコールを全部確保 |
| | | |
| | | // 20210622 SQL优化 Start |
| | | // List<On_Call__c> oncalls = OncallFinalStatusManager.getOncallList(cncallIds); |
| | | List<On_Call__c> oncalls = new List<On_Call__c>(); |
| | | if (cncallIds.size() > 0 ) { |
| | | oncalls = OncallFinalStatusManager.getOncallList(cncallIds); |
| | | } |
| | | // 20210622 SQL优化 End |
| | | |
| | | if (oncalls.size() > 0) { |
| | | // 処理対象となるQISを全部確保 |
| | | List<QIS_Report__c> qiss = OncallFinalStatusManager.getQisListFronOncalls(oncalls); |
| | | |
| | | // FinalStatus更新処理 |
| | | OncallFinalStatusManager.setFinalStatus( oncalls, repairs, qiss); |
| | | |
| | | OncallFinalStatusManager.updOncalls(oncalls); |
| | | } |
| | | } |
| | | |
| | | // 処理対象となるオンコールを全部確保 |
| | | // ---------------------------------------------------------------------- |
| | | // ここまで、On-Callの「On-Call跟进结果」を更新するロジック |
| | | // ---------------------------------------------------------------------- |
| | | |
| | | // 20210622 SQL优化 Start |
| | | // List<On_Call__c> oncalls = OncallFinalStatusManager.getOncallList(cncallIds); |
| | | List<On_Call__c> oncalls = new List<On_Call__c>(); |
| | | if (cncallIds.size() > 0 ) { |
| | | oncalls = OncallFinalStatusManager.getOncallList(cncallIds); |
| | | } |
| | | // 20210622 SQL优化 End |
| | | |
| | | if (oncalls.size() > 0) { |
| | | // 処理対象となるQISを全部確保 |
| | | List<QIS_Report__c> qiss = OncallFinalStatusManager.getQisListFronOncalls(oncalls); |
| | | |
| | | // FinalStatus更新処理 |
| | | OncallFinalStatusManager.setFinalStatus( oncalls, repairs, qiss); |
| | | |
| | | OncallFinalStatusManager.updOncalls(oncalls); |
| | | } |
| | | } |
| | | |
| | | // ---------------------------------------------------------------------- |
| | | // ここまで、On-Callの「On-Call跟进结果」を更新するロジック |
| | | // ---------------------------------------------------------------------- |
| | | |
| | | // ---------------------------------------------------------------------- |
| | | // これより、备品借出申请の「修理最终检测日」を更新するロジック(更新后触发WorkFlow) |
| | | // ---------------------------------------------------------------------- |
| | | if (Trigger.isAfter && Trigger.isUpdate) { |
| | | Map<String, Date> repairDateMap = new Map<String, Date>(); |
| | | List<String> targetRepairList = new List<String>(); |
| | | for (Repair__c repair : Trigger.New) { |
| | | Repair__c oldRepair = Trigger.OldMap.get(repair.Id); |
| | | if (oldRepair.Repair_Final_Inspection_Date__c != repair.Repair_Final_Inspection_Date__c) { |
| | | repairDateMap.put(repair.Id, repair.Repair_Final_Inspection_Date__c); |
| | | targetRepairList.add(repair.Id); |
| | | // ---------------------------------------------------------------------- |
| | | // これより、备品借出申请の「修理最终检测日」を更新するロジック(更新后触发WorkFlow) |
| | | // ---------------------------------------------------------------------- |
| | | if (Trigger.isAfter && Trigger.isUpdate) { |
| | | Map<String, Date> repairDateMap = new Map<String, Date>(); |
| | | List<String> targetRepairList = new List<String>(); |
| | | for (Repair__c repair : Trigger.New) { |
| | | Repair__c oldRepair = Trigger.OldMap.get(repair.Id); |
| | | if (oldRepair.Repair_Final_Inspection_Date__c != repair.Repair_Final_Inspection_Date__c) { |
| | | repairDateMap.put(repair.Id, repair.Repair_Final_Inspection_Date__c); |
| | | targetRepairList.add(repair.Id); |
| | | } |
| | | } |
| | | // 20210622 SQL优化 Start |
| | | //List<Rental_Apply__c> raList = [select Id, Repair__c from Rental_Apply__c where Repair__c = :targetRepairList]; |
| | | List<Rental_Apply__c> raList = new List<Rental_Apply__c>(); |
| | | if (targetRepairList.size() > 0) { |
| | | raList = [select Id, Repair__c from Rental_Apply__c where Repair__c = :targetRepairList]; |
| | | } |
| | | // 20210622 SQL优化 End |
| | | for (Rental_Apply__c ra : raList) { |
| | | ra.Repair_Final_Inspection_Date__c = repairDateMap.get(ra.Repair__c); |
| | | } |
| | | if (raList.size() > 0) { |
| | | update raList; |
| | | } |
| | | } |
| | | // 20210622 SQL优化 Start |
| | | //List<Rental_Apply__c> raList = [select Id, Repair__c from Rental_Apply__c where Repair__c = :targetRepairList]; |
| | | List<Rental_Apply__c> raList = new List<Rental_Apply__c>(); |
| | | if (targetRepairList.size() > 0) { |
| | | raList = [select Id, Repair__c from Rental_Apply__c where Repair__c = :targetRepairList]; |
| | | } |
| | | // 20210622 SQL优化 End |
| | | for (Rental_Apply__c ra : raList) { |
| | | ra.Repair_Final_Inspection_Date__c = repairDateMap.get(ra.Repair__c); |
| | | } |
| | | if (raList.size() > 0) { |
| | | update raList; |
| | | } |
| | | } |
| | | // ---------------------------------------------------------------------- |
| | | // ここまで、备品借出申请の「修理最终检测日」を更新するロジック |
| | | // ---------------------------------------------------------------------- |
| | | // ---------------------------------------------------------------------- |
| | | // ここまで、备品借出申请の「修理最终检测日」を更新するロジック |
| | | // ---------------------------------------------------------------------- |
| | | |
| | | System.debug( '-----: trigger end'); |
| | | System.debug( '-----: trigger end'); |
| | | } |
| | | public void test(){ |
| | | Integer i =0; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | i++; |
| | | |
| | | } |
| | | } |
| | |
| | | <Package xmlns="http://soap.sforce.com/2006/04/metadata"> |
| | | <types> |
| | | <members>AgencyAccountCmp</members> |
| | | <members>AgencyAccountCmpTest</members> |
| | | <members>AgencyContactHandler</members> |
| | | <members>AgencyContactHandlerTest</members> |
| | | <members>AssessmentReportController</members> |
| | | <members>AssessmentReportControllerTest</members> |
| | | <members>AWSServiceTool</members> |
| | | <members>BmeWorkController</members> |
| | | <members>AWSServiceToolTest</members> |
| | | <members>B_Test</members> |
| | | <members>B_TestTest</members> |
| | | <members>BmeWorkController</members> |
| | | <members>BmeWorkControllerTest</members> |
| | | <members>CampaignMemberController</members> |
| | | <members>CampaignMemberControllerTest</members> |
| | | <members>CampaignMemberServiceController</members> |
| | | <members>CampaignMemberServiceControllerTest</members> |
| | | <members>CM_SearchContact</members> |
| | | <members>CM_SearchContactServiceController</members> |
| | | <members>CM_SearchContactServiceControllerTest</members> |
| | | <members>CM_SearchContactTest</members> |
| | | <members>ConsumFixtureSetSelectController</members> |
| | | <members>ConsumFixtureSetSelectControllerTest</members> |
| | | <members>ConsumReassignController</members> |
| | | <members>ConsumReassignControllerTest</members> |
| | | <members>ConsumTrialController</members> |
| | | <members>ConsumTrialControllerTest</members> |
| | | <members>ConsumTrialPDFController</members> |
| | | <members>ConsumTrialPDFControllerTest</members> |
| | | <members>ControllerResponse</members> |
| | | <members>ControllerResponseTest</members> |
| | | <members>DeleteBatch</members> |
| | | <members>DeveloperUtility</members> |
| | | <members>DIrectReturnToReceivingAddressController</members> |
| | | <members>DeleteBatchTest</members> |
| | | <members>FieldInfo</members> |
| | | <members>FieldInfoTest</members> |
| | | <members>FileUploadController</members> |
| | | <members>FileUploadControllerTest</members> |
| | | <members>FixtureRentalPDFController</members> |
| | | <members>FixtureRentalPDFControllerTest</members> |
| | | <members>InsReportPDFController</members> |
| | | <members>InsReportPDFControllerTest</members> |
| | | <members>InstructReportController</members> |
| | | <members>InstructReportControllerTest</members> |
| | | <members>LayoutDescriberHelper</members> |
| | | <members>LayoutDescriberHelperTest</members> |
| | | <members>LeadIntentionController</members> |
| | | <members>LeadIntentionControllerTest</members> |
| | | <members>LightningUtil</members> |
| | | <members>LightningUtilTest</members> |
| | | <members>MetaDataUtility</members> |
| | | <members>NewAgencyContactController</members> |
| | | <members>NewAgencyContactControllerTest</members> |
| | | <members>NewAndEditAddressController</members> |
| | | <members>NewAndEditAddressControllerTest</members> |
| | | <members>NewAndEditAgencyContactController</members> |
| | | <members>NewAndEditAgencyContactControllerTest</members> |
| | | <members>NewAndEditASEActivityController</members> |
| | | <members>NewAndEditASEActivityControllerTest</members> |
| | | <members>NewAndEditBaseController</members> |
| | | <members>NewAndEditBaseControllerTest</members> |
| | | <members>NewAndEditCampaignMemberController</members> |
| | | <members>NewAndEditCampaignMemberControllerTest</members> |
| | | <members>NewAndEditCaseController</members> |
| | | <members>NewAndEditCaseControllerTest</members> |
| | | <members>NewAndEditContactController</members> |
| | | <members>NewAndEditContactControllerTest</members> |
| | | <members>NewAndEditEventController</members> |
| | | <members>NewAndEditEventControllerTest</members> |
| | | <members>NewAndEditInquiryFormController</members> |
| | | <members>NewAndEditInquiryFormControllerTest</members> |
| | | <members>NewAndEditInspectionReportController</members> |
| | | <members>NewAndEditInspectionReportControllerTest</members> |
| | | <members>NewAndEditLeadController</members> |
| | | <members>NewAndEditLeadControllerTest</members> |
| | | <members>NewAndEditQISController</members> |
| | | <members>NewAndEditQISControllerTest</members> |
| | | <members>NewAndEditRepairSubOrderController</members> |
| | | <members>NewAndEditRepairSubOrderControllerTest</members> |
| | | <members>NewAndEditReportController</members> |
| | | <members>NewAndEditReportControllerTest</members> |
| | | <members>NewAndEditTenderinformationController</members> |
| | | <members>NewAndEditTenderinformationControlTest</members> |
| | | <members>NewConsumApplyController</members> |
| | | <members>NewConsumApplyControllerTest</members> |
| | | <members>NewConsumApplyEquipSetDetailController</members> |
| | | <members>NewListOfConsumablesController</members> |
| | | <members>NewConsumApplyEquipSetDetailControlTest</members> |
| | | <members>NewRepairController</members> |
| | | <members>NewRepairControllerTest</members> |
| | | <members>NFM103Controller</members> |
| | | <members>NFM103ControllerTest</members> |
| | | <members>NFM115ControllerTest</members> |
| | | <members>NFM203Rest</members> |
| | | <members>NFM203RestTest</members> |
| | | <members>NFM501Controller</members> |
| | | <members>NFM501ControllerTest</members> |
| | | <members>NFM501FutureController</members> |
| | | <members>NFM501FutureControllerTest</members> |
| | | <members>NFM502Controller</members> |
| | | <members>NFM502ControllerTest</members> |
| | | <members>NFM503Controller</members> |
| | | <members>NFM503InfoFileBatch</members> |
| | | <members>NFM503InfoFileBatchTest</members> |
| | | <members>NFM606Controller</members> |
| | | <members>NFM606ControllerTest</members> |
| | | <members>NFM607Rest</members> |
| | | <members>NFM607RestTest</members> |
| | | <members>NFM612Rest</members> |
| | | <members>NFM612RestTest</members> |
| | | <members>NFM620Rest</members> |
| | | <members>NFM620RestBatch</members> |
| | | <members>NFM620RestBatchTest</members> |
| | | <members>NFM620RestSchedule</members> |
| | | <members>NFM620RestScheduleTest</members> |
| | | <members>NFM620RestTest</members> |
| | | <members>NFM623Rest</members> |
| | | <members>NFM623RestBatch</members> |
| | | <members>NFM623RestSchedule</members> |
| | | <members>NFM623RestScheduleTest</members> |
| | | <members>NFM623RestTest</members> |
| | | <members>NFM624Batch</members> |
| | | <members>NFM624BatchSchedulable</members> |
| | | <members>NFM624Rest</members> |
| | | <members>NFM624RestTest</members> |
| | | <members>NFM702Controller</members> |
| | | <members>NFM702ControllerHandler</members> |
| | | <members>NFM702ControllerTest</members> |
| | | <members>NFM702WebService</members> |
| | | <members>NFM702WebServiceTest</members> |
| | | <members>NFMUtil</members> |
| | | <members>NFMUtilTest</members> |
| | | <members>OFSInsReportLayoutController</members> |
| | | <members>OFSInsReportLayoutControllerTest</members> |
| | | <members>OnCallController</members> |
| | | <members>OnCallControllerTest</members> |
| | | <members>Option</members> |
| | | <members>PIHelper</members> |
| | | <members>PIHelperTest</members> |
| | | <members>QISPDFController</members> |
| | | <members>QISPDFControllerTest</members> |
| | | <members>RentalApplyController</members> |
| | | <members>RentalApplyControllerTest</members> |
| | | <members>SearchContactController</members> |
| | | <members>SearchContactControllerTest</members> |
| | | <members>SearchLeadController</members> |
| | | <members>SearchLeadControllerTest</members> |
| | | <members>SearchVisitorController</members> |
| | | <members>SearchVistorControllerTest</members> |
| | | <members>SimpleEventRegisterController</members> |
| | | <members>SimpleEventRegisterControllerTester</members> |
| | | <members>SLAReportDetailsController</members> |
| | | <members>SLAReportDetailsControllerTest</members> |
| | | <members>SObjectHelper</members> |
| | | <members>SObjectHelperTest</members> |
| | | <members>SoqlHelper</members> |
| | | <members>SoqlHelperTest</members> |
| | | <members>StartTradingController</members> |
| | | <members>StartTradingControllerTest</members> |
| | | <members>StraightBackAddressController</members> |
| | | <members>TestClass</members> |
| | | <members>TestController</members> |
| | | <members>StraightBackAddressControllerTest</members> |
| | | <members>UpdateContractAimAmountHandler</members> |
| | | <members>UpdateContractAimAmountHandlerTest</members> |
| | | <members>ViewParticipantsController</members> |
| | | <members>ViewParticipantsControllerTest</members> |
| | | <members>WeeklyReportCmp</members> |
| | | <members>WeeklyReportCmpTest</members> |
| | | <members>XinDailyReportController</members> |
| | | <members>ContactTriggerHandler</members> |
| | | <members>XinDailyReportControllerTest</members> |
| | | <name>ApexClass</name> |
| | | </types> |
| | | <types> |