public WA.Standard.IF.Data.v2.Common.Appointment.AppointmentGetResponse AppointmentGet(WA.Standard.IF.Data.v2.Common.Appointment.AppointmentGetRequest request) { WA.Standard.IF.Data.v2.Common.Appointment.AppointmentGetResponse response = new WA.Standard.IF.Data.v2.Common.Appointment.AppointmentGetResponse(); #region 1C.v8241.v2 - RTR.Standard.IF.WebService #region AppointmentGet Request Set //Create proxy credential NetworkCredential proxycredential = new NetworkCredential(request.TransactionHeader.Username, request.TransactionHeader.Password); //Create proxy web service from dms web service with credential _1C.v8241.Appointment.Appointment proxyws = new _1C.v8241.Appointment.Appointment(); proxyws.Credentials = proxycredential; //Create proxy request with appointmentget and transaction _1C.v8241.Appointment.AppointmentGetRequest proxyrequest = new _1C.v8241.Appointment.AppointmentGetRequest(); //Create proxy transaction _1C.v8241.Appointment.TransactionHeader proxytransactionheader = new _1C.v8241.Appointment.TransactionHeader(); if (request.TransactionHeader != null) { #region//TransactionHeader Set proxytransactionheader.CountryID = request.TransactionHeader.CountryID; proxytransactionheader.DealerID = request.TransactionHeader.DealerID; proxytransactionheader.DistributorID = request.TransactionHeader.DistributorID; proxytransactionheader.DMSCode = request.TransactionHeader.DMSCode; proxytransactionheader.DMSServerUrl = request.TransactionHeader.DMSServerUrl; proxytransactionheader.DMSVersion = request.TransactionHeader.DMSVersion; proxytransactionheader.DocumentVersion = request.TransactionHeader.DocumentVersion; proxytransactionheader.GroupID = request.TransactionHeader.GroupID; proxytransactionheader.IneterfaceID = request.TransactionHeader.IneterfaceID; proxytransactionheader.Password = request.TransactionHeader.Password; proxytransactionheader.PollingToken = request.TransactionHeader.PollingToken; proxytransactionheader.RequestPollingToken = request.TransactionHeader.RequestPollingToken; proxytransactionheader.RequestType = request.TransactionHeader.RequestType; proxytransactionheader.TransactionId = request.TransactionHeader.TransactionId; proxytransactionheader.TransactionDateTimeLocal = request.TransactionHeader.TransactionDateTimeLocal; proxytransactionheader.TransactionDateTimeLocalSpecified = request.TransactionHeader.TransactionDateTimeLocal != null;//수정필요 proxytransactionheader.TransactionDateTimeUTC = request.TransactionHeader.TransactionDateTimeLocal; proxytransactionheader.TransactionDateTimeUTCSpecified = request.TransactionHeader.TransactionDateTimeLocal != null;//수정필요 proxytransactionheader.TransactionType = request.TransactionHeader.TransactionType; proxytransactionheader.Username = request.TransactionHeader.Username; proxytransactionheader.VenderTrackingCode = request.TransactionHeader.VenderTrackingCode; proxyrequest.TransactionHeader = proxytransactionheader; proxyws.Url = string.Format("{0}/rtr-atest/ws/Appointment.1cws", proxytransactionheader.DMSServerUrl); #endregion } //Create proxy appointmentget _1C.v8241.Appointment.AppointmentGet proxyappointmentget = new _1C.v8241.Appointment.AppointmentGet(); if (request.AppointmentGet != null) { #region//AppointmentGet Set proxyappointmentget.AppointmentDateTimeFromLocal = request.AppointmentGet.AppointmentDateTimeFromLocal; proxyappointmentget.AppointmentDateTimeFromLocalSpecified = request.AppointmentGet.AppointmentDateTimeFromLocal != null;//수정필요 proxyappointmentget.AppointmentDateTimeToLocal = request.AppointmentGet.AppointmentDateTimeFromLocal; proxyappointmentget.AppointmentDateTimeToLocalSpecified = request.AppointmentGet.AppointmentDateTimeFromLocal != null;//수정필요 proxyappointmentget.DMSAppointmentID = request.AppointmentGet.DMSAppointmentID; proxyappointmentget.DMSAppointmentNo = request.AppointmentGet.DMSAppointmentNo; proxyappointmentget.DMSAppointmentStatus = Map.SetDMSCodeFromWACode(CodeType.DMSAppointmentStatus, request.AppointmentGet.DMSAppointmentStatus); proxyappointmentget.LastModifiedDateTimeFromUTC = request.AppointmentGet.LastModifiedDateTimeFromUTC; proxyappointmentget.LastModifiedDateTimeFromUTCSpecified = request.AppointmentGet.LastModifiedDateTimeFromUTC != null;//수정필요 proxyappointmentget.LastModifiedDateTimeToUTC = request.AppointmentGet.LastModifiedDateTimeToUTC; proxyappointmentget.LastModifiedDateTimeToUTCSpecified = request.AppointmentGet.LastModifiedDateTimeToUTC != null;//수정필요 proxyappointmentget.SAEmployeeID = request.AppointmentGet.SAEmployeeID; proxyappointmentget.SAEmployeeName = request.AppointmentGet.SAEmployeeName; proxyappointmentget.TCEmployeeID = request.AppointmentGet.TCEmployeeID; proxyappointmentget.TCEmployeeName = request.AppointmentGet.TCEmployeeName; if (request.AppointmentGet.Customer != null) { _1C.v8241.Appointment.CustomerGet proxycustomer = new _1C.v8241.Appointment.CustomerGet(); proxycustomer.DMSCustomerNo = request.AppointmentGet.Customer.DMSCustomerNo; proxycustomer.LastName = request.AppointmentGet.Customer.LastName; if (request.AppointmentGet.Customer.Contacts != null && request.AppointmentGet.Customer.Contacts.Count > 0) { int cnt = 0; proxycustomer.Contacts = new _1C.v8241.Appointment.Contact[request.AppointmentGet.Customer.Contacts.Count]; foreach (WA.Standard.IF.Data.v2.Common.Appointment.Contact contact in request.AppointmentGet.Customer.Contacts) { _1C.v8241.Appointment.Contact proxycontact = new _1C.v8241.Appointment.Contact(); proxycontact.ContactType = Map.SetDMSCodeFromWACode(CodeType.ContactType, contact.ContactType); proxycontact.ContactValue = contact.ContactValue; proxycustomer.Contacts[cnt] = proxycontact; cnt++; } } proxyappointmentget.CustomerGet = proxycustomer; } proxyrequest.AppointmentGet = proxyappointmentget; #endregion } #endregion //Run proxy web method with proxy request WA.Standard.IF.Logger.Log.Log.SaveXMLLog(0, request.TransactionHeader.DealerID, "DMS AppointmentGetRequest XML", proxyrequest); _1C.v8241.Appointment.AppointmentGetResponse proxyresponse = proxyws.AppointmentGet(proxyrequest); WA.Standard.IF.Logger.Log.Log.SaveXMLLog(0, request.TransactionHeader.DealerID, "DMS AppointmentGetResponse XML", proxyresponse); //Mapping with Standard Interface Specification Object if (proxyresponse != null) { if (proxyresponse.TransactionHeader != null) { #region//TransactionHeader Set WA.Standard.IF.Data.v2.Common.Common.TransactionHeader transactionheader = new WA.Standard.IF.Data.v2.Common.Common.TransactionHeader(); transactionheader.CountryID = proxyresponse.TransactionHeader.CountryID; transactionheader.DealerID = proxyresponse.TransactionHeader.DealerID; transactionheader.DistributorID = proxyresponse.TransactionHeader.DistributorID; transactionheader.DMSCode = proxyresponse.TransactionHeader.DMSCode; transactionheader.DMSServerUrl = proxyresponse.TransactionHeader.DMSServerUrl; transactionheader.DMSVersion = proxyresponse.TransactionHeader.DMSVersion; transactionheader.DocumentVersion = proxyresponse.TransactionHeader.DocumentVersion; transactionheader.GroupID = proxyresponse.TransactionHeader.GroupID; transactionheader.IneterfaceID = proxyresponse.TransactionHeader.IneterfaceID; transactionheader.Password = proxyresponse.TransactionHeader.Password; transactionheader.PollingToken = proxyresponse.TransactionHeader.PollingToken; transactionheader.RequestPollingToken = proxyresponse.TransactionHeader.RequestPollingToken; transactionheader.RequestType = proxyresponse.TransactionHeader.RequestType; transactionheader.TransactionId = proxyresponse.TransactionHeader.TransactionId; transactionheader.TransactionDateTimeLocal = proxyresponse.TransactionHeader.TransactionDateTimeLocal; transactionheader.TransactionDateTimeUTC = proxyresponse.TransactionHeader.TransactionDateTimeUTC; transactionheader.TransactionType = proxyresponse.TransactionHeader.TransactionType; transactionheader.Username = proxyresponse.TransactionHeader.Username; transactionheader.VenderTrackingCode = proxyresponse.TransactionHeader.VenderTrackingCode; response.TransactionHeader = transactionheader; #endregion } //ResultMessage Set if (proxyresponse.ResultMessage != null) { response.ResultMessage = GetResultMessageData(proxyresponse.ResultMessage.Code, proxyresponse.ResultMessage.Message); } if (proxyresponse.Errors != null) { //Error List Set foreach (_1C.v8241.Appointment.Error proxyerror in proxyresponse.Errors) { if (response.Errors != null) response.Errors.Add(GetErrorData(proxyerror.Code, proxyerror.Message)); else response.Errors = GetErrorDataList(proxyerror.Code, proxyerror.Message); } } else { #region//AppointmentGetResponse Set if (proxyresponse.Appointments != null && proxyresponse.Appointments.Length > 0) { response.Appointments = new List<WA.Standard.IF.Data.v2.Common.Appointment.Appointment>(); foreach (_1C.v8241.Appointment.Appointment1 proxyappointment in proxyresponse.Appointments) { #region //Appointment Header WA.Standard.IF.Data.v2.Common.Appointment.Appointment appointment = new WA.Standard.IF.Data.v2.Common.Appointment.Appointment(); appointment.AppointmentDateTimeLocal = proxyappointment.AppointmentDateTimeLocal; appointment.CloseDateTimeLocal = proxyappointment.CloseDateTimeLocal; appointment.CustomerComment = proxyappointment.CustomerComment; appointment.DeliveryDateTimeLocal = proxyappointment.DeliveryDateTimeLocal; appointment.DMSAppointmentID = proxyappointment.DMSAppointmentID; appointment.DMSAppointmentNo = proxyappointment.DMSAppointmentNo; appointment.DMSAppointmentStatus = Map.GetWACodeFromDMSCode(CodeType.DMSAppointmentStatus, proxyappointment.DMSAppointmentStatus); appointment.InMileage = proxyappointment.InMileage; appointment.OpenDateTimeLocal = proxyappointment.OpenDateTimeLocal; appointment.PaymentMethod = Map.GetWACodeFromDMSCode(CodeType.PaymentMethod, proxyappointment.PaymentMethod); appointment.SAEmployeeID = proxyappointment.SAEmployeeID; appointment.SAEmployeeName = proxyappointment.SAEmployeeName; appointment.ServiceType = proxyappointment.ServiceType; appointment.TCEmployeeID = proxyappointment.TCEmployeeID; appointment.TCEmployeeName = proxyappointment.TCEmployeeName; appointment.WorkType = Map.GetWACodeFromDMSCode(CodeType.WorkType, proxyappointment.WorkType); #endregion #region //Appointment AdditionalFields if (proxyappointment.AdditionalFields != null && proxyappointment.AdditionalFields.Length > 0) { appointment.AdditionalFields = new List<WA.Standard.IF.Data.v2.Common.Common.AdditionalField>(); foreach (_1C.v8241.Appointment.AdditionalField proxyadditionalfield in proxyappointment.AdditionalFields) { WA.Standard.IF.Data.v2.Common.Common.AdditionalField additionalfield = new WA.Standard.IF.Data.v2.Common.Common.AdditionalField(); additionalfield.AdditionalFieldName = proxyadditionalfield.AdditionalFieldName; additionalfield.AdditionalFieldValue = proxyadditionalfield.AdditionalFieldValue; appointment.AdditionalFields.Add(additionalfield); } } #endregion #region//Appointment JobRefs if (proxyappointment.JobRefs != null && proxyappointment.JobRefs.Length > 0) { appointment.JobRefs = new List<WA.Standard.IF.Data.v2.Common.Common.JobRef>(); foreach (_1C.v8241.Appointment.JobRef proxyjobref in proxyappointment.JobRefs) { WA.Standard.IF.Data.v2.Common.Common.JobRef jobref = new WA.Standard.IF.Data.v2.Common.Common.JobRef(); jobref.DMSJobNo = proxyjobref.DMSJobNo; jobref.DMSJobStatus = Map.GetWACodeFromDMSCode(CodeType.DMSJobStatus, proxyjobref.DMSJobStatus); appointment.JobRefs.Add(jobref); } } #endregion #region//Appointment ManagementFields if (proxyappointment.ManagementFields != null) { WA.Standard.IF.Data.v2.Common.Common.ManagementFields managementfields = new WA.Standard.IF.Data.v2.Common.Common.ManagementFields(); managementfields.CreateDateTimeUTC = proxyappointment.ManagementFields.CreateDateTimeUTC; managementfields.LastModifiedDateTimeUTC = proxyappointment.ManagementFields.LastModifiedDateTimeUTC; appointment.ManagementFields = managementfields; } #endregion #region//Appointment Options if (proxyappointment.Options != null && proxyappointment.Options.Length > 0) { appointment.Options = new List<WA.Standard.IF.Data.v2.Common.Common.Option>(); foreach (_1C.v8241.Appointment.Option proxyoption in proxyappointment.Options) { WA.Standard.IF.Data.v2.Common.Common.Option option = new WA.Standard.IF.Data.v2.Common.Common.Option(); option.OptionName = proxyoption.OptionName; option.OptionValue = proxyoption.OptionValue; appointment.Options.Add(option); } } #endregion #region//Appointment PriceType if (proxyappointment.PriceType != null) { WA.Standard.IF.Data.v2.Common.Common.PriceType pricetype = new WA.Standard.IF.Data.v2.Common.Common.PriceType(); pricetype.DiscountPrice = proxyappointment.PriceType.DiscountPrice; pricetype.DiscountRate = proxyappointment.PriceType.DiscountRate; pricetype.TotalPrice = proxyappointment.PriceType.TotalPrice; pricetype.TotalPriceIncludeTax = proxyappointment.PriceType.TotalPriceIncludeTax; pricetype.UnitPrice = proxyappointment.PriceType.UnitPrice; appointment.PriceType = pricetype; } #endregion #region//Appointment RORefs if (proxyappointment.RORefs != null && proxyappointment.RORefs.Length > 0) { appointment.RORefs = new List<WA.Standard.IF.Data.v2.Common.Common.RORef>(); foreach (_1C.v8241.Appointment.RORef proxyroref in proxyappointment.RORefs) { WA.Standard.IF.Data.v2.Common.Common.RORef roref = new WA.Standard.IF.Data.v2.Common.Common.RORef(); roref.DMSRONo = proxyroref.DMSRONo; roref.DMSROStatus = Map.GetWACodeFromDMSCode(CodeType.DMSROStatus, proxyroref.DMSROStatus); appointment.RORefs.Add(roref); } } #endregion #region//Appointment Customers if (proxyappointment.Customers != null && proxyappointment.Customers.Length > 0) { appointment.Customers = new List<WA.Standard.IF.Data.v2.Common.Customer.Customer>(); foreach (_1C.v8241.Appointment.Customer proxycustomer in proxyappointment.Customers) { #region//Appointment Customer Header WA.Standard.IF.Data.v2.Common.Customer.Customer customer = new WA.Standard.IF.Data.v2.Common.Customer.Customer(); customer.CardNo = proxycustomer.CardNo; customer.CorporateInfos = customer.CorporateInfos; customer.CustomerInfoType = Map.GetWACodeFromDMSCode(CodeType.CustomerInfoType, proxycustomer.CustomerInfoType); customer.DMSCustomerNo = proxycustomer.DMSCustomerNo; customer.Email = proxycustomer.Email; customer.FirstName = proxycustomer.FirstName; customer.FullName = proxycustomer.FullName; customer.Gender = Map.GetWACodeFromDMSCode(CodeType.Gender, proxycustomer.Gender); customer.LastName = proxycustomer.LastName; customer.MiddleName = proxycustomer.MiddleName; customer.Salutation = proxycustomer.Salutation; #endregion #region//Appointment Customer Addresses if (proxycustomer.Addresses != null && proxycustomer.Addresses.Length > 0) { customer.Addresses = new List<WA.Standard.IF.Data.v2.Common.Customer.Address>(); foreach (_1C.v8241.Appointment.Address proxyaddress in proxycustomer.Addresses) { WA.Standard.IF.Data.v2.Common.Customer.Address address = new WA.Standard.IF.Data.v2.Common.Customer.Address(); address.AddressType = Map.GetWACodeFromDMSCode(CodeType.AddressType, proxyaddress.AddressType); address.City = proxyaddress.City; address.District = proxyaddress.District; address.Flat = proxyaddress.Flat; address.FullAddress = proxyaddress.FullAddress; address.House = proxyaddress.House; address.Housing = proxyaddress.Housing; address.Locality = proxyaddress.Locality; address.Region = proxyaddress.Region; address.Street = proxyaddress.Street; address.ZipCode = proxyaddress.ZipCode; customer.Addresses.Add(address); } } #endregion #region//Appointment Customer Contacts if (proxycustomer.Contacts != null && proxycustomer.Contacts.Length > 0) { customer.Contacts = new List<WA.Standard.IF.Data.v2.Common.Customer.Contact>(); foreach (_1C.v8241.Appointment.Contact proxycontact in proxycustomer.Contacts) { WA.Standard.IF.Data.v2.Common.Customer.Contact contact = new WA.Standard.IF.Data.v2.Common.Customer.Contact(); contact.ContactMethodYN = proxycontact.ContactMethodYN; contact.ContactType = Map.GetWACodeFromDMSCode(CodeType.ContactType, proxycontact.ContactType); contact.ContactValue = proxycontact.ContactValue; customer.Contacts.Add(contact); } } #endregion #region//Appointment Customer SpecialMessage if (proxycustomer.SpecialMessage != null) { WA.Standard.IF.Data.v2.Common.Customer.SpecialMessage specialmessage = new WA.Standard.IF.Data.v2.Common.Customer.SpecialMessage(); specialmessage.Message = proxycustomer.SpecialMessage.Message; customer.SpecialMessage = specialmessage; } #endregion #region//Appointment Customer CorporateInfos if (proxycustomer.CorporateInfos != null && proxycustomer.CorporateInfos.Length > 0) { customer.CorporateInfos = new List<WA.Standard.IF.Data.v2.Common.Customer.CorporateInfo>(); foreach (_1C.v8241.Appointment.CorporateInfo proxycorporateinfo in proxycustomer.CorporateInfos) { WA.Standard.IF.Data.v2.Common.Customer.CorporateInfo corporateinfo = new WA.Standard.IF.Data.v2.Common.Customer.CorporateInfo(); corporateinfo.CorporateInfoName = proxycorporateinfo.CorporateInfoName; corporateinfo.CorporateInfoValue = proxycorporateinfo.CorporateInfoValue; customer.CorporateInfos.Add(corporateinfo); } } #endregion appointment.Customers.Add(customer); } } #endregion #region//Appointment Vehicle if (proxyappointment.Vehicle != null) { if (proxyappointment.Vehicle != null) { #region//Appointment Vehicle Header WA.Standard.IF.Data.v2.Common.Vehicle.Vehicle vehicle = new WA.Standard.IF.Data.v2.Common.Vehicle.Vehicle(); vehicle.Color = proxyappointment.Vehicle.Color; vehicle.Cylinders = proxyappointment.Vehicle.Cylinders; vehicle.DateDelivered = proxyappointment.Vehicle.DateDelivered; vehicle.DateInService = proxyappointment.Vehicle.DateInService; vehicle.DeclinedJob = proxyappointment.Vehicle.DeclinedJob; vehicle.DisplayDescription = proxyappointment.Vehicle.DisplayDescription; vehicle.DMSVehicleNo = proxyappointment.Vehicle.DMSVehicleNo; vehicle.EngineCode = proxyappointment.Vehicle.EngineCode; vehicle.EngineType = proxyappointment.Vehicle.EngineType; vehicle.ExtendedWarranty = proxyappointment.Vehicle.ExtendedWarranty; vehicle.FuelType = proxyappointment.Vehicle.FuelType; vehicle.FullModelName = proxyappointment.Vehicle.FullModelName; vehicle.InsuranceDate = proxyappointment.Vehicle.InsuranceDate; vehicle.LastMileage = proxyappointment.Vehicle.LastMileage; vehicle.LastServiceDate = proxyappointment.Vehicle.LastServiceDate; //vehicle.LastSixVIN = proxyappointment.Vehicle.LastSixVIN;//수정필요 vehicle.LicenseNumber = proxyappointment.Vehicle.LicenseNumber; vehicle.LicensePlateNo = proxyappointment.Vehicle.LicensePlateNo; vehicle.Make = proxyappointment.Vehicle.Make; vehicle.ModelCode = proxyappointment.Vehicle.ModelCode; vehicle.ModelName = proxyappointment.Vehicle.ModelName; vehicle.ModelYear = proxyappointment.Vehicle.ModelYear; vehicle.PendingJob = proxyappointment.Vehicle.PendingJob; vehicle.StockNumber = proxyappointment.Vehicle.StockNumber; vehicle.Trim = proxyappointment.Vehicle.Trim; vehicle.VehicleType = Map.GetWACodeFromDMSCode(CodeType.VehicleType, proxyappointment.Vehicle.VehicleType); vehicle.VIN = proxyappointment.Vehicle.VIN; vehicle.WarrantyMiles = proxyappointment.Vehicle.WarrantyMiles; vehicle.WarrantyMonths = proxyappointment.Vehicle.WarrantyMonths; vehicle.WarrantyStartDate = proxyappointment.Vehicle.WarrantyStartDate; vehicle.EngineNo = proxyappointment.Vehicle.EngineNo; vehicle.ExtendedWarrantyExpireDate = proxyappointment.Vehicle.ExtendedWarrantyExpireDate; #endregion #region//Appointment Vehicle Campaigns if (proxyappointment.Vehicle.Campaigns != null && proxyappointment.Vehicle.Campaigns.Length > 0) { vehicle.Campaigns = new List<WA.Standard.IF.Data.v2.Common.Vehicle.Campaign>(); foreach (_1C.v8241.Appointment.Campaign proxycampaign in proxyappointment.Vehicle.Campaigns) { WA.Standard.IF.Data.v2.Common.Vehicle.Campaign campaign = new WA.Standard.IF.Data.v2.Common.Vehicle.Campaign(); campaign.CampaignDescription = proxycampaign.CampaignDescription; campaign.CampaignID = proxycampaign.CampaignID; campaign.CampaignPerformed = proxycampaign.CampaignPerformed; vehicle.Campaigns.Add(campaign); } } #endregion appointment.Vehicle = vehicle; } } #endregion #region//Appointment RequestItems if (proxyappointment.RequestItems != null && proxyappointment.RequestItems.Length > 0) { appointment.RequestItems = new List<WA.Standard.IF.Data.v2.Common.Common.RequestItem>(); foreach (_1C.v8241.Appointment.RequestItem proxyrequestitem in proxyappointment.RequestItems) { #region//Appointment RequestItem Header WA.Standard.IF.Data.v2.Common.Common.RequestItem requestitem = new WA.Standard.IF.Data.v2.Common.Common.RequestItem(); requestitem.CPSIND = proxyrequestitem.CPSIND; requestitem.RequestCode = proxyrequestitem.RequestCode; requestitem.RequestDescription = proxyrequestitem.RequestDescription; requestitem.ServiceLineNumber = proxyrequestitem.ServiceLineNumber; requestitem.ServiceLineStatus = Map.GetWACodeFromDMSCode(CodeType.ServiceLineStatus, proxyrequestitem.ServiceLineStatus); requestitem.ServiceType = Map.GetWACodeFromDMSCode(CodeType.ServiceType, proxyrequestitem.ServiceType); requestitem.TCEmployeeID = proxyrequestitem.TCEmployeeID; requestitem.TCEmployeeName = proxyrequestitem.TCEmployeeName; requestitem.WorkType = Map.GetWACodeFromDMSCode(CodeType.WorkType, proxyrequestitem.WorkType); #endregion #region//Appointment RequestItem Comments if (proxyrequestitem.Comments != null && proxyrequestitem.Comments.Length > 0) { requestitem.Comments = new List<WA.Standard.IF.Data.v2.Common.Common.Comment>(); foreach (_1C.v8241.Appointment.Comment proxycomment in proxyrequestitem.Comments) { WA.Standard.IF.Data.v2.Common.Common.Comment comment = new WA.Standard.IF.Data.v2.Common.Common.Comment(); comment.DescriptionComment = proxycomment.DescriptionComment; comment.SequenceNumber = proxycomment.SequenceNumber; requestitem.Comments.Add(comment); } } #endregion #region//Appointment RequestItem Descriptions if (proxyrequestitem.Descriptions != null && proxyrequestitem.Descriptions.Length > 0) { requestitem.Descriptions = new List<WA.Standard.IF.Data.v2.Common.Common.Description>(); foreach (_1C.v8241.Appointment.Description proxydescription in proxyrequestitem.Descriptions) { WA.Standard.IF.Data.v2.Common.Common.Description description = new WA.Standard.IF.Data.v2.Common.Common.Description(); description.DescriptionComment = proxydescription.DescriptionComment; description.SequenceNumber = proxydescription.SequenceNumber; requestitem.Descriptions.Add(description); } } #endregion #region//Appointment RequestItem OPCodes if (proxyrequestitem.OPCodes != null && proxyrequestitem.OPCodes.Length > 0) { requestitem.OPCodes = new List<WA.Standard.IF.Data.v2.Common.Common.OPCode>(); foreach (_1C.v8241.Appointment.OPCode proxyopcode in proxyrequestitem.OPCodes) { #region//Appointment RequestItem OPCode Header WA.Standard.IF.Data.v2.Common.Common.OPCode opcode = new WA.Standard.IF.Data.v2.Common.Common.OPCode(); opcode.ActualHours = proxyopcode.ActualHours; opcode.Code = proxyopcode.Code; opcode.Description = proxyopcode.Description; opcode.EstimatedHours = proxyopcode.EstimatedHours; opcode.OPCodeType = Map.GetWACodeFromDMSCode(CodeType.OPCodeType, proxyopcode.OPCodeType); opcode.Quantity = proxyopcode.Quantity; opcode.SequenceNumber = proxyopcode.SequenceNumber; opcode.ServiceType = Map.GetWACodeFromDMSCode(CodeType.ServiceType, proxyopcode.ServiceType); opcode.SkillLevel = proxyopcode.SkillLevel; opcode.Quantity = proxyopcode.Quantity; #endregion #region//Appointment RequestItem OPCode Descriptions if (proxyopcode.Descriptions != null && proxyopcode.Descriptions.Length > 0) { opcode.Descriptions = new List<WA.Standard.IF.Data.v2.Common.Common.Description>(); foreach (_1C.v8241.Appointment.Description proxydescription in proxyopcode.Descriptions) { WA.Standard.IF.Data.v2.Common.Common.Description description = new WA.Standard.IF.Data.v2.Common.Common.Description(); description.DescriptionComment = proxydescription.DescriptionComment; description.SequenceNumber = proxydescription.SequenceNumber; opcode.Descriptions.Add(description); } } #endregion #region//Appointment RequestItem OPCode Causes if (proxyopcode.Causes != null && proxyopcode.Causes.Length > 0) { opcode.Causes = new List<WA.Standard.IF.Data.v2.Common.Common.Cause>(); foreach (_1C.v8241.Appointment.Cause proxycause in proxyopcode.Causes) { WA.Standard.IF.Data.v2.Common.Common.Cause cause = new WA.Standard.IF.Data.v2.Common.Common.Cause(); cause.CauseLaborOpCode = proxycause.CauseLaborOpCode; cause.Comment = proxycause.Comment; cause.SequenceNumber = proxycause.SequenceNumber; opcode.Causes.Add(cause); } } #endregion #region//Appointment RequestItem OPCode Corrections if (proxyopcode.Corrections != null && proxyopcode.Corrections.Length > 0) { opcode.Corrections = new List<WA.Standard.IF.Data.v2.Common.Common.Correction>(); foreach (_1C.v8241.Appointment.Correction proxycorrection in proxyopcode.Corrections) { WA.Standard.IF.Data.v2.Common.Common.Correction correction = new WA.Standard.IF.Data.v2.Common.Common.Correction(); correction.CorrectionLaborOpCode = proxycorrection.CorrectionLaborOpCode; correction.Comment = proxycorrection.Comment; correction.SequenceNumber = proxycorrection.SequenceNumber; opcode.Corrections.Add(correction); } } #endregion #region//Appointment RequestItem OPCode PriceType if (proxyopcode.PriceType != null) { WA.Standard.IF.Data.v2.Common.Common.PriceType pricetype = new WA.Standard.IF.Data.v2.Common.Common.PriceType(); pricetype.DiscountPrice = proxyopcode.PriceType.DiscountPrice; pricetype.DiscountRate = proxyopcode.PriceType.DiscountRate; pricetype.TotalPrice = proxyopcode.PriceType.TotalPrice; pricetype.TotalPriceIncludeTax = proxyopcode.PriceType.TotalPriceIncludeTax; pricetype.UnitPrice = proxyopcode.PriceType.UnitPrice; opcode.PriceType = pricetype; } #endregion #region//Appointment RequestItem OPCode Parts if (proxyopcode.Parts != null && proxyopcode.Parts.Length > 0) { opcode.Parts = new List<WA.Standard.IF.Data.v2.Common.Common.Part>(); foreach (_1C.v8241.Appointment.Part proxypart in proxyopcode.Parts) { #region//Appointment RequestItem OPCode Parts Header WA.Standard.IF.Data.v2.Common.Common.Part part = new WA.Standard.IF.Data.v2.Common.Common.Part(); part.DisplayPartNumber = proxypart.DisplayPartNumber; part.PartDescription = proxypart.PartDescription; part.PartNumber = proxypart.PartNumber; part.PartType = Map.GetWACodeFromDMSCode(CodeType.PartType, proxypart.PartType); part.Quantity = proxypart.Quantity; part.SequenceNumber = proxypart.SequenceNumber; part.ServiceType = Map.GetWACodeFromDMSCode(CodeType.ServiceType, proxypart.ServiceType); part.StockQuantity = proxypart.StockQuantity; part.StockStatus = proxypart.StockStatus; part.UnitOfMeasure = proxypart.UnitOfMeasure; #endregion #region//Appointment RequestItem OPCode Parts Descriptions if (proxypart.Descriptions != null && proxypart.Descriptions.Length > 0) { part.Descriptions = new List<WA.Standard.IF.Data.v2.Common.Common.Description>(); foreach (_1C.v8241.Appointment.Description proxydescription in proxypart.Descriptions) { WA.Standard.IF.Data.v2.Common.Common.Description description = new WA.Standard.IF.Data.v2.Common.Common.Description(); description.DescriptionComment = proxydescription.DescriptionComment; description.SequenceNumber = proxydescription.SequenceNumber; part.Descriptions.Add(description); } } #endregion #region//Appointment RequestItem OPCode Parts PriceType if (proxypart.PriceType != null) { WA.Standard.IF.Data.v2.Common.Common.PriceType pricetype = new WA.Standard.IF.Data.v2.Common.Common.PriceType(); pricetype.DiscountPrice = proxypart.PriceType.DiscountPrice; pricetype.DiscountRate = proxypart.PriceType.DiscountRate; pricetype.TotalPrice = proxypart.PriceType.TotalPrice; pricetype.TotalPriceIncludeTax = proxypart.PriceType.TotalPriceIncludeTax; pricetype.UnitPrice = proxypart.PriceType.UnitPrice; part.PriceType = pricetype; } #endregion opcode.Parts.Add(part); } } #endregion #region//Appointment RequestItem OPCode Sublets if (proxyopcode.Sublets != null && proxyopcode.Sublets.Length > 0) { opcode.Sublets = new List<WA.Standard.IF.Data.v2.Common.Common.Sublet>(); foreach (_1C.v8241.Appointment.Sublet proxysublet in proxyopcode.Sublets) { #region//Appointment RequestItem OPCode Sublet Header WA.Standard.IF.Data.v2.Common.Common.Sublet sublet = new WA.Standard.IF.Data.v2.Common.Common.Sublet(); sublet.SequenceNumber = proxysublet.SequenceNumber; sublet.ServiceType = Map.GetWACodeFromDMSCode(CodeType.ServiceType, proxysublet.ServiceType); #endregion #region//Appointment RequestItem OPCode Sublets Descriptions if (proxysublet.Descriptions != null && proxysublet.Descriptions.Length > 0) { sublet.Descriptions = new List<WA.Standard.IF.Data.v2.Common.Common.Description>(); foreach (_1C.v8241.Appointment.Description proxydescription in proxysublet.Descriptions) { WA.Standard.IF.Data.v2.Common.Common.Description description = new WA.Standard.IF.Data.v2.Common.Common.Description(); description.DescriptionComment = proxydescription.DescriptionComment; description.SequenceNumber = proxydescription.SequenceNumber; sublet.Descriptions.Add(description); } } #endregion #region//Appointment RequestItem OPCode Sublets PriceType if (proxysublet.PriceType != null) { WA.Standard.IF.Data.v2.Common.Common.PriceType pricetype = new WA.Standard.IF.Data.v2.Common.Common.PriceType(); pricetype.DiscountPrice = proxysublet.PriceType.DiscountPrice; pricetype.DiscountRate = proxysublet.PriceType.DiscountRate; pricetype.TotalPrice = proxysublet.PriceType.TotalPrice; pricetype.TotalPriceIncludeTax = proxysublet.PriceType.TotalPriceIncludeTax; pricetype.UnitPrice = proxysublet.PriceType.UnitPrice; sublet.PriceType = pricetype; } #endregion opcode.Sublets.Add(sublet); } } #endregion #region//Appointment RequestItem OPCode MISCs if (proxyopcode.MISCs != null && proxyopcode.MISCs.Length > 0) { opcode.MISCs = new List<WA.Standard.IF.Data.v2.Common.Common.MISC>(); foreach (_1C.v8241.Appointment.MISC proxymisc in proxyopcode.MISCs) { #region//Appointment RequestItem OPCode MISC Header WA.Standard.IF.Data.v2.Common.Common.MISC misc = new WA.Standard.IF.Data.v2.Common.Common.MISC(); misc.SequenceNumber = proxymisc.SequenceNumber; misc.ServiceType = Map.GetWACodeFromDMSCode(CodeType.ServiceType, proxymisc.ServiceType); #endregion #region//Appointment RequestItem OPCode MISCs Descriptions if (proxymisc.Descriptions != null && proxymisc.Descriptions.Length > 0) { misc.Descriptions = new List<WA.Standard.IF.Data.v2.Common.Common.Description>(); foreach (_1C.v8241.Appointment.Description proxydescription in proxymisc.Descriptions) { WA.Standard.IF.Data.v2.Common.Common.Description description = new WA.Standard.IF.Data.v2.Common.Common.Description(); description.DescriptionComment = proxydescription.DescriptionComment; description.SequenceNumber = proxydescription.SequenceNumber; misc.Descriptions.Add(description); } } #endregion #region//Appointment RequestItem OPCode MISCs PriceType if (proxymisc.PriceType != null) { WA.Standard.IF.Data.v2.Common.Common.PriceType pricetype = new WA.Standard.IF.Data.v2.Common.Common.PriceType(); pricetype.DiscountPrice = proxymisc.PriceType.DiscountPrice; pricetype.DiscountRate = proxymisc.PriceType.DiscountRate; pricetype.TotalPrice = proxymisc.PriceType.TotalPrice; pricetype.TotalPriceIncludeTax = proxymisc.PriceType.TotalPriceIncludeTax; pricetype.UnitPrice = proxymisc.PriceType.UnitPrice; misc.PriceType = pricetype; } #endregion opcode.MISCs.Add(misc); } } #endregion requestitem.OPCodes.Add(opcode); } } #endregion appointment.RequestItems.Add(requestitem); } } #endregion response.Appointments.Add(appointment); } } else { response.ResultMessage = GetResultMessageData(WA.Standard.IF.Data.v2.Common.Common.ResponseCode.NoResult, WA.Standard.IF.Data.v2.Common.Common.ResponseMessage.NoResult); } #endregion } } #endregion return response; }
public WA.Standard.IF.Data.v2.Common.Appointment.AppointmentChangeResponse AppointmentChange(WA.Standard.IF.Data.v2.Common.Appointment.AppointmentChangeRequest request) { WA.Standard.IF.Data.v2.Common.Appointment.AppointmentChangeResponse response = new WA.Standard.IF.Data.v2.Common.Appointment.AppointmentChangeResponse(); #region 1C.v8241.v2 - RTR.Standard.IF.WebService #region AppointmentChange Request Set //Create proxy credential NetworkCredential proxycredential = new NetworkCredential(request.TransactionHeader.Username, request.TransactionHeader.Password); //Create proxy web service from dms web service with credential _1C.v8241.Appointment.Appointment proxyws = new _1C.v8241.Appointment.Appointment(); proxyws.Credentials = proxycredential; //Create proxy request with appointmentchange and transaction _1C.v8241.Appointment.AppointmentChangeRequest proxyrequest = new _1C.v8241.Appointment.AppointmentChangeRequest(); //Create proxy transaction _1C.v8241.Appointment.TransactionHeader proxytransactionheader = new _1C.v8241.Appointment.TransactionHeader(); if (request.TransactionHeader != null) { #region//TransactionHeader Set proxytransactionheader.CountryID = request.TransactionHeader.CountryID; proxytransactionheader.DealerID = request.TransactionHeader.DealerID; proxytransactionheader.DistributorID = request.TransactionHeader.DistributorID; proxytransactionheader.DMSCode = request.TransactionHeader.DMSCode; proxytransactionheader.DMSServerUrl = request.TransactionHeader.DMSServerUrl; proxytransactionheader.DMSVersion = request.TransactionHeader.DMSVersion; proxytransactionheader.DocumentVersion = request.TransactionHeader.DocumentVersion; proxytransactionheader.GroupID = request.TransactionHeader.GroupID; proxytransactionheader.IneterfaceID = request.TransactionHeader.IneterfaceID; proxytransactionheader.Password = request.TransactionHeader.Password; proxytransactionheader.PollingToken = request.TransactionHeader.PollingToken; proxytransactionheader.RequestPollingToken = request.TransactionHeader.RequestPollingToken; proxytransactionheader.RequestType = request.TransactionHeader.RequestType; proxytransactionheader.TransactionId = request.TransactionHeader.TransactionId; proxytransactionheader.TransactionDateTimeLocal = request.TransactionHeader.TransactionDateTimeLocal; proxytransactionheader.TransactionDateTimeLocalSpecified = request.TransactionHeader.TransactionDateTimeLocal != null;//수정필요 proxytransactionheader.TransactionDateTimeUTC = request.TransactionHeader.TransactionDateTimeLocal; proxytransactionheader.TransactionDateTimeUTCSpecified = request.TransactionHeader.TransactionDateTimeLocal != null;//수정필요 proxytransactionheader.TransactionType = request.TransactionHeader.TransactionType; proxytransactionheader.Username = request.TransactionHeader.Username; proxytransactionheader.VenderTrackingCode = request.TransactionHeader.VenderTrackingCode; proxyrequest.TransactionHeader = proxytransactionheader; proxyws.Url = string.Format("{0}/rtr-atest/ws/Appointment.1cws", proxytransactionheader.DMSServerUrl); #endregion } //Create proxy appointmentchange _1C.v8241.Appointment.AppointmentChange proxyappointmentchange = new _1C.v8241.Appointment.AppointmentChange(); if (request.AppointmentChange != null) { #region//Appointment Header proxyappointmentchange.AppointmentChannel = Map.SetDMSCodeFromWACode(CodeType.AppointmentChannel, request.AppointmentChange.AppointmentChannel); proxyappointmentchange.AppointmentDateTimeLocal = request.AppointmentChange.AppointmentDateTimeLocal; proxyappointmentchange.AppointmentDateTimeLocalSpecified = request.AppointmentChange.AppointmentDateTimeLocal != null;//수정필요 proxyappointmentchange.CloseDateTimeLocal = request.AppointmentChange.CloseDateTimeLocal; proxyappointmentchange.CloseDateTimeLocalSpecified = request.AppointmentChange.CloseDateTimeLocal != null;//수정필요 proxyappointmentchange.CustomerComment = request.AppointmentChange.CustomerComment; proxyappointmentchange.DeliveryDateTimeLocal = request.AppointmentChange.DeliveryDateTimeLocal; proxyappointmentchange.DeliveryDateTimeLocalSpecified = request.AppointmentChange.DeliveryDateTimeLocal != null;//수정필요 proxyappointmentchange.DMSAppointmentID = request.AppointmentChange.DMSAppointmentID; proxyappointmentchange.DMSAppointmentNo = string.IsNullOrEmpty(request.AppointmentChange.DMSAppointmentNo) ? string.Empty : request.AppointmentChange.DMSAppointmentNo; proxyappointmentchange.DMSAppointmentStatus = Map.SetDMSCodeFromWACode(CodeType.DMSAppointmentStatus, request.AppointmentChange.DMSAppointmentStatus); proxyappointmentchange.InMileage = request.AppointmentChange.InMileage; proxyappointmentchange.OpenDateTimeLocal = request.AppointmentChange.OpenDateTimeLocal; proxyappointmentchange.OpenDateTimeLocalSpecified = request.AppointmentChange.OpenDateTimeLocal != null;//수정필요 proxyappointmentchange.PaymentMethod = Map.SetDMSCodeFromWACode(CodeType.PaymentMethod, request.AppointmentChange.PaymentMethod); proxyappointmentchange.SAEmployeeID = request.AppointmentChange.SAEmployeeID; proxyappointmentchange.SAEmployeeName = request.AppointmentChange.SAEmployeeName; proxyappointmentchange.ServiceType = request.AppointmentChange.ServiceType; proxyappointmentchange.TCEmployeeID = request.AppointmentChange.TCEmployeeID; proxyappointmentchange.TCEmployeeName = request.AppointmentChange.TCEmployeeName; proxyappointmentchange.WorkType = Map.SetDMSCodeFromWACode(CodeType.WorkType, request.AppointmentChange.WorkType); #endregion #region //Appointment AdditionalFields if (request.AppointmentChange.AdditionalFields != null && request.AppointmentChange.AdditionalFields.Count > 0) { int additionalfieldscnt = 0; _1C.v8241.Appointment.AdditionalField[] proxyadditionalfields = new _1C.v8241.Appointment.AdditionalField[request.AppointmentChange.AdditionalFields.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.AdditionalField additionalfield in request.AppointmentChange.AdditionalFields) { _1C.v8241.Appointment.AdditionalField proxyadditionalfield = new _1C.v8241.Appointment.AdditionalField(); proxyadditionalfield.AdditionalFieldName = additionalfield.AdditionalFieldName; proxyadditionalfield.AdditionalFieldValue = additionalfield.AdditionalFieldValue; proxyadditionalfields[additionalfieldscnt] = proxyadditionalfield; additionalfieldscnt++; } proxyappointmentchange.AdditionalFields = proxyadditionalfields; } #endregion #region//Appointment Options if (request.AppointmentChange.Options != null && request.AppointmentChange.Options.Count > 0) { int optionscnt = 0; _1C.v8241.Appointment.Option[] proxyoptions = new _1C.v8241.Appointment.Option[request.AppointmentChange.Options.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.Option option in request.AppointmentChange.Options) { _1C.v8241.Appointment.Option proxyoption = new _1C.v8241.Appointment.Option(); proxyoption.OptionName = option.OptionName; proxyoption.OptionValue = option.OptionValue; proxyoptions[optionscnt] = proxyoption; optionscnt++; } proxyappointmentchange.Options = proxyoptions; } #endregion #region//Appointment PriceType if (request.AppointmentChange.PriceType != null) { _1C.v8241.Appointment.PriceType proxypricetype = new _1C.v8241.Appointment.PriceType(); proxypricetype.DiscountPrice = request.AppointmentChange.PriceType.DiscountPrice; proxypricetype.DiscountRate = request.AppointmentChange.PriceType.DiscountRate; proxypricetype.TotalPrice = request.AppointmentChange.PriceType.TotalPrice; proxypricetype.TotalPriceIncludeTax = request.AppointmentChange.PriceType.TotalPriceIncludeTax; proxypricetype.UnitPrice = request.AppointmentChange.PriceType.UnitPrice; proxyappointmentchange.PriceType = proxypricetype; } #endregion #region//Appointment Customers if (request.AppointmentChange.Customers != null && request.AppointmentChange.Customers.Count > 0) { int customerscnt = 0; _1C.v8241.Appointment.Customer[] proxycustomers = new _1C.v8241.Appointment.Customer[request.AppointmentChange.Customers.Count]; foreach (WA.Standard.IF.Data.v2.Common.Customer.Customer customer in request.AppointmentChange.Customers) { #region//Appointment Customer Header _1C.v8241.Appointment.Customer proxycustomer = new _1C.v8241.Appointment.Customer(); //proxycustomer.CardNo = customer.CardNo; proxycustomer.CustomerInfoType = Map.SetDMSCodeFromWACode(CodeType.CustomerInfoType, customer.CustomerInfoType); proxycustomer.DMSCustomerNo = customer.DMSCustomerNo; proxycustomer.Email = customer.Email; //proxycustomer.FirstName = customer.FirstName; //proxycustomer.FullName = customer.FullName; //proxycustomer.Gender = Map.SetDMSCodeFromWACode(CodeType.Gender, customer.Gender); //proxycustomer.LastName = customer.LastName; //proxycustomer.MiddleName = customer.MiddleName; //proxycustomer.Salutation = customer.Salutation; #endregion #region//Appointment Customer Addresses if (customer.Addresses != null && customer.Addresses.Count > 0) { int addressescnt = 0; _1C.v8241.Appointment.Address[] proxyaddresses = new _1C.v8241.Appointment.Address[customer.Addresses.Count]; foreach (WA.Standard.IF.Data.v2.Common.Customer.Address address in customer.Addresses) { _1C.v8241.Appointment.Address proxyaddress = new _1C.v8241.Appointment.Address(); proxyaddress.AddressType = Map.SetDMSCodeFromWACode(CodeType.AddressType, address.AddressType); proxyaddress.City = address.City; proxyaddress.District = address.District; proxyaddress.Flat = address.Flat; //proxyaddress.FullAddress = "Need to fix. FullAddress is not a mandatory.";// address.FullAddress; proxyaddress.House = address.House; proxyaddress.Housing = address.Housing; proxyaddress.Locality = address.Locality; proxyaddress.Region = address.Region; proxyaddress.Street = address.Street; proxyaddress.ZipCode = address.ZipCode; proxyaddresses[addressescnt] = proxyaddress; addressescnt++; } proxycustomer.Addresses = proxyaddresses; } #endregion #region//Appointment Customer Contacts if (customer.Contacts != null && customer.Contacts.Count > 0) { int contactscnt = 0; _1C.v8241.Appointment.Contact[] proxycontacts = new _1C.v8241.Appointment.Contact[customer.Contacts.Count]; foreach (WA.Standard.IF.Data.v2.Common.Customer.Contact contact in customer.Contacts) { _1C.v8241.Appointment.Contact proxycontact = new _1C.v8241.Appointment.Contact(); proxycontact.ContactMethodYN = contact.ContactMethodYN; proxycontact.ContactType = Map.SetDMSCodeFromWACode(CodeType.ContactType, contact.ContactType); proxycontact.ContactValue = contact.ContactValue; proxycontacts[contactscnt] = proxycontact; contactscnt++; } proxycustomer.Contacts = proxycontacts; } #endregion #region//Appointment Customer SpecialMessage if (customer.SpecialMessage != null) { _1C.v8241.Appointment.SpecialMessage proxyspecialmessage = new _1C.v8241.Appointment.SpecialMessage(); proxyspecialmessage.Message = customer.SpecialMessage.Message; proxycustomer.SpecialMessage = proxyspecialmessage; } #endregion #region//Appointment Customer CorporateInfos if (customer.CorporateInfos != null && customer.CorporateInfos.Count > 0) { int corporateinfoscnt = 0; _1C.v8241.Appointment.CorporateInfo[] proxycorporateinfos = new _1C.v8241.Appointment.CorporateInfo[customer.CorporateInfos.Count]; foreach (WA.Standard.IF.Data.v2.Common.Customer.CorporateInfo corporateinfo in customer.CorporateInfos) { _1C.v8241.Appointment.CorporateInfo proxycorporateinfo = new _1C.v8241.Appointment.CorporateInfo(); proxycorporateinfo.CorporateInfoName = corporateinfo.CorporateInfoName; proxycorporateinfo.CorporateInfoValue = corporateinfo.CorporateInfoValue; proxycorporateinfos[corporateinfoscnt] = proxycorporateinfo; corporateinfoscnt++; } proxycustomer.CorporateInfos = proxycorporateinfos; } #endregion proxycustomers[customerscnt] = proxycustomer; } proxyappointmentchange.Customers = proxycustomers; } #endregion #region//Appointment Vehicle if (request.AppointmentChange.Vehicle != null) { #region//Appointment Vehicle Header _1C.v8241.Appointment.Vehicle proxyvehicle = new _1C.v8241.Appointment.Vehicle(); proxyvehicle.Color = request.AppointmentChange.Vehicle.Color; proxyvehicle.Cylinders = request.AppointmentChange.Vehicle.Cylinders; proxyvehicle.DateDelivered = request.AppointmentChange.Vehicle.DateDelivered != null ? Convert.ToDateTime(request.AppointmentChange.Vehicle.DateDelivered) : DateTime.MinValue;//수정필요 proxyvehicle.DateInService = request.AppointmentChange.Vehicle.DateInService != null ? Convert.ToDateTime(request.AppointmentChange.Vehicle.DateInService) : DateTime.MinValue;//수정필요 proxyvehicle.DeclinedJob = request.AppointmentChange.Vehicle.DeclinedJob; proxyvehicle.DisplayDescription = request.AppointmentChange.Vehicle.DisplayDescription; proxyvehicle.DMSVehicleNo = request.AppointmentChange.Vehicle.DMSVehicleNo; proxyvehicle.EngineCode = request.AppointmentChange.Vehicle.EngineCode; proxyvehicle.EngineType = request.AppointmentChange.Vehicle.EngineType; proxyvehicle.ExtendedWarranty = request.AppointmentChange.Vehicle.ExtendedWarranty != null ? Convert.ToDateTime(request.AppointmentChange.Vehicle.ExtendedWarranty) : DateTime.MinValue;//수정필요 proxyvehicle.FuelType = request.AppointmentChange.Vehicle.FuelType; proxyvehicle.FullModelName = request.AppointmentChange.Vehicle.FullModelName; proxyvehicle.InsuranceDate = request.AppointmentChange.Vehicle.InsuranceDate != null ? Convert.ToDateTime(request.AppointmentChange.Vehicle.InsuranceDate) : DateTime.MinValue;//수정필요 proxyvehicle.LastMileage = request.AppointmentChange.Vehicle.LastMileage; proxyvehicle.LastServiceDate = request.AppointmentChange.Vehicle.LastServiceDate != null ? Convert.ToDateTime(request.AppointmentChange.Vehicle.LastServiceDate) : DateTime.MinValue;//수정필요 //proxyvehicle.LastSixVIN = request.AppointmentChange.Vehicle.LastSixVIN; proxyvehicle.LicenseNumber = request.AppointmentChange.Vehicle.LicenseNumber; proxyvehicle.LicensePlateNo = request.AppointmentChange.Vehicle.LicensePlateNo; proxyvehicle.Make = request.AppointmentChange.Vehicle.Make; proxyvehicle.ModelCode = request.AppointmentChange.Vehicle.ModelCode; proxyvehicle.ModelName = request.AppointmentChange.Vehicle.ModelName; proxyvehicle.ModelYear = request.AppointmentChange.Vehicle.ModelYear; proxyvehicle.PendingJob = request.AppointmentChange.Vehicle.PendingJob; proxyvehicle.StockNumber = request.AppointmentChange.Vehicle.StockNumber; proxyvehicle.Trim = request.AppointmentChange.Vehicle.Trim; proxyvehicle.VehicleType = Map.SetDMSCodeFromWACode(CodeType.VehicleType, request.AppointmentChange.Vehicle.VehicleType); proxyvehicle.VIN = request.AppointmentChange.Vehicle.VIN; proxyvehicle.WarrantyMiles = request.AppointmentChange.Vehicle.WarrantyMiles; proxyvehicle.WarrantyMonths = request.AppointmentChange.Vehicle.WarrantyMonths; proxyvehicle.WarrantyStartDate = request.AppointmentChange.Vehicle.WarrantyStartDate != null ? Convert.ToDateTime(request.AppointmentChange.Vehicle.WarrantyStartDate) : DateTime.MinValue;//수정필요 proxyvehicle.EngineNo = request.AppointmentChange.Vehicle.EngineNo; proxyvehicle.ExtendedWarrantyExpireDate = request.AppointmentChange.Vehicle.ExtendedWarrantyExpireDate != null ? Convert.ToDateTime(request.AppointmentChange.Vehicle.ExtendedWarrantyExpireDate) : DateTime.MinValue;//수정필요 #endregion #region//Appointment Vehicle Campaigns if (request.AppointmentChange.Vehicle.Campaigns != null && request.AppointmentChange.Vehicle.Campaigns.Count > 0) { int campaignscnt = 0; _1C.v8241.Appointment.Campaign[] proxycampaigns = new _1C.v8241.Appointment.Campaign[request.AppointmentChange.Vehicle.Campaigns.Count]; foreach (WA.Standard.IF.Data.v2.Common.Vehicle.Campaign campaign in request.AppointmentChange.Vehicle.Campaigns) { _1C.v8241.Appointment.Campaign proxycampaign = new _1C.v8241.Appointment.Campaign(); proxycampaign.CampaignDescription = campaign.CampaignDescription; proxycampaign.CampaignID = campaign.CampaignID; proxycampaign.CampaignPerformed = campaign.CampaignPerformed; proxycampaigns[campaignscnt] = proxycampaign; campaignscnt++; } proxyvehicle.Campaigns = proxycampaigns; } #endregion proxyappointmentchange.Vehicle = proxyvehicle; } #endregion #region//Appointment RequestItems if (request.AppointmentChange.RequestItems != null && request.AppointmentChange.RequestItems.Count > 0) { int requestitemscnt = 0; _1C.v8241.Appointment.RequestItem[] proxyrequestitems = new _1C.v8241.Appointment.RequestItem[request.AppointmentChange.RequestItems.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.RequestItem requestitem in request.AppointmentChange.RequestItems) { #region//Appointment RequestItem Header _1C.v8241.Appointment.RequestItem proxyrequestitem = new _1C.v8241.Appointment.RequestItem(); proxyrequestitem.CPSIND = requestitem.CPSIND; proxyrequestitem.RequestCode = requestitem.RequestCode; proxyrequestitem.RequestDescription = requestitem.RequestDescription; proxyrequestitem.ServiceLineNumber = requestitem.ServiceLineNumber; proxyrequestitem.ServiceLineStatus = Map.SetDMSCodeFromWACode(CodeType.ServiceLineStatus, requestitem.ServiceLineStatus); proxyrequestitem.ServiceType = Map.SetDMSCodeFromWACode(CodeType.ServiceType, requestitem.ServiceType); proxyrequestitem.TCEmployeeID = requestitem.TCEmployeeID; proxyrequestitem.TCEmployeeName = requestitem.TCEmployeeName; proxyrequestitem.WorkType = Map.SetDMSCodeFromWACode(CodeType.WorkType, requestitem.WorkType); #endregion #region//Appointment RequestItem Comments if (requestitem.Comments != null && requestitem.Comments.Count > 0) { int commentscnt = 0; _1C.v8241.Appointment.Comment[] proxycomments = new _1C.v8241.Appointment.Comment[requestitem.Comments.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.Comment Comment in requestitem.Comments) { _1C.v8241.Appointment.Comment proxycomment = new _1C.v8241.Appointment.Comment(); proxycomment.DescriptionComment = Comment.DescriptionComment; proxycomment.SequenceNumber = Comment.SequenceNumber; proxycomments[commentscnt] = proxycomment; commentscnt++; } proxyrequestitem.Comments = proxycomments; } #endregion #region//Appointment RequestItem Descriptions if (requestitem.Descriptions != null && requestitem.Descriptions.Count > 0) { int descriptionscnt = 0; _1C.v8241.Appointment.Description[] proxydescriptions = new _1C.v8241.Appointment.Description[requestitem.Descriptions.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.Description description in requestitem.Descriptions) { _1C.v8241.Appointment.Description proxydescription = new _1C.v8241.Appointment.Description(); proxydescription.DescriptionComment = description.DescriptionComment; proxydescription.SequenceNumber = description.SequenceNumber; proxydescriptions[descriptionscnt] = proxydescription; descriptionscnt++; } proxyrequestitem.Descriptions = proxydescriptions; } #endregion #region//Appointment RequestItem OPCodes if (requestitem.OPCodes != null && requestitem.OPCodes.Count > 0) { int opcodescnt = 0; _1C.v8241.Appointment.OPCode[] proxyopcodes = new _1C.v8241.Appointment.OPCode[requestitem.OPCodes.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.OPCode opcode in requestitem.OPCodes) { #region//Appointment RequestItem OPCode Header _1C.v8241.Appointment.OPCode proxyopcode = new _1C.v8241.Appointment.OPCode(); proxyopcode.ActualHours = opcode.ActualHours; proxyopcode.Code = opcode.Code; proxyopcode.Description = opcode.Description; proxyopcode.EstimatedHours = opcode.EstimatedHours; proxyopcode.SequenceNumber = opcode.SequenceNumber; proxyopcode.ServiceType = Map.SetDMSCodeFromWACode(CodeType.ServiceType, opcode.ServiceType); proxyopcode.SkillLevel = opcode.SkillLevel; proxyopcode.Quantity = opcode.Quantity; #endregion #region//Appointment RequestItem OPCode Descriptions if (opcode.Descriptions != null && opcode.Descriptions.Count > 0) { int descriptionscnt = 0; _1C.v8241.Appointment.Description[] proxydescriptions = new _1C.v8241.Appointment.Description[opcode.Descriptions.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.Description description in opcode.Descriptions) { _1C.v8241.Appointment.Description proxydescription = new _1C.v8241.Appointment.Description(); proxydescription.DescriptionComment = description.DescriptionComment; proxydescription.SequenceNumber = description.SequenceNumber; proxydescriptions[descriptionscnt] = proxydescription; descriptionscnt++; } proxyopcode.Descriptions = proxydescriptions; } #endregion #region//Appointment RequestItem OPCode Causes if (opcode.Causes != null && opcode.Causes.Count > 0) { int causescnt = 0; _1C.v8241.Appointment.Cause[] proxycauses = new _1C.v8241.Appointment.Cause[opcode.Causes.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.Cause cause in opcode.Causes) { _1C.v8241.Appointment.Cause proxycause = new _1C.v8241.Appointment.Cause(); proxycause.CauseLaborOpCode = cause.CauseLaborOpCode; proxycause.Comment = cause.Comment; proxycause.SequenceNumber = cause.SequenceNumber; proxycauses[causescnt] = proxycause; causescnt++; } proxyopcode.Causes = proxycauses; } #endregion #region//Appointment RequestItem OPCode Corrections if (opcode.Corrections != null && opcode.Corrections.Count > 0) { int correctionscnt = 0; _1C.v8241.Appointment.Correction[] proxycorrections = new _1C.v8241.Appointment.Correction[opcode.Corrections.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.Correction Correction in opcode.Corrections) { _1C.v8241.Appointment.Correction proxycorrection = new _1C.v8241.Appointment.Correction(); proxycorrection.CorrectionLaborOpCode = Correction.CorrectionLaborOpCode; proxycorrection.Comment = Correction.Comment; proxycorrection.SequenceNumber = Correction.SequenceNumber; proxycorrections[correctionscnt] = proxycorrection; correctionscnt++; } proxyopcode.Corrections = proxycorrections; } #endregion #region//Appointment RequestItem OPCode PriceType if (opcode.PriceType != null) { _1C.v8241.Appointment.PriceType proxypricetype = new _1C.v8241.Appointment.PriceType(); proxypricetype.DiscountPrice = opcode.PriceType.DiscountPrice; proxypricetype.DiscountRate = opcode.PriceType.DiscountRate; proxypricetype.TotalPrice = opcode.PriceType.TotalPrice; proxypricetype.TotalPriceIncludeTax = opcode.PriceType.TotalPriceIncludeTax; proxypricetype.UnitPrice = opcode.PriceType.UnitPrice; proxyopcode.PriceType = proxypricetype; } #endregion #region//Appointment RequestItem OPCode Parts if (opcode.Parts != null && opcode.Parts.Count > 0) { int partscnt = 0; _1C.v8241.Appointment.Part[] proxyparts = new _1C.v8241.Appointment.Part[opcode.Parts.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.Part part in opcode.Parts) { #region//Appointment RequestItem OPCode Parts Header _1C.v8241.Appointment.Part proxypart = new _1C.v8241.Appointment.Part(); proxypart.DisplayPartNumber = part.DisplayPartNumber; proxypart.PartDescription = part.PartDescription; proxypart.PartNumber = part.PartNumber; proxypart.PartType = Map.SetDMSCodeFromWACode(CodeType.PartType, part.PartType); proxypart.Quantity = part.Quantity; proxypart.SequenceNumber = part.SequenceNumber; proxypart.ServiceType = Map.SetDMSCodeFromWACode(CodeType.ServiceType, part.ServiceType); proxypart.StockQuantity = part.StockQuantity; proxypart.StockStatus = part.StockStatus; proxypart.UnitOfMeasure = part.UnitOfMeasure; #endregion #region//Appointment RequestItem OPCode Parts Descriptions if (part.Descriptions != null && part.Descriptions.Count > 0) { int descriptionscnt = 0; _1C.v8241.Appointment.Description[] proxydescriptions = new _1C.v8241.Appointment.Description[part.Descriptions.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.Description description in part.Descriptions) { _1C.v8241.Appointment.Description proxydescription = new _1C.v8241.Appointment.Description(); proxydescription.DescriptionComment = description.DescriptionComment; proxydescription.SequenceNumber = description.SequenceNumber; proxydescriptions[descriptionscnt] = proxydescription; descriptionscnt++; } proxypart.Descriptions = proxydescriptions; } #endregion #region//Appointment RequestItem OPCode Parts PriceType if (part.PriceType != null) { _1C.v8241.Appointment.PriceType proxypricetype = new _1C.v8241.Appointment.PriceType(); proxypricetype.DiscountPrice = part.PriceType.DiscountPrice; proxypricetype.DiscountRate = part.PriceType.DiscountRate; proxypricetype.TotalPrice = part.PriceType.TotalPrice; proxypricetype.TotalPriceIncludeTax = part.PriceType.TotalPriceIncludeTax; proxypricetype.UnitPrice = part.PriceType.UnitPrice; proxypart.PriceType = proxypricetype; } #endregion proxyparts[partscnt] = proxypart; partscnt++; } proxyopcode.Parts = proxyparts; } #endregion #region//Appointment RequestItem OPCode Sublets if (opcode.Sublets != null && opcode.Sublets.Count > 0) { int subletscnt = 0; _1C.v8241.Appointment.Sublet[] proxysublets = new _1C.v8241.Appointment.Sublet[opcode.Sublets.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.Sublet sublet in opcode.Sublets) { #region//Appointment RequestItem OPCode Sublets Header _1C.v8241.Appointment.Sublet proxysublet = new _1C.v8241.Appointment.Sublet(); proxysublet.SequenceNumber = sublet.SequenceNumber; proxysublet.ServiceType = Map.SetDMSCodeFromWACode(CodeType.ServiceType, sublet.ServiceType); #endregion #region//Appointment RequestItem OPCode Sublets Descriptions if (sublet.Descriptions != null && sublet.Descriptions.Count > 0) { int descriptionscnt = 0; _1C.v8241.Appointment.Description[] proxydescriptions = new _1C.v8241.Appointment.Description[sublet.Descriptions.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.Description description in sublet.Descriptions) { _1C.v8241.Appointment.Description proxydescription = new _1C.v8241.Appointment.Description(); proxydescription.DescriptionComment = description.DescriptionComment; proxydescription.SequenceNumber = description.SequenceNumber; proxydescriptions[descriptionscnt] = proxydescription; descriptionscnt++; } proxysublet.Descriptions = proxydescriptions; } #endregion #region//Appointment RequestItem OPCode Sublets PriceType if (sublet.PriceType != null) { _1C.v8241.Appointment.PriceType proxypricetype = new _1C.v8241.Appointment.PriceType(); proxypricetype.DiscountPrice = sublet.PriceType.DiscountPrice; proxypricetype.DiscountRate = sublet.PriceType.DiscountRate; proxypricetype.TotalPrice = sublet.PriceType.TotalPrice; proxypricetype.TotalPriceIncludeTax = sublet.PriceType.TotalPriceIncludeTax; proxypricetype.UnitPrice = sublet.PriceType.UnitPrice; proxysublet.PriceType = proxypricetype; } #endregion proxysublets[subletscnt] = proxysublet; subletscnt++; } proxyopcode.Sublets = proxysublets; } #endregion #region//Appointment RequestItem OPCode MISCs if (opcode.MISCs != null && opcode.MISCs.Count > 0) { int miscscnt = 0; _1C.v8241.Appointment.MISC[] proxymiscs = new _1C.v8241.Appointment.MISC[opcode.MISCs.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.MISC misc in opcode.MISCs) { #region//Appointment RequestItem OPCode MISCs Header _1C.v8241.Appointment.MISC proxymisc = new _1C.v8241.Appointment.MISC(); proxymisc.SequenceNumber = misc.SequenceNumber; proxymisc.ServiceType = Map.SetDMSCodeFromWACode(CodeType.ServiceType, misc.ServiceType); #endregion #region//Appointment RequestItem OPCode MISCs Descriptions if (misc.Descriptions != null && misc.Descriptions.Count > 0) { int descriptionscnt = 0; _1C.v8241.Appointment.Description[] proxydescriptions = new _1C.v8241.Appointment.Description[misc.Descriptions.Count]; foreach (WA.Standard.IF.Data.v2.Common.Common.Description description in misc.Descriptions) { _1C.v8241.Appointment.Description proxydescription = new _1C.v8241.Appointment.Description(); proxydescription.DescriptionComment = description.DescriptionComment; proxydescription.SequenceNumber = description.SequenceNumber; proxydescriptions[descriptionscnt] = proxydescription; descriptionscnt++; } proxymisc.Descriptions = proxydescriptions; } #endregion #region//Appointment RequestItem OPCode MISCs PriceType if (misc.PriceType != null) { _1C.v8241.Appointment.PriceType proxypricetype = new _1C.v8241.Appointment.PriceType(); proxypricetype.DiscountPrice = misc.PriceType.DiscountPrice; proxypricetype.DiscountRate = misc.PriceType.DiscountRate; proxypricetype.TotalPrice = misc.PriceType.TotalPrice; proxypricetype.TotalPriceIncludeTax = misc.PriceType.TotalPriceIncludeTax; proxypricetype.UnitPrice = misc.PriceType.UnitPrice; proxymisc.PriceType = proxypricetype; } #endregion proxymiscs[miscscnt] = proxymisc; miscscnt++; } proxyopcode.MISCs = proxymiscs; } #endregion proxyopcodes[opcodescnt] = proxyopcode; opcodescnt++; } proxyrequestitem.OPCodes = proxyopcodes; } #endregion proxyrequestitems[requestitemscnt] = proxyrequestitem; requestitemscnt++; } proxyappointmentchange.RequestItems = proxyrequestitems; } #endregion proxyrequest.AppointmentChange = proxyappointmentchange; } #endregion //Run proxy web method with proxy request WA.Standard.IF.Logger.Log.Log.SaveXMLLog(0, request.TransactionHeader.DealerID, "DMS AppointmentChangeRequest XML", proxyrequest); _1C.v8241.Appointment.AppointmentChangeResponse proxyresponse = proxyws.AppointmentChange(proxyrequest); WA.Standard.IF.Logger.Log.Log.SaveXMLLog(0, request.TransactionHeader.DealerID, "DMS AppointmentChangeResponse XML", proxyresponse); //Mapping with Standard Interface Specification Object if (proxyresponse != null) { if (proxyresponse.TransactionHeader != null) { #region//TransactionHeader Set WA.Standard.IF.Data.v2.Common.Common.TransactionHeader transactionheader = new WA.Standard.IF.Data.v2.Common.Common.TransactionHeader(); transactionheader.CountryID = proxyresponse.TransactionHeader.CountryID; transactionheader.DealerID = proxyresponse.TransactionHeader.DealerID; transactionheader.DistributorID = proxyresponse.TransactionHeader.DistributorID; transactionheader.DMSCode = proxyresponse.TransactionHeader.DMSCode; transactionheader.DMSServerUrl = proxyresponse.TransactionHeader.DMSServerUrl; transactionheader.DMSVersion = proxyresponse.TransactionHeader.DMSVersion; transactionheader.DocumentVersion = proxyresponse.TransactionHeader.DocumentVersion; transactionheader.GroupID = proxyresponse.TransactionHeader.GroupID; transactionheader.IneterfaceID = proxyresponse.TransactionHeader.IneterfaceID; transactionheader.Password = proxyresponse.TransactionHeader.Password; transactionheader.PollingToken = proxyresponse.TransactionHeader.PollingToken; transactionheader.RequestPollingToken = proxyresponse.TransactionHeader.RequestPollingToken; transactionheader.RequestType = proxyresponse.TransactionHeader.RequestType; transactionheader.TransactionId = proxyresponse.TransactionHeader.TransactionId; transactionheader.TransactionDateTimeLocal = proxyresponse.TransactionHeader.TransactionDateTimeLocal; transactionheader.TransactionDateTimeUTC = proxyresponse.TransactionHeader.TransactionDateTimeUTC; transactionheader.TransactionType = proxyresponse.TransactionHeader.TransactionType; transactionheader.Username = proxyresponse.TransactionHeader.Username; transactionheader.VenderTrackingCode = proxyresponse.TransactionHeader.VenderTrackingCode; response.TransactionHeader = transactionheader; #endregion } //ResultMessage Set if (proxyresponse.ResultMessage != null) { response.ResultMessage = GetResultMessageData(proxyresponse.ResultMessage.Code, proxyresponse.ResultMessage.Message); } if (proxyresponse.Errors != null) { //Error List Set foreach (_1C.v8241.Appointment.Error proxyerror in proxyresponse.Errors) { if (response.Errors != null) response.Errors.Add(GetErrorData(proxyerror.Code, proxyerror.Message)); else response.Errors = GetErrorDataList(proxyerror.Code, proxyerror.Message); } } } #endregion return response; }