|
@@ -295,7 +295,7 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
|
|
|
param.IDCardNo = clientIDInfo.CertNo;
|
|
|
param.Remark = item.Remark;
|
|
|
- param.BirthDay = clientInfo.BirthDay;
|
|
|
+ param.BirthDay = clientInfo.BirthDay.Length > 10 ? clientInfo.BirthDay.Substring(0, 10).Replace("/", "-").Trim() : "";
|
|
|
param.FirstName = clientInfo.FirstName;
|
|
|
param.LastName = clientInfo.LastName;
|
|
|
param.CompanyFullName = Company.CompanyFullName;
|
|
@@ -314,8 +314,8 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
|
|
|
GroupProcessOperationDtoParam.PortType = dto.PortType;
|
|
|
GroupProcessOperationDtoParam.TourClientListInfos = TourClientListInfoArr;
|
|
|
- GroupProcessOperationDtoParam.VisitDate = GroupProcessOperationDtoParam.VisitDate.Length > 10 ? GroupProcessOperationDtoParam.VisitDate.Substring(0, 10).Replace("/","-") : "";
|
|
|
- GroupProcessOperationDtoParam.TontractTime = GroupProcessOperationDtoParam.TontractTime.Length > 10 ? GroupProcessOperationDtoParam.TontractTime.Substring(0, 10).Replace("/","-") : "";
|
|
|
+ GroupProcessOperationDtoParam.VisitDate = GroupProcessOperationDtoParam.VisitDate.Length > 10 ? GroupProcessOperationDtoParam.VisitDate.Substring(0, 10).Replace("/","-").Trim() : "";
|
|
|
+ GroupProcessOperationDtoParam.TontractTime = GroupProcessOperationDtoParam.TontractTime.Length > 10 ? GroupProcessOperationDtoParam.TontractTime.Substring(0, 10).Replace("/","-").Trim() : "";
|
|
|
|
|
|
result.Data = GroupProcessOperationDtoParam;
|
|
|
}
|
|
@@ -513,7 +513,7 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
SpecialNeeds = dto.SpecialNeeds,
|
|
|
OtherNeeds = dto.OtherNeeds,
|
|
|
Remark = dto.Remark,
|
|
|
- JietuanOperator = dto.UserId,
|
|
|
+ JietuanOperator = dto.JietuanOperator,
|
|
|
TellPhone = dto.TellPhone,
|
|
|
CGRWSPBMMC = dto.CGRWSPBMMC,
|
|
|
CGRWSPWH = dto.CGRWSPWH,
|