From 9b197b7fac92278fb591ea8f4942c7d5687cb5ce Mon Sep 17 00:00:00 2001
From: 李金换 <lijinhuan@prec-tech.com>
Date: 星期一, 28 三月 2022 18:01:22 +0800
Subject: [PATCH] LJPH-C8FB4P【委托】配合PBI设备覆盖率的数据准备0328

---
 force-app/main/default/classes/OrdergoodsControllerTest.cls |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/force-app/main/default/classes/OrdergoodsControllerTest.cls b/force-app/main/default/classes/OrdergoodsControllerTest.cls
index bb822aa..518d1bf 100644
--- a/force-app/main/default/classes/OrdergoodsControllerTest.cls
+++ b/force-app/main/default/classes/OrdergoodsControllerTest.cls
@@ -7,6 +7,10 @@
         if (rectCo.size() == 0) {
             throw new ControllerUtil.myException('not found 鍔炰簨澶� recodetype');
         }
+        Account account2 = new Account();
+		account2.Name = 'test1缁忛攢鍟�';
+        account2.RecordTypeId = '01210000000Qem1';
+        insert account2;
         // 瀹㈡埛
         Account account = new Account();
         account.RecordTypeId = rectCo[0].Id;
@@ -14,6 +18,7 @@
         account.Name = 'Katsu 銉嗐偣銉�';
         account.Quolified_Approve_Status__c = 'Draft';
         account.If_Need_Quolified__c = true;
+        account.ParentId = account2.Id;
         insert account;
 
         Product2 product = new Product2();
@@ -147,12 +152,17 @@
             throw new ControllerUtil.myException('not found 鍔炰簨澶� recodetype');
         }
         // 瀹㈡埛
+        Account account2 = new Account();
+		account2.Name = 'test1缁忛攢鍟�';
+        account2.RecordTypeId = '01210000000Qem1';
+        insert account2;
         Account account = new Account();
         account.RecordTypeId = rectCo[0].Id;
         account.Phone = '13888888888';
         account.Name = 'Katsu 銉嗐偣銉�';
         account.Quolified_Approve_Status__c = 'Draft';
         account.If_Need_Quolified__c = true;
+        account.ParentId = account2.Id;
         insert account;
         //鏌ヤ笉鍑轰换浣曟牱鏈搧,SFDA_Status__c浼氳瑙﹀彂鍣ㄤ慨鏀逛负鍋滄
         Product2 product = new Product2();

--
Gitblit v1.9.1