From 5d155accb594089737a0b4edd753152a1ea66bc4 Mon Sep 17 00:00:00 2001
From: 19626 <1962676589@qq.com>
Date: 星期二, 04 四月 2023 15:23:51 +0800
Subject: [PATCH] 处理review 4.4
---
force-app/main/default/classes/ReportController.cls | 106 +++++++++++++++++++++++++++--------------------------
1 files changed, 54 insertions(+), 52 deletions(-)
diff --git a/force-app/main/default/classes/ReportController.cls b/force-app/main/default/classes/ReportController.cls
index 19c9e79..aea48b6 100644
--- a/force-app/main/default/classes/ReportController.cls
+++ b/force-app/main/default/classes/ReportController.cls
@@ -62,7 +62,7 @@
}
return res;
}
-
+ //缁橵OC缁撴灉纭鐩稿簲鐨刯s鎻愪緵鍒濆鍖栨暟鎹�
@AuraEnabled
public static InitData initForVOCConfirmButton (String recordId) {
InitData res = new initData();
@@ -134,7 +134,7 @@
return res;
}
-
+ //缁欏畬姣曠浉搴旂殑js鎻愪緵鍒濆鍖栨暟鎹�
@AuraEnabled
public static InitData initForCompleteButton(String recordId){
InitData res = new InitData();
@@ -147,13 +147,13 @@
}
return res;
}
-
+ //缁橧ntake universal code缂栬緫鐩稿簲鐨刯s鎻愪緵鍒濆鍖栨暟鎹�
@AuraEnabled
public static InitData initForASRCEditorButton(String recordId){
InitData res = new InitData();
- String recordTypeId = 'ASRCDecision';
+ String developerName = LightingButtonConstant.DEVELOPER_NAME_ASRC_DECISION;
try {
- PAE_DecisionRecord__c[] report = [SELECT LastModifiedDate, Id, Name, LastModifiedById,RecordType.DeveloperName FROM PAE_DecisionRecord__c where PAE_Report__c = :recordId And RecordType.DeveloperName = :recordTypeId Order by LastModifiedDate desc];
+ PAE_DecisionRecord__c[] report = [SELECT LastModifiedDate, Id, Name, LastModifiedById,RecordType.DeveloperName FROM PAE_DecisionRecord__c where PAE_Report__c = :recordId And RecordType.DeveloperName = :developerName Order by LastModifiedDate desc];
if (report != null && !report.isEmpty()) {
res.LastModifiedDate = report[0].LastModifiedDate;
res.Id = report[0].Id;
@@ -168,11 +168,11 @@
}
-
+ //缁橣inal universal code缂栬緫鐩稿簲鐨刯s鎻愪緵鍒濆鍖栨暟鎹�
@AuraEnabled
public static InitData initForASACEditorButton(String recordId){
InitData res = new InitData();
- String recordTypeId = 'ASACDecision';
+ String recordTypeId = LightingButtonConstant.DEVELOPER_NAME_ASAC_DECISION;
try {
PAE_DecisionRecord__c[] report = [SELECT LastModifiedDate, Id, Name, LastModifiedById,RecordType.DeveloperName FROM PAE_DecisionRecord__c where PAE_Report__c = :recordId And RecordType.DeveloperName = :recordTypeId Order by LastModifiedDate desc];
if (report != null && !report.isEmpty()) {
@@ -189,7 +189,7 @@
}
-
+ //缁橭PDtoSIS鐩稿簲鐨刯s鎻愪緵鍒濆鍖栨暟鎹�
@AuraEnabled
public static InitData initForOPDtoSISButton(String recordId){
InitData res = new InitData();
@@ -222,7 +222,7 @@
try {
Report__c rac = new Report__c();
rac.Id = reocrdId;
- rac.Status__c = '鎻愪氦';
+ rac.Status__c = LightingButtonConstant.RECORD_TYPE_NAME_BY_SUBMIT;
rac.Submit_time__c = Datetime.now();
rac.Submit_report_day__c = Date.today();
update rac;
@@ -230,13 +230,13 @@
throw new AuraHandledException(e.getMessage());
}
}
-
+ //OPDtoSIS鎿嶄綔鏇存柊鐩稿簲鏁版嵁
@AuraEnabled
- public static void updateForOPDtoSISButton(String recordId,String recordTypeId){
+ public static void updateForOPDtoSISButton(String recordId){
try {
Report__c rac = new Report__c();
rac.Id = recordId;
- rac.RecordTypeId = recordTypeId;
+ rac.RecordTypeId = Schema.SObjectType.Report__c.getRecordTypeInfosByName().get(LightingButtonConstant.RECORD_TYPE_NAME_BY_OPD).getRecordTypeId();
update rac;
} catch (Exception e) {
System.debug(LoggingLevel.INFO, '*** e: ' + e);
@@ -249,7 +249,7 @@
try {
Report__c rac = new Report__c();
rac.Id = recordId;
- rac.Status__c = '鑽夋涓�';
+ rac.Status__c = LightingButtonConstant.STATUS_DRAFT;
rac.Submit_report_day__c = null;
rac.Submit_time__c = null;
update rac;
@@ -257,14 +257,14 @@
throw new AuraHandledException(e.getMessage());
}
}
-
+ //瀹屾瘯鎿嶄綔鏇存柊鐩稿簲鏁版嵁
@AuraEnabled
- public static void updateForCompleteButton(String recordId,String recordTypeId){
+ public static void updateForCompleteButton(String recordId){
Report__c rac = new Report__c();
try {
rac.Id = recordId;
- rac.Status__c = '瀹屾瘯';
- rac.RecordTypeId = recordTypeId;
+ rac.Status__c = LightingButtonConstant.STATUS_COMPLETE;
+ rac.RecordTypeId = Schema.SObjectType.Report__c.getRecordTypeInfosByName().get(LightingButtonConstant.VOC_NAME).getRecordTypeId();
update rac;
} catch (Exception e) {
throw new AuraHandledException(e.getMessage());
@@ -276,7 +276,7 @@
try {
Report__c rac = new Report__c();
rac.Id = recordId;
- rac.OCSMAdministrativeReportStatus__c = '寰呮姤鍛�';
+ rac.OCSMAdministrativeReportStatus__c = LightingButtonConstant.STATUS_TO_BE_REPORTED;
update rac;
} catch (Exception e) {
System.debug(LoggingLevel.INFO, '*** e: ' + e);
@@ -285,11 +285,11 @@
//SIStoOPD鎿嶄綔鏇存柊鐩稿簲鏁版嵁
@AuraEnabled
- public static String updateForSIStoOPDButton(String recordId,String recordTypeId){
+ public static String updateForSIStoOPDButton(String recordId){
Report__c rac = new Report__c();
try {
rac.Id = recordId;
- rac.RecordTypeId = recordTypeId;
+ rac.RecordTypeId = Schema.SObjectType.Report__c.getRecordTypeInfosByName().get(LightingButtonConstant.RECORD_TYPE_NAME_BY_FOLLOW_THE_STAGE).getRecordTypeId();
update rac;
return null;
} catch (Exception e) {
@@ -314,7 +314,7 @@
try {
Report__c rac = new Report__c();
rac.Id = recordId;
- rac.OCSMAdministrativeReportStatus__c = '鏃犻渶鎶ュ憡';
+ rac.OCSMAdministrativeReportStatus__c = LightingButtonConstant.STATUS_TO_NOT_REPORT;
update rac;
} catch (Exception e) {
System.debug(LoggingLevel.INFO, '*** e: ' + e);
@@ -327,24 +327,24 @@
try {
Report__c rac = new Report__c();
rac.Id = recordId;
- rac.Status__c = '鍙栨秷';
+ rac.Status__c = LightingButtonConstant.STATUS_CANCEL;
update rac;
} catch (Exception e) {
System.debug(LoggingLevel.INFO, '*** e: ' + e);
}
}
-
+ //VOC缁撴灉纭鏇存柊鐩稿簲鏁版嵁
@AuraEnabled
public static void updateForVOCConfirmButton(String recordId,String Satisfy,String Satisfy1){
try {
Report__c rac = new Report__c();
rac.Id = recordId;
- if (Satisfy == '鏄�') {
- rac.Status__c = '缁撴灉纭瀹屾瘯';
- } else if (Satisfy == '鍚�') {
+ if (Satisfy == LightingButtonConstant.CN_YES) {
+ rac.Status__c = LightingButtonConstant.STATUS_VOC_CONFIRMED;
+ } else if (Satisfy == LightingButtonConstant.CN_NO) {
// 瀵惧繙绲愭灉锛堜竴鍥炵洰锛夈伀鍊ゃ仾銇戙倢銇般�佷竴鍥炵洰銇�屽惁銆嶃仺瑕嬨仾銇�
- if (Satisfy1 != '鍚�') {
+ if (Satisfy1 != LightingButtonConstant.CN_NO) {
Report__c[] records = [SELECT Id, VOC_Satisfy__c, VOC_Unsatisfy_Reason__c, VOC_follow_up_result__c, VOC_solution_category__c FROM Report__c WHERE Id = :recordId];
rac.VOC_Satisfy__c = null;
rac.VOC_Unsatisfy_Reason__c = null;
@@ -354,11 +354,11 @@
rac.VOC_Unsatisfy_Reason1__c = records[0].VOC_Unsatisfy_Reason__c;
rac.VOC_follow_up_result1__c = records[0].VOC_follow_up_result__c;
rac.VOC_solution_category1__c = records[0].VOC_solution_category__c;
- rac.Status__c = '鑽夋涓�';
+ rac.Status__c = LightingButtonConstant.STATUS_DRAFT;
}
// 瀵惧繙绲愭灉锛堜竴鍥炵洰锛夈伀鍊ゃ亗銈屻伆銆佷簩鍥炵洰銇�屽惁銆嶃仺瑕嬨仾銇�
else {
- rac.Status__c = '缁撴灉纭瀹屾瘯';
+ rac.Status__c = LightingButtonConstant.STATUS_VOC_CONFIRMED;
}
}
update rac;
@@ -371,7 +371,7 @@
public static String updateForVOCAnswerButton(String recordId){
try {
Report__c rac = [select Status__c from Report__c where Id = :recordId];
- rac.Status__c = '鍥炵瓟瀹屾瘯';
+ rac.Status__c = LightingButtonConstant.STATUS_VOC_END_OF_ANSWER;
update rac;
return null;
} catch (Exception e) {
@@ -386,13 +386,13 @@
}
}
-
+ //鎻愪氦绔炰簤瀵规墜鎶ュ憡鏇存柊鐩稿簲鏁版嵁
@AuraEnabled
public static void updateForSubmitCompetitorReportButton(String recordId){
try {
Report__c rac = new Report__c();
rac.Id = recordId;
- rac.Status__c = '鐢宠珛涓�';
+ rac.Status__c = LightingButtonConstant.STATUS_VOC_APPLYING;
rac.Submit_time__c = Datetime.now();
rac.Submit_report_day__c = Date.today();
rac.Date__c = Date.today();
@@ -410,23 +410,23 @@
rac.Id = recordId;
User[] records = [SELECT Job_Category__c FROM User WHERE Id = :createdById];
List<String> userAccess = new List<String>();
- if (records[0].Job_Category__c == '閿�鍞湇鍔�') {
- userAccess.add(rac.JingliApprovalManager__c + '_Read');
- userAccess.add(rac.BuchangApprovalManager__c + '_Read');
+ if (records[0].Job_Category__c == LightingButtonConstant.TYPE_OF_SALES_SERVICES) {
+ userAccess.add(rac.JingliApprovalManager__c + LightingButtonConstant.USER_ACCESS_READ);
+ userAccess.add(rac.BuchangApprovalManager__c + LightingButtonConstant.USER_ACCESS_READ);
rac.VOC_CreatedBy_jingli__c = rac.JingliApprovalManager__c;
rac.VOC_CreatedBy_buzhang__c = rac.BuchangApprovalManager__c;
} else {
- userAccess.add(rac.SalesManager__c + '_Read');
- userAccess.add(rac.BuchangApprovalManagerSales__c + '_Read');
+ userAccess.add(rac.SalesManager__c + LightingButtonConstant.USER_ACCESS_READ);
+ userAccess.add(rac.BuchangApprovalManagerSales__c + LightingButtonConstant.USER_ACCESS_READ);
rac.VOC_CreatedBy_jingli__c = rac.SalesManager__c;
rac.VOC_CreatedBy_buzhang__c = rac.BuchangApprovalManagerSales__c;
}
- userAccess.add(rac.ZongjianApprovalManager__c + '_Read');
- String rtn = ControllerUtil.setSObjectShare('Report__Share','VOCShare__c',recordId,userAccess,rac.Owner.Id);
- if (rtn != 'OK') {
+ userAccess.add(rac.ZongjianApprovalManager__c + LightingButtonConstant.USER_ACCESS_READ);
+ String rtn = ControllerUtil.setSObjectShare(LightingButtonConstant.SOBJECT_NAME_OF_REPORT_SHARE,LightingButtonConstant.SOBJECT_NAME_OF_VOC_SHARE,recordId,userAccess,rac.Owner.Id);
+ if (rtn != LightingButtonConstant.OK) {
return;
}
- rac.Status__c = '濉啓瀹屾瘯';
+ rac.Status__c = LightingButtonConstant.STATUS_VOC_WRITE_OVER;
rac.Submit_time__c = Date.today();
rac.Submit_report_day__c = Date.today();
update rac;
@@ -435,14 +435,15 @@
}
}
+ //VOC鍒ゅ畾鏇存柊鐩稿簲鏁版嵁
@AuraEnabled
public static String updateForVOCCheckButton (String recordId,String isVOC,String personId) {
try {
Report__c rac = [select Owner.Id,VOC_jingli__r.Id,VOC_buzhang__r.Id,VOC_zongjian__r.Id,VOC_Finish__c,VOC_share_date__c,Responsible_Person__r.Id from Report__c where Id = :recordId];
- if (isVOC == 'VOC') {
+ if (isVOC == LightingButtonConstant.VOC_NAME) {
// VOC瀵惧繙鑰呫伄绲岀悊閮ㄩ暦绶忕洠銈掕ō瀹�
User[] records = [SELECT Id, Job_Category__c, JingliApprovalManager__c, SalesManager__c, BuchangApprovalManager__c, BuchangApprovalManagerSales__c, ZongjianApprovalManager__c FROM User WHERE Id = :personId];
- if (records[0].job_Category__c == '閿�鍞湇鍔�') {
+ if (records[0].job_Category__c == LightingButtonConstant.TYPE_OF_SALES_SERVICES) {
rac.VOC_jingli__c = records[0].JingliApprovalManager__c == null ? '' : records[0].JingliApprovalManager__c;
rac.VOC_buzhang__c = records[0].BuchangApprovalManager__c == null ? '' : records[0].BuchangApprovalManager__c;
} else {
@@ -450,23 +451,23 @@
rac.VOC_buzhang__c = records[0].BuchangApprovalManagerSales__c == null ? '' : records[0].BuchangApprovalManagerSales__c;
}
rac.VOC_zongjian__c = records[0].ZongjianApprovalManager__c == null ? '' : records[0].ZongjianApprovalManager__c;
- rac.Status__c = '鍒ゅ畾瀹屾瘯';
+ rac.Status__c = LightingButtonConstant.STATUS_VOC_CHECK_OVER;
rac.VOC_Finish__c = false;
Date serverTimestamp = Date.today();
rac.VOC_share_date__c = serverTimestamp;
// share
List<String> userAccess = new List<String>();
- userAccess.add(rac.Responsible_Person__c + '_Edit');
- userAccess.add(rac.VOC_jingli__c + '_Read');
- userAccess.add(rac.VOC_buzhang__c + '_Read');
- userAccess.add(rac.VOC_zongjian__c + '_Read');
- String rtn = ControllerUtil.setSObjectShare('Report__Share','VOCShare__c',recordId,userAccess,rac.Owner.Id);
- if (rtn != 'OK') {
+ userAccess.add(rac.Responsible_Person__c + LightingButtonConstant.USER_ACCESS_EDIT);
+ userAccess.add(rac.VOC_jingli__c + LightingButtonConstant.USER_ACCESS_READ);
+ userAccess.add(rac.VOC_buzhang__c + LightingButtonConstant.USER_ACCESS_READ);
+ userAccess.add(rac.VOC_zongjian__c + LightingButtonConstant.USER_ACCESS_READ);
+ String rtn = ControllerUtil.setSObjectShare(LightingButtonConstant.SOBJECT_NAME_OF_REPORT_SHARE,LightingButtonConstant.SOBJECT_NAME_OF_VOC_SHARE,recordId,userAccess,rac.Owner.Id);
+ if (rtn != LightingButtonConstant.OK) {
return null;
}
update rac;
} else {
- rac.Status__c = '瀹屾瘯';
+ rac.Status__c = LightingButtonConstant.STATUS_VOC_FINISH;
rac.VOC_Finish__c = true;
update rac;
}
@@ -477,11 +478,12 @@
return exc;
}
}
+ //VOC瀹屾瘯鎿嶄綔鏇存柊鐩稿簲鏁版嵁
@AuraEnabled
public static void updateForVOCFinishButton (String recordId) {
try {
Report__c report = [select Id,Status__C from Report__c where Id = :recordId];
- report.Status__c = '瀹屾瘯';
+ report.Status__c = LightingButtonConstant.STATUS_VOC_FINISH;
update report;
} catch (Exception e) {
System.debug(LoggingLevel.INFO, '*** e: ' + e);
--
Gitblit v1.9.1