From fbd4bea7bd57b4d4a33cb9ed0ebc15d9bf6551c0 Mon Sep 17 00:00:00 2001
From: 19626 <1962676589@qq.com>
Date: 星期三, 12 七月 2023 17:54:54 +0800
Subject: [PATCH] 近日更新按钮,页面以及apex类
---
force-app/main/default/classes/lexSolutionProjectRequirementsController.cls | 37 +++++++++++++++++++++++++++++++++----
1 files changed, 33 insertions(+), 4 deletions(-)
diff --git a/force-app/main/default/classes/lexSolutionProjectRequirementsController.cls b/force-app/main/default/classes/lexSolutionProjectRequirementsController.cls
index 0b4b579..1190457 100644
--- a/force-app/main/default/classes/lexSolutionProjectRequirementsController.cls
+++ b/force-app/main/default/classes/lexSolutionProjectRequirementsController.cls
@@ -1,22 +1,45 @@
public with sharing class lexSolutionProjectRequirementsController {
@AuraEnabled
- public static InitData initSubmitSolutionForApprovalButton(String recordId){
+ public static Map<String,Object> initSubmitSolutionForApprovalButton(String recordId){
InitData res = new InitData();
+ Map<String,Object> maps = new Map<String,Object>();
try {
SolutionProjectRequirements__c so = [
select
Status__c,
Submit_Date_YouWant__c,
CreatedDate,
- Department_Class__r.Id,
+ Department_Class__c,
Product_Leader__c
from SolutionProjectRequirements__c where Id =: recordId
];
res.status = so.Status__c;
res.submitDateYouWant = so.Submit_Date_YouWant__c;
res.createdDate = so.CreatedDate;
- res.departmentClassId = so.Department_Class__r.Id;
+ res.departmentClassId = so.Department_Class__c;
res.productLeader = so.Product_Leader__c;
+ res.userId = UserInfo.getUserId();
+ res.userName = UserInfo.getUserName();
+ maps.put('res', res);
+ } catch (Exception e) {
+ String message = e.getMessage();
+ maps.put('error', message);
+ return maps;
+ }
+ return maps;
+ }
+ @AuraEnabled
+ public static InitData initForApplyAgainButton(String recordId){
+ InitData res = new InitData();
+ try {
+ SolutionProjectRequirements__c so = [
+ select
+ Department_Class__c,
+ Hospital__c
+ from SolutionProjectRequirements__c where Id =: recordId
+ ];
+ res.hospital = so.Hospital__c;
+ res.departmentClass = so.Department_Class__c;
} catch (Exception e) {
throw new AuraHandledException(e.getMessage());
}
@@ -34,7 +57,7 @@
];
res.status = so.Status__c;
res.profileId = UserInfo.getProfileId();
- res.m2ProfileId = lexLightingButtonConstant.M2_PROFILE_NAME;
+ res.m2ProfileId = [select Id from Profile where Name =: lexLightingButtonConstant.M2_PROFILE_NAME].Id;
} catch (Exception e) {
throw new AuraHandledException(e.getMessage());
}
@@ -133,5 +156,11 @@
public String profileId;
@AuraEnabled
public String m2ProfileId;
+ @AuraEnabled
+ public String oldProjectNo;
+ @AuraEnabled
+ public String departmentClass;
+ @AuraEnabled
+ public String hospital;
}
}
\ No newline at end of file
--
Gitblit v1.9.1