From 87861ae5f1ed5456685f97f8a8e7625e47b9576d Mon Sep 17 00:00:00 2001
From: KKbes <1620284052@qq.com>
Date: 星期四, 13 四月 2023 11:12:26 +0800
Subject: [PATCH] Merge branch 'LEX_dev' of http://47.92.229.245:8089/r/lightningupdate into LEX_dev
---
force-app/main/default/classes/QISReportController.cls | 471 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 471 insertions(+), 0 deletions(-)
diff --git a/force-app/main/default/classes/QISReportController.cls b/force-app/main/default/classes/QISReportController.cls
new file mode 100644
index 0000000..3b375e1
--- /dev/null
+++ b/force-app/main/default/classes/QISReportController.cls
@@ -0,0 +1,471 @@
+public with sharing class QISReportController {
+ // Final universal code缂栬緫
+ @AuraEnabled
+ public static InitData initForQisUniversalFailureCodeButton (String recordId){
+ InitData res = new initData();
+ try{
+ QIS_Report__c report = [SELECT id FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ res.Id = report.Id;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+
+ @AuraEnabled
+ public static InitData sqlForPAE (String qisReportId){
+ InitData res = new initData();
+
+ String recordTypeId = LightingButtonConstant.DEVELOPER_NAME_ASAC_DECISION;
+ try{
+ PAE_DecisionRecord__c RCPAEDIdList = [SELECT LastModifiedDate, Id, Name, LastModifiedById,RecordType.DeveloperName FROM PAE_DecisionRecord__c where PAE_QIS__c = :qisReportId And RecordType.DeveloperName = :recordTypeId limit 1];
+ res.pAEid = RCPAEDIdList.id;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+
+ //Intake universal code缂栬緫
+ @AuraEnabled
+ public static InitData initForlexQISIntakeuniversalcodeButton (String recordId){
+ InitData res = new initData();
+ try{
+ QIS_Report__c report = [SELECT id FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ res.Id = report.Id;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+
+ @AuraEnabled
+ public static InitData sqlForPAE1 (String qisReportId){
+ InitData res = new initData();
+
+ String recordTypeId = LightingButtonConstant.DEVELOPER_NAME_ASRC_DECISION;
+ try{
+ PAE_DecisionRecord__c ASRCDIdList = [SELECT LastModifiedDate, Id, Name, LastModifiedById,RecordType.DeveloperName FROM PAE_DecisionRecord__c where PAE_QIS__c = :qisReportId And RecordType.DeveloperName = :recordTypeId Limit 1];
+ res.pAEid = ASRCDIdList.id;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+ //OSH鐜板搧鏀跺埌
+ @AuraEnabled
+ public static InitData initForOSHRecievedButton (String recordId){
+ InitData res = new initData();
+ try{
+ QIS_Report__c report = [SELECT id,QIS_Status__c FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ res.Id = report.Id;
+ res.QIStatus = report.QIS_Status__c;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+
+ @AuraEnabled
+ public static String updateQis (String recordId){
+ String re = '鎴愬姛';
+ try{
+ ID myUserID = UserInfo.getUserId();
+
+ User tempUser = [select id,Alias,Email from user where id = : myUserID ];
+ QIS_Report__c rac = new QIS_Report__c();
+ rac.id = recordId;
+ rac.QIS_Status__c = LightingButtonConstant.STATUS_QIS_OSH_TESTING;
+ rac.OSHRecievedDate__c = Date.today();
+ rac.OSH_Receive_staff__c = tempUser.Alias;
+ rac.OSH_staff__c = tempUser.Alias;
+ rac.OSH_staff_email__c = tempUser.email;
+ rac.Is_ProductGot__c = true;
+ rac.OSH_GotProductPeople__c = tempUser.id;
+ User resultSet = [SELECT Id, JingliApprovalManager__c, BuchangApprovalManager__c, ZongjianApprovalManager__c FROM User WHERE Id = :myUserID];
+ if (resultSet!=null && resultSet.JingliApprovalManager__c != null && resultSet.BuchangApprovalManager__c != null ) {
+ rac.OSH_Manager__c = resultSet.JingliApprovalManager__c;
+ rac.OSH_Buzhang__c = resultSet.BuchangApprovalManager__c;
+ }else{
+ rac.OSH_Manager__c= myUserID;
+ rac.OSH_Buzhang__c= myUserID;
+ }
+ Oly_TriggerHandler.bypass('QIS_ReportTrigger');
+ update rac;
+
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ re = e.getMessage();
+ }
+ return re;
+ }
+
+ //鎻愪氦寰呭鎵�1
+ @AuraEnabled
+ public static InitData initForOSHSubmitButton (String recordId){
+ InitData res = new initData();
+ try{
+ QIS_Report__c report = [SELECT id,QIS_Status__c,OSH_staff__c,OSH_staff_email__c FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ res.Id = report.Id;
+ res.QIStatus = report.QIS_Status__c;
+ res.OSHstaff = report.OSH_staff__c;
+ res.OSHstaffEmail = report.OSH_staff_email__c;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+ @AuraEnabled
+ public static String updateQis1 (String recordId){
+ String re = '鎴愬姛';
+ try{
+
+ QIS_Report__c rac = new QIS_Report__c();
+ rac.id = recordId;
+ rac.QIS_Status__c = LightingButtonConstant.STATUS_QIS_OSH_COMPLATED;
+ update rac;
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ re = e.getMessage();
+ }
+ return re;
+ }
+ //鎻愪氦寰呭鎵�
+ @AuraEnabled
+ public static InitData initForRCSubmitButton (String recordId){
+ InitData res = new initData();
+ try{
+ QIS_Report__c report = [SELECT id,RC_problem_not_found__c,QIS_Reply_day__c,RC_inspection_date__c,QIS_Status__c,Cancel_QIS_Reason__c,OSH_staff__c,OSH_staff_email__c,RC__c FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ res.Id = report.Id;
+ res.QIStatus = report.QIS_Status__c;
+ res.OSHstaff = report.OSH_staff__c;
+ res.OSHstaffEmail = report.OSH_staff_email__c;
+ res.CancelQISReason = report.Cancel_QIS_Reason__c;
+ res.RCid = report.RC__c;
+ res.RCinspectionDate = report.RC_inspection_date__c;
+ res.QISReplyDay = report.QIS_Reply_day__c;
+ res.RCproblemnotfound = report.RC_problem_not_found__c;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+
+ @AuraEnabled
+ public static String updateQisWithRC (String recordId,String type,String oldQIStatus){
+ String re = '鎴愬姛';
+
+ ID myUserID = UserInfo.getUserId();
+ User userinfo = [SELECT Id, JingliApprovalManager__c, BuchangApprovalManager__c, ZongjianApprovalManager__c, BuchangApprovalManagerSales__c, SalesManager__c FROM User WHERE Id = :myUserID LIMIT 1];
+ QIS_Report__c rac = new QIS_Report__c();
+ rac.id = recordId;
+ if (type == '1') {
+ QIS_Report__c report1 = [SELECT id,RC_problem_not_found__c,RC_FixedJudgement__c FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ rac.QIS_Status__c = LightingButtonConstant.STATUS_QIS_RC_COMPLATED;
+ if (report1.RC_problem_not_found__c == true && report1.RC_FixedJudgement__c == false) {
+ QIS_Report__c qisreport = [SELECT Id, Reason_bloken__c, Special_follow__c, next_action__c, QIS_Reply_Comment__c, OCM_judgement__c FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ if (qisreport != null) {
+ rac.Reason_bloken1__c = qisreport.Reason_bloken__c;
+ rac.Special_follow1__c = qisreport.Special_follow__c;
+ rac.next_action1__c = qisreport.next_action__c;
+ rac.QIS_Reply_Comment1__c = qisreport.QIS_Reply_Comment__c;
+ rac.OCM_judgement1__c = qisreport.OCM_judgement__c;
+ }
+ }
+ }
+ if (type == '2') {
+ rac.QIS_Status__c = LightingButtonConstant.STATUS_QIS_CANCEL;
+ rac.QIS_Cancel_Submit_day__c = Date.today();
+ }
+ try{
+ if (userinfo!=null && userinfo.BuchangApprovalManagerSales__c != null) {
+ rac.RC_Manager__c = userinfo.BuchangApprovalManagerSales__c;
+ }else{
+ rac.RC_Manager__c = myUserID;
+ }
+ if (userinfo!=null) {
+ if (oldQIStatus == LightingButtonConstant.STATUS_QIS_RC_CHECKING) {
+ rac.RC__c = myUserID;
+ }
+ if (userinfo.SalesManager__c != null ) {
+ rac.ApproveManager__c = userinfo.SalesManager__c;
+ }else{
+ rac.ApproveManager__c = myUserID;
+ }
+ if (userinfo.BuchangApprovalManagerSales__c != null ) {
+ rac.ApproveBuZhang__c = userinfo.BuchangApprovalManagerSales__c ;
+ }else{
+ rac.ApproveBuZhang__c = myUserID;
+ }
+ if (userinfo.ZongjianApprovalManager__c != null ) {
+ rac.AppeoveZongJian__c = userinfo.ZongjianApprovalManager__c ;
+ }else{
+ rac.AppeoveZongJian__c = myUserID;
+ }
+ }
+ update rac;
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ re = e.getMessage();
+ }
+ return re;
+ }
+ // 鎻愪氦
+ @AuraEnabled
+ public static InitData initForOCMSubmitButton (String recordId){
+ InitData res = new initData();
+ try{
+ QIS_Report__c report = [SELECT id,is_aohui_product__c,QIS_Status__c,OCM_Manager_Mail_F__c,QISInstallDate__c,contract_number__c FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ res.Id = report.Id;
+ res.QIStatus = report.QIS_Status__c;
+ res.QISInstallDate = report.QISInstallDate__c;
+ res.contractnumber = report.contract_number__c;
+ res.isaohuiproduct = report.is_aohui_product__c;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+
+ @AuraEnabled
+ public static String updateQisWithOCM (String recordId){
+ String re = '鎴愬姛';
+ QIS_Report__c report = [SELECT id,QIS_Status__c,QISInstallDate__c,contract_number__c,OCM_Manager_Mail_F__c
+ ,OCM_Member_Mail_F__c,OCM_Repair_Mail_F__c,OCM_Repair_Mail1_F__c,FSE_Special_Mail_F__c,FSE_Special_Manager_Mail_F__c
+ ,WorkLocation_CC_Mail_F__c,is_aohui_product__c,QuolityApproveResult__c
+ FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ try{
+ QIS_Report__c rac = new QIS_Report__c();
+ rac.id = recordId;
+ rac.QIS_Status__c = LightingButtonConstant.STATUS_QIS_FSE_COMPLATED;
+ rac.OCM_Manager_Mail__c = report.OCM_Manager_Mail_F__c;
+ rac.OCM_Member_Mail__c = report.OCM_Member_Mail_F__c;
+ rac.OCM_Repair_Mail__c = report.OCM_Repair_Mail_F__c;
+ rac.OCM_Repair_Mail1__c = report.OCM_Repair_Mail1_F__c;
+ rac.FSE_Special_Mail__c = report.FSE_Special_Mail_F__c;
+ rac.FSE_Special_Manager_Mail__c = report.FSE_Special_Manager_Mail_F__c;
+ rac.WorkLocation_CC_Mail__c = report.WorkLocation_CC_Mail_F__c;
+ rac.Cancel_QIS_Reason__c = null;
+ if (report.is_aohui_product__c == true) {
+ rac.OCM_judgement__c = '璐ㄩ噺闂';
+ rac.next_action__c = '鏃犲伩缁翠慨';
+ rac.RecordTypeId = Schema.SObjectType.QIS_Report__c.getRecordTypeInfosByName().get(LightingButtonConstant.RECORD_TYPE_NAME_BY_OSH).getRecordTypeId();
+ rac.QIS_Status__c = LightingButtonConstant.STATUS_QIS_OSH_TESTING_APP;
+ }
+ if (report.QuolityApproveResult__c == null || report.QuolityApproveResult__c == '') {
+ rac.QuolityApproveResult__c = '3.宸插鏍革紝涓�鑸川閲忛棶棰�';
+ }
+ update rac;
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ re = e.getMessage();
+ }
+ return re;
+ }
+
+ // QIS缁撴灉璺熻繘瀹屾瘯
+ @AuraEnabled
+ public static InitData initForQisAgreeButton (String recordId){
+ InitData res = new initData();
+ try{
+ QIS_Report__c report = [SELECT id ,OwnerId FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ res.Id = report.Id;
+ res.ownerId = report.OwnerId;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+
+ @AuraEnabled
+ public static String updateQisForQisAgree (String recordId){
+ String re = '鎴愬姛';
+ ID myUserID = UserInfo.getUserId();
+
+ String answerComp = Schema.SObjectType.QIS_Report__c.getRecordTypeInfosByName().get(LightingButtonConstant.RECORD_TYPE_NAME_BY_OSH_FINASH).getRecordTypeId();
+ String fina = Schema.SObjectType.QIS_Report__c.getRecordTypeInfosByName().get(LightingButtonConstant.RECORD_TYPE_NAME_BY_FINAL).getRecordTypeId();
+ String comp = Schema.SObjectType.QIS_Report__c.getRecordTypeInfosByName().get(LightingButtonConstant.RECORD_TYPE_NAME_BY_COMP).getRecordTypeId();
+ // RecordType rectyp = [SELECT id ,name FROM RecordType where id = '01210000000gFTH'];
+ QIS_Report__c report = [SELECT id,OwnerId,RecordTypeId FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ try{
+ if (report.ownerid == myUserID) {
+ QIS_Report__c rac = new QIS_Report__c();
+ rac.id = recordId;
+ rac.QIS_Status__c = LightingButtonConstant.STATUS_QIS_COMPLATED;
+ if (report.RecordTypeId == answerComp) {
+ rac.RecordTypeId = fina;
+ }else{
+ rac.RecordTypeId = comp;
+ }
+ rac.QIS_Complete_Day__c = Date.today();
+ update rac;
+ }
+
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ re = e.getMessage();
+ }
+ return re;
+ }
+ //OCSM鏈嶅姟鏈儴CDS瀹屾瘯
+ @AuraEnabled
+ public static InitData initForRCCDScompleteButton (String recordId){
+ InitData res = new initData();
+ try{
+ QIS_Report__c report = [SELECT id ,CDS_date__c,QIS_Status__c FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ res.Id = report.Id;
+ res.cdsdate = report.CDS_date__c;
+ res.QIStatus = report.QIS_Status__c;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+
+ @AuraEnabled
+ public static String updateQisForRCCDScomplete (String recordId){
+ String re = '鎴愬姛';
+ ID myUserID = UserInfo.getUserId();
+ User userinfo = [SELECT id,Alias__c FROM User WHERE Id = :myUserID LIMIT 1];
+ QIS_Report__c report = [SELECT id FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ try{
+ QIS_Report__c rac = new QIS_Report__c();
+ rac.id = recordId;
+ rac.CDS_date__c = Date.today();
+ rac.RC_CDS_staff__c = userinfo.Alias__c;
+ update rac;
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ re = e.getMessage();
+ }
+ return re;
+ }
+
+ //OCSM涓嶈鎶ュ憡
+ @AuraEnabled
+ public static InitData initForlexOCSMNoToReportLightingButton (String recordId){
+ InitData res = new initData();
+ try{
+ QIS_Report__c report = [SELECT id ,OCSMAdministrativeReportNumber__c,OCSMAdministrativeReportDate__c,Aware_date__c FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ res.Id = report.Id;
+ res.oCSMAdministrativeReportNumber = report.OCSMAdministrativeReportNumber__c;
+ res.oCSMAdministrativeReportDate = report.OCSMAdministrativeReportDate__c;
+ res.Awaredate = report.Aware_date__c;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+ @AuraEnabled
+ public static String updateQisForlexOCSMNoToReportLighting (String recordId){
+ String re = '鎴愬姛';
+ QIS_Report__c report = [SELECT id FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ try{
+ QIS_Report__c rac = new QIS_Report__c();
+ rac.id = recordId;
+ rac.OCSMAdministrativeReportStatus__c = '鏃犻渶鎶ュ憡';
+ update rac;
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ re = e.getMessage();
+ }
+ return re;
+ }
+ //OCSM瑕佹姤鍛�
+ @AuraEnabled
+ public static InitData initForlexOCSMToReportLightingButton (String recordId){
+ InitData res = new initData();
+ try{
+ QIS_Report__c report = [SELECT id ,OCSMAdministrativeReportStatus__c,Aware_date__c FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ res.Id = report.Id;
+ res.oCSMAdministrativeReportStatus = report.OCSMAdministrativeReportStatus__c;
+ res.Awaredate = report.Aware_date__c;
+ System.debug(LoggingLevel.INFO, '*** res: ' + res);
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ }
+ return res;
+ }
+
+ @AuraEnabled
+ public static String updateQisForlexOCSMToReportLighting (String recordId){
+ String re = '鎴愬姛';
+ QIS_Report__c report = [SELECT id FROM QIS_Report__c WHERE Id = :recordId LIMIT 1];
+ try{
+ QIS_Report__c rac = new QIS_Report__c();
+ rac.id = recordId;
+ rac.OCSMAdministrativeReportStatus__c = '寰呮姤鍛�';
+ update rac;
+ }catch(Exception e){
+ System.debug(LoggingLevel.INFO, '*** e: ' + e);
+ re = e.getMessage();
+ }
+ return re;
+ }
+ public class InitData{
+ @AuraEnabled
+ public String Id;
+ @AuraEnabled
+ public String ownerId;
+ @AuraEnabled
+ public String qisRecordTypeId;
+ @AuraEnabled
+ public String qisRecordName;
+ @AuraEnabled
+ public String profileName;
+ @AuraEnabled
+ public String isAEProfile;
+ @AuraEnabled
+ public String isPAEProfile;
+ @AuraEnabled
+ public String isCNBuy;
+ @AuraEnabled
+ public String pAEid;
+ @AuraEnabled
+ public String oCSMAdministrativeReportNumber;
+ @AuraEnabled
+ public String oCSMAdministrativeReportStatus;
+ @AuraEnabled
+ public String qIStatus;
+ @AuraEnabled
+ public String oSHstaff;
+ @AuraEnabled
+ public String oSHstaffEmail;
+ @AuraEnabled
+ public String cancelQISReason;
+ @AuraEnabled
+ public String rCid;
+ @AuraEnabled
+ public String contractnumber;
+ @AuraEnabled
+ public Date rCinspectionDate;
+ @AuraEnabled
+ public Date qISReplyDay;
+ @AuraEnabled
+ public Date qISInstallDate;
+ @AuraEnabled
+ public Date cdsdate;
+ @AuraEnabled
+ public Date awaredate;
+ @AuraEnabled
+ public Date oCSMAdministrativeReportDate;
+ @AuraEnabled
+ public Boolean rCproblemnotfound;
+ @AuraEnabled
+ public Boolean isaohuiproduct;
+ @AuraEnabled
+ public Boolean isSendQIS;
+ }
+
+}
\ No newline at end of file
--
Gitblit v1.9.1