From 9c43ce3f3bf2d0a2f70b73a4ba89eccf5030a683 Mon Sep 17 00:00:00 2001
From: 19626 <1962676589@qq.com>
Date: 星期三, 10 五月 2023 17:54:00 +0800
Subject: [PATCH] 查漏补缺

---
 force-app/main/default/classes/MonthlyReportController.cls |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/force-app/main/default/classes/MonthlyReportController.cls b/force-app/main/default/classes/MonthlyReportController.cls
index e1d3f65..9b43a8e 100644
--- a/force-app/main/default/classes/MonthlyReportController.cls
+++ b/force-app/main/default/classes/MonthlyReportController.cls
@@ -28,8 +28,7 @@
             Feedback__c,
             Task_follow__c,
             Other_issue__c,
-            Next_week_plan__c,
-            Dr_Sum_URL__c
+            Next_week_plan__c
             FROM Monthly_Report__c WHERE Id = :recordId LIMIT 1];
             String userName = UserInfo.getUserName();
             User activeUser = [Select Email From User where Username = : userName limit 1];
@@ -41,9 +40,7 @@
             res.taskFollow = report.Task_follow__c;
             res.otherIssue = report.Other_issue__c;
             res.nextWeekPlan = report.Next_week_plan__c;
-            res.drSumUrl = report.Dr_Sum_URL__c;
             res.userEmail = activeUser.Email;
-            
             System.debug(LoggingLevel.INFO, '*** res: ' + res);
         }catch(Exception e){
             System.debug(LoggingLevel.INFO, '*** e: ' + e);

--
Gitblit v1.9.1