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/lwc/lexSubmitSolutionForApproval/lexSubmitSolutionForApproval.js |   31 +++++++++++++++++++------------
 1 files changed, 19 insertions(+), 12 deletions(-)

diff --git a/force-app/main/default/lwc/lexSubmitSolutionForApproval/lexSubmitSolutionForApproval.js b/force-app/main/default/lwc/lexSubmitSolutionForApproval/lexSubmitSolutionForApproval.js
index 08d011f..e7c5194 100644
--- a/force-app/main/default/lwc/lexSubmitSolutionForApproval/lexSubmitSolutionForApproval.js
+++ b/force-app/main/default/lwc/lexSubmitSolutionForApproval/lexSubmitSolutionForApproval.js
@@ -4,7 +4,7 @@
  * @Author: chen jing wu
  * @Date: 2023-06-20 14:37:24
  * @LastEditors: chen jing wu
- * @LastEditTime: 2023-06-20 17:50:52
+ * @LastEditTime: 2023-07-07 16:11:12
  */
 import { api, wire,LightningElement } from 'lwc';
 import { CurrentPageReference } from "lightning/navigation";
@@ -58,13 +58,18 @@
         init({
             recordId: this.recordId
         }).then(result=>{
-            this.status = result.status;
-            this.submitDateYouWant = result.submitDateYouWant;
-            this.createdDate = result.createdDate;
-            this.departmentClassId = result.departmentClassId;
-            this.userId = result.userId;
-            this.userName = result.userName;
-            this.submitSolutionForApproval();
+            console.log(result);
+            if(result.res){
+                this.status = result.res.status;
+                this.submitDateYouWant = new Date(result.res.submitDateYouWant);
+                // this.createdDate = result.res.createdDate;
+                this.createdDate = new Date(result.res.createdDate);
+                this.productLeader = result.res.productLeader;
+                this.departmentClassId = result.res.departmentClassId;
+                this.userId = result.res.userId;
+                this.userName = result.res.userName;
+                this.submitSolutionForApproval();
+            }
         });
     }
 
@@ -74,24 +79,27 @@
             this.dispatchEvent(new CloseActionScreenEvent());
             return;
         }
+
         if(this.submitDateYouWant < this.createdDate + 3){
             this.showToast('甯屾湜鎻愪氦鏃ユ湡涓嶅緱灏忎簬涓夊ぉ锛屽绱ф�ラ渶姹傝閭欢鑱旂粶Solution鎷呭綋','error');
             this.dispatchEvent(new CloseActionScreenEvent());
             return;
         }
+        console.log("start");
         queryForAttachments({
             Id: this.departmentClassId
         }).then(result=>{
+            console.log("start");
             var records = result;
             var header = this.productLeader;
             var usrname = this.userName;
             var rtn = '';
-            if(header.contains(usrname.replaceAll(' ', ''))){
+            console.log("start");
+            if(header.includes(usrname)){
                 rtn = 'Y';
             }else{
                 rtn = 'N';
             }
-            
             if(records.length > 0){
                 if(rtn != 'Y' && this.userId != records[0].Department_Class__r.OwnerId && this.userId != records[0].Department_Class__r.Owner.SalesManager__c){
                     this.showToast('鍙厑鍏舵垬鐣ョ瀹や富鎷呫�佷骇鍝佹媴褰撳強鐪佺粡鐞嗘彁浜olution椤圭洰闇�姹傦紒','error');
@@ -99,8 +107,6 @@
                     return;
                 }
             }
-
-            //111111111111111111111111111111111111111111
             this.handleConfirmClick('涓�鏃︽彁浜ゆ璁板綍浠ュ緟鎵瑰噯锛屾牴鎹偍鐨勮缃偍鍙兘涓嶅啀鑳藉缂栬緫姝よ褰曟垨灏嗕粬浠庢壒鍑嗚繃绋嬩腑璋冨洖銆傛槸鍚︾户缁紵');
             
         });
@@ -135,6 +141,7 @@
                     return;
                 }
                 this.updateRecordView(this.recordId);
+                this.dispatchEvent(new CloseActionScreenEvent());
             });
             // isopd.Id = "{!SolutionProjectRequirements__c.Id}";
             // isopd.Submint_TF__c = true;

--
Gitblit v1.9.1