| | |
| | | public String productName; |
| | | // CHAN-C9P5WM 20211216 ssm 增加产品型号和产品名称 end |
| | | |
| | | //lt 20220223 CHAN-CBW9FX 特殊交货期影响的对应 start |
| | | public String DeliveryDate; |
| | | //lt 20220223 CHAN-CBW9FX 特殊交货期影响的对应 end |
| | | |
| | | } |
| | | |
| | | /* |
| | |
| | | // CHAN-C9P5WM 20211216 ssm 增加科室名 end |
| | | PricebookEntry.Product2.Packing_list_manual__c, |
| | | PricebookEntry.Product2.GuranteeType__c |
| | | |
| | | //lt 20220223 CHAN-CBW9FX 特殊交货期影响的对应 start |
| | | ,PricebookEntry.Product2.DeliveryDate__c |
| | | //lt 20220223 CHAN-CBW9FX 特殊交货期影响的对应 end |
| | | |
| | | from OpportunityLineItem |
| | | where OpportunityId in :oppIds]; |
| | | |
| | |
| | | detail.ProductCode = oppLine.ProductCode__c; // 产品编码(指OTCode); |
| | | // 数量 |
| | | detail.Quantity = oppLine.Quantity; |
| | | |
| | | //lt 20220223 CHAN-CBW9FX 特殊交货期影响的对应 交货期 start |
| | | detail.DeliveryDate = oppLine.PricebookEntry.Product2.DeliveryDate__c; |
| | | //lt 20220223 CHAN-CBW9FX 特殊交货期影响的对应 end |
| | | |
| | | // LHJ SWAG-C9F9P8 20211206 增加规格 Start |
| | | // 规格 |
| | | detail.Packing = oppLine.PricebookEntry.Product2.Packing_list_manual__c; |