Example #1
0
 /// <summary>
 /// 提交CS处理
 /// </summary>
 /// <param name="item"></param>
 public virtual void SubmitReplyToCSProcess(ECCentral.BizEntity.SO.SOComplaintCotentInfo item)
 {
     ECCentral.BizEntity.Customer.CustomerInfo customer = ExternalDomainBroker.GetCustomerInfo(item.CustomerSysNo.Value);
     item.CustomerEmail = customer.BasicInfo.Email;
     item.CustomerName  = customer.BasicInfo.CustomerName;
     item.CustomerPhone = customer.BasicInfo.CellPhone;
     ExternalDomainBroker.AddComplain(item);
 }