From df4601a9026b57f78c0b1b6619e366525d13f9fc Mon Sep 17 00:00:00 2001
From: chenjingwu <chenjingwu@prec-tech.com>
Date: 星期四, 11 四月 2024 19:26:35 +0800
Subject: [PATCH] 123

---
 force-app/main/default/lwc/lexNewQuoteEntry/lexNexQuoteEntryUtil.js |   35 ++++++++++++++++++++++++++++++++++-
 1 files changed, 34 insertions(+), 1 deletions(-)

diff --git a/force-app/main/default/lwc/lexNewQuoteEntry/lexNexQuoteEntryUtil.js b/force-app/main/default/lwc/lexNewQuoteEntry/lexNexQuoteEntryUtil.js
index bac488e..101e001 100644
--- a/force-app/main/default/lwc/lexNewQuoteEntry/lexNexQuoteEntryUtil.js
+++ b/force-app/main/default/lwc/lexNewQuoteEntry/lexNexQuoteEntryUtil.js
@@ -4,6 +4,7 @@
 export var DataStatus;
 export var newQuoteFlagex;
 export var MultiYearWarrantyTotalPriceExport;
+export var ExtendedWarrantyAmountTotalPriceExport;
 export var newQuoteFlagExp;
 export var productStatusUpdatedExp;
 export var quoExp;
@@ -207,6 +208,22 @@
         },
         // chenjingwu 3+2澶氬勾淇濅慨 20240318 start
         {
+            label: '寤朵繚閲戦',
+            fieldName: 'exPrice',
+            // editable: true,
+            cellAttributes: {
+                class: {},
+                alignment: 'right',
+            },
+            type: 'number', 
+            typeAttributes: {
+                minimumFractionDigits: '2',
+                maximumFractionDigits: '2'
+            },
+            hideDefaultActions: true,
+            initialWidth: 150
+        },
+        {
             label: '寤朵繚骞撮檺',
             fieldName: 'Learning_Community',
             type: 'picklistColumn',
@@ -218,7 +235,7 @@
             },
             hideDefaultActions: true,
             initialWidth: 300
-        },
+        }
         // chenjingwu 3+2澶氬勾淇濅慨 20240318 end
         
     ],
@@ -1259,6 +1276,7 @@
         contractmultiYearWarranty = quo.multiYearWarranty__c;
     }
     var MultiYearWarrantyTotalPrice__c = 0.00;
+    var  ExtendedWarrantyAmountTotalPrice__c = 0.00;
     jzDataToBeproduct.forEach(jzdtbt=>{
         var GuranteeType =jzdtbt.pageObject.GuranteeType__c;
         // 淇濅慨绫诲瀷
@@ -1292,6 +1310,7 @@
             warrantyType = '甯傚満澶氬勾淇濅慨';
             var Quantity =jzdtbt.Quantity__c;
             MultiYearWarrantyTotalPrice__c = MultiYearWarrantyTotalPrice__c + localParseFloat(ServicePrice) * localParseFloat(Quantity);
+            ExtendedWarrantyAmountTotalPrice__c = ExtendedWarrantyAmountTotalPrice__c + localParseFloat(jzdtbt.exPrice) * localParseFloat(Quantity);
             NoDiscountTotal = localParseFloat(ServicePrice) * localParseFloat(Quantity);
         }
         else if (GuranteeType == '甯傚満' && contractmultiYearWarranty && CanNotCancelledGurantee) {
@@ -1302,6 +1321,7 @@
             // 鏁伴噺
             var Quantity = jzdtbt.Quantity__c;
             MultiYearWarrantyTotalPrice__c = MultiYearWarrantyTotalPrice__c + localParseFloat(ServicePrice) * localParseFloat(Quantity);
+            ExtendedWarrantyAmountTotalPrice__c = ExtendedWarrantyAmountTotalPrice__c + localParseFloat(jzdtbt.exPrice) * localParseFloat(Quantity);
             NoDiscountTotal = localParseFloat(ServicePrice) * localParseFloat(Quantity);
         }
         else if (GuranteeType == '甯傚満') {
@@ -1374,6 +1394,7 @@
 
     });
     MultiYearWarrantyTotalPriceExport = MultiYearWarrantyTotalPrice__c;
+    ExtendedWarrantyAmountTotalPriceExport= ExtendedWarrantyAmountTotalPrice__c;
     return jzDataToBeproduct;
 }
 export function initQuoteLineItemcheck(quoteLineItem,productStatusUpdated){
@@ -2168,6 +2189,7 @@
         quoc:quoCan};
 }
 export function onsaveToBeproductLoc(data,jzDataToBeproduct){
+    debugger
     var dataMap = new Map();
     var fag = false;
     data.forEach(item=>{
@@ -2196,12 +2218,23 @@
                 // jzdtbt.UnitPrice_Page__c = toNumComma(datavaue.UnitPrice_Page__c);
                 jzdtbt.UnitPrice_Page__c = datavaue.UnitPrice_Page__c;
             }
+            console.log("saf");
+            console.log(jzdtbt);
             if(datavaue.Learning_Community){
                 jzdtbt.Learning_Community = datavaue.Learning_Community;
+                jzdtbt.multiYearWarrantyList.forEach(item=>{
+                    if('' + (item.AgeLimit__c) == jzdtbt.Learning_Community){
+                        jzdtbt.exPrice = item.MultiOneYearWarrantyPrice__c;
+                    }
+                });
+                if(jzdtbt.exPrice == null || jzdtbt.exPrice == '' || jzdtbt.exPrice == undefined){
+                    jzdtbt.exPrice = 0;
+                }
             }
             x = localParseInt(jzdtbt.Quantity__c);
             y = localParseFloat(jzdtbt.UnitPrice_Page__c);
             c = localParseFloat(jzdtbt.Cost_c);
+            e = localParseFloat(jzdtbt.exPrice);
             z = x * y;
             // jzdtbt.Subtotal__c = toNumComma(z)
             jzdtbt.Subtotal__c = z

--
Gitblit v1.9.1