| | |
| | | // CHAN-C9P5WM 20211216 ssm 增加科室名 start |
| | | public String DepartmentName; |
| | | // CHAN-C9P5WM 20211216 ssm 增加科室名 end |
| | | |
| | | |
| | | public String winBiddingDate;//SWAG-CCL6R7 2022-3-22 yjk 增加中标日 |
| | | |
| | | } |
| | | |
| | | public class Detail_element { |
| | |
| | | // CHAN-C9P5WM 20211216 ssm 增加科室名 start |
| | | Department_Name__c, |
| | | // CHAN-C9P5WM 20211216 ssm 增加科室名 end |
| | | |
| | | //SWAG-CCL6R7 2022-3-22 yjk 增加中标日 start |
| | | Closing_Bid_Date_Bid__c, |
| | | Closing_Bid_Date__c, |
| | | //SWAG-CCL6R7 2022-3-22 yjk 增加中标日 end |
| | | Account.RecordType.DeveloperName |
| | | |
| | | from Opportunity |
| | |
| | | quotation.DepartmentName = opp.Department_Name__c; |
| | | // CHAN-C9P5WM 20211216 ssm 增加科室名 end |
| | | |
| | | //SWAG-CCL6R7 2022-3-22 yjk 增加中标日 start |
| | | quotation.winBiddingDate = opp.Closing_Bid_Date_Bid__c ==null? NFMUtil.formatDate2Str(opp.Closing_Bid_Date__c) : NFMUtil.formatDate2Str(opp.Closing_Bid_Date_Bid__c); |
| | | //SWAG-CCL6R7 2022-3-22 yjk 增加中标日 end |
| | | // 产品 |
| | | List<OpportunityLineItem> oppLineList = oppIDMap.get(opp.id); |
| | | quotation.Items = new List<Detail_element>(); |