Ejemplo n.º 1
0
        public void SvrFulfillSwift(int batch_num, string email = "EmailNOtSupplied")
        {
            ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

            log.Info(String.Format("FulfillSwift called batchNum {0} by {1}", batch_num, email));
            var userId = ConfigurationManager.AppSettings["SwiftUserId"];
            var pwd = ConfigurationManager.AppSettings["SwiftPassword"];
            var progId = ConfigurationManager.AppSettings["SwiftProgramId"];
            var issuanceId = ConfigurationManager.AppSettings["SwiftIssuanceProductId"];
            var locId = ConfigurationManager.AppSettings["SwiftLocationId"];
            var srv = new PromoCodeService.PCService_DefClient();

            var b = FetchBatch(batch_num);
            ClientJobDto jraClient = GetClientForJob(b.First().JobNum);

            string JobNumFormatted;
            JobNumFormatted = b.First().JobNum.ToString();
            //if (JobNumFormatted.Length == 8)
            //    JobNumFormatted = JobNumFormatted.Substring(0, 4) + "-" + JobNumFormatted.Substring(5);
            

            foreach (var p in b)
            {
                if (!p.Completed && !string.IsNullOrEmpty(p.Email))
                {
                    var request = new PromoCodeService.GetPromocodeRequest();
                    request.UserId = userId;
                    request.Password = pwd;
                    request.ClientId = userId;
                    request.PromocodeProgramId = progId;
                    request.LocationId = locId;
                    request.PaymentReferenceId = p.Id.ToString();
                    request.IssuanceProductId = issuanceId;
                    request.Amount = p.Amount.ToString();

                    ///* ClientData as follow 
                    //1   Client
                    //2   Job
                    //3   Topic
                    //4   Batch
                    //5   Payor
                    //*/
                    ////   WindowsPrincipal user = RequestContext.Principal as WindowsPrincipal;
                    request.ClientData1 = String.Format("{0} - {1}", jraClient.ClientID, jraClient.JobName);
                    request.ClientData2 = p.JobNum.ToString();
                    request.ClientData3 = p.StudyTopic;
                    request.ClientData4 = p.BatchNum.ToString();
                    request.ClientData5 = email;

                    var c = new PromoCodeService.Customer();
                    c.Address1 = p.Address1;
                    c.Address2 = p.Address2;
                    c.City = p.Municipality;
                    c.CountryCode = "USA";
                    c.EmailAddress = p.Email;
                    c.FirstName = p.FirstName;
                    c.LastName = p.LastName;
                    c.PhoneNumber = p.PhoneNumber;
                    c.PostalCode = p.PostalCode;
                    c.State = p.Region;
                    c.UserName = p.Email;

                    request.Customer = c;
                    request.RedemptionMessage = JobNumFormatted + " : " + p.StudyTopic;
                    request.EmailMessage = JobNumFormatted + " : " + p.StudyTopic;

                    PromoCodeService.GetPromocodeResponse response = srv.GetPromocode(request);

                    if (response.Status == "Valid")
                    {
                        log.Info(String.Format("FulfillSwift succeeded email {0} tran_id {1}", c.EmailAddress, request.PaymentReferenceId));
                        using (var ctx = ConnectionManager<SqlConnection>.GetManager("CoopCheck"))
                        {
                            using (var cmd = new SqlCommand("dbo.dal_WritePromoCode", ctx.Connection))
                            {
                                cmd.CommandType = CommandType.StoredProcedure;

                            
                                cmd.Parameters.AddWithValue("@tran_id", request.PaymentReferenceId).DbType =
                                    DbType.Int32;
                                cmd.Parameters.AddWithValue("@promo_code", response.Promocode).DbType = DbType.String;
                                cmd.Parameters.AddWithValue("@paid_amount", response.Amount).DbType = DbType.Decimal;
                                cmd.Parameters.AddWithValue("@usr", email).DbType =
                                DbType.String;
                                cmd.ExecuteNonQuery();
                            }
                        }
                    }
                    else
                    {
                        var err = new Csla.WcfPortal.WcfErrorInfo();
                        err.ExceptionTypeName = "PromoCodeError";
                        err.Message = String.Format("tran_id {0} - {1} - {2}", request.PaymentReferenceId,
                            response.ResponseCode, response.ResponseMessage);
                        log.Info(String.Format("FulfillSwift FAILED: email {0} tran_id {1} reason {2} ", 
                            c.EmailAddress, request.PaymentReferenceId, response.ResponseMessage));
                        throw new Csla.DataPortalException(err);
                    }


                }
            }
            ClearPromoCodeBatch(batch_num, "useremail");
        }
Ejemplo n.º 2
0
        public void SvrVoidSwiftPromoCode(int tran_id, string email)
        {
            var userId = ConfigurationManager.AppSettings["SwiftUserId"];
            var pwd = ConfigurationManager.AppSettings["SwiftPassword"];
            var progId = ConfigurationManager.AppSettings["SwiftProgramId"];
            var issuanceId = ConfigurationManager.AppSettings["SwiftIssuanceProductId"];
            var locId = ConfigurationManager.AppSettings["SwiftLocationId"];
            var srv = new PromoCodeService.PCService_DefClient();


            var p = FetchById(tran_id).First();

            var request = new PromoCodeService.UpdatePromocodeRequest();
            request.UserId = userId;
            request.Password = pwd;
            request.ClientId = userId;
            request.PromocodeProgramId = progId;
            request.LocationId = locId;

            request.Promocode = p.CheckNum;
            request.IssuanceProductId = issuanceId;
            request.NewStatus = "Cancel";
            request.NewStatusReasonCode = "BI";
            request.RedemptionMessage = "we have canceled this promo card.";
            var c = new PromoCodeService.Customer
            {
                Address1 = p.Address1,
                Address2 = p.Address2,
                City = p.Municipality,
                CountryCode = "USA",
                EmailAddress = p.Email,
                FirstName = p.FirstName,
                LastName = p.LastName,
                PhoneNumber = p.PhoneNumber,
                PostalCode = p.PostalCode,
                State = p.Region,
                UserName = p.Email
            };

            request.Customer = c;

            PromoCodeService.UpdatePromocodeResponse response = srv.UpdatePromocode(request);

            if (response.Status == "Valid")
            {
                using (var ctx = ConnectionManager<SqlConnection>.GetManager("CoopCheck"))
                {
                    using (var cmd = new SqlCommand("dbo.dal_VoidPromoCode", ctx.Connection))
                    {
                        cmd.CommandType = CommandType.StoredProcedure;
                        cmd.Parameters.AddWithValue("@tran_id", p.Id).DbType = DbType.Int32;
                        cmd.Parameters.AddWithValue("@usr", email).DbType = DbType.String;
                        cmd.ExecuteNonQuery();
                    }
                }

            }
            else
            {
                var err = new Csla.WcfPortal.WcfErrorInfo();
                err.ExceptionTypeName = "PromoCodeError";
                err.Message = response.ResponseCode + " : " + response.SwiftErrorReason;

                throw new Csla.DataPortalException(err);
            }
        }