コード例 #1
0
        public void Then1(string batchNumber, Table table)
        {
            var task = CheckThirdPartyBus.GetSingleResponseAsync(5);
            task.Wait();

            response = task.Result;

            Assert.IsNotNull(response, "No response received");
            Assert.IsFalse(string.IsNullOrEmpty(response.voucherBatch.scannedBatchNumber));
            Assert.AreEqual(batchNumber, response.voucherBatch.scannedBatchNumber);

            table.CompareToSet(response.voucher.Select(c => new
            {
                documentReferenceNumber = c.voucher.documentReferenceNumber.Trim(),
                bsbNumber = c.voucher.bsbNumber.Trim(),
                accountNumber = c.voucher.accountNumber.Trim(),
                auxDom = c.voucher.auxDom.Trim(),
                extraAuxDom = c.voucher.extraAuxDom.Trim(),
                transactionCode = c.voucher.transactionCode.Trim(),
                amount = c.voucher.amount.Trim(),
                
                //targetEndPoint = c.voucher.targetEndPoint.Trim(),
                //unprocessable = c.voucher.unprocessable,
                //repostFromDRN = c.voucher.repostFromDRN,
                //repostFromProcessingDate = c.voucher.repostFromProcessingDate.ToString("yyyyMMdd")
            }));
        }
コード例 #2
0
        public void Execute(IJobExecutionContext context)
        {
            Log.Information("Scanning database for completed third party checking batches");

            using (var lifetimeScope = component.BeginLifetimeScope())
            {
                using (var dipsDbContext = dbContext ?? lifetimeScope.Resolve<IDipsDbContext>())
                {
                    //Get all the potential batches that have been completed
                    var completedBatches =
                        dipsDbContext.Queues
                            .Where(q =>
                                !q.ResponseCompleted
                                && q.S_LOCATION == DipsLocationType.CheckThirdPartyDone.Value
                                && q.S_LOCK.Trim() == "0")
                            .ToList();

                    Log.Information("Found {0} completed third party checking batches", completedBatches.Count);

                    foreach (var completedBatch in completedBatches)
                    {
                        Log.Debug("Creating response for batch {@batch}", completedBatch.S_BATCH);

                        //only commit the transaction if
                        // a) we were the first application to mark this batch row as CorrectCodelineCompleted (DipsQueue uses optimistic concurrency) 
                        // b) we were able to place a response message on the bus
                        using (var tx = dipsDbContext.BeginTransaction())
                        {
                            try
                            {
                                //mark the line as completed
                                completedBatch.ResponseCompleted = true;
                                var routingKey = completedBatch.RoutingKey;

                                dipsDbContext.SaveChanges();

                                var batchNumber = completedBatch.S_BATCH;

                                //get the vouchers, generate and send the response
                                var vouchers = dipsDbContext.NabChqPods
                                    .Where(
                                        v =>
                                            v.S_BATCH == batchNumber && v.S_DEL_IND != "  255" &&
                                            (v.export_exclude_flag.Trim() != "1"))
                                    .ToList();

                                if (vouchers.Count > 0)
                                {
                                    var firstVoucher = vouchers.First(v => v.isGeneratedVoucher != "1");

                                    var batchResponse = new CheckThirdPartyBatchResponse
                                    {
                                        voucherBatch = new VoucherBatch
                                        {
                                            batchAccountNumber = firstVoucher.batchAccountNumber,
                                            batchType = ResponseHelper.TrimString(firstVoucher.batch_type),
                                            captureBsb = firstVoucher.captureBSB,
                                            collectingBank = firstVoucher.collecting_bank,
                                            processingState =
                                                ResponseHelper.ParseState(
                                                    ResponseHelper.TrimString(firstVoucher.processing_state)),
                                            scannedBatchNumber = completedBatch.S_BATCH,
                                            unitID = firstVoucher.unit_id,
                                            workType =
                                                ResponseHelper.ParseWorkType(
                                                    ResponseHelper.TrimString(completedBatch.S_JOB_ID)),
                                            subBatchType = ResponseHelper.TrimString(firstVoucher.sub_batch_type),
                                        },
                                        voucher = vouchers.Select(v => new CheckThirdPartyResponse
                                        {
                                            voucherProcess = new VoucherProcess
                                            {
                                                adjustedFlag = ResponseHelper.ParseStringAsBool(v.adjustedFlag),
                                                highValueFlag = ResponseHelper.ParseStringAsBool(v.highValueFlag),
                                                isGeneratedVoucher =
                                                    ResponseHelper.ParseStringAsBool(v.isGeneratedVoucher),
                                                manualRepair = ResponseHelper.ParseStringAsInt(v.man_rep_ind),
                                                preAdjustmentAmount = ResponseHelper.ParseAmountField(v.orig_amount),
                                                presentationMode = ResponseHelper.TrimString(v.presentationMode),
                                                rawMICR = ResponseHelper.TrimString(v.raw_micr),
                                                rawOCR = ResponseHelper.TrimString(v.raw_ocr),
                                                repostFromDRN = ResponseHelper.TrimString(v.repostFromDRN),
                                                repostFromProcessingDate =
                                                    ResponseHelper.ParseDateField(v.repostFromProcessingDate),
                                                surplusItemFlag = ResponseHelper.ParseStringAsBool(v.surplusItemFlag),
                                                suspectFraud =
                                                    ResponseHelper.ParseStringAsBool(v.micr_suspect_fraud_flag),
                                                thirdPartyCheckFailed = ResponseHelper.ParseTpcResult(v.tpcResult),
                                                thirdPartyMixedDepositReturnFlag =
                                                    ResponseHelper.ParseStringAsBool(v.tpcMixedDepRet),
                                                thirdPartyPoolFlag =
                                                    ResponseHelper.ParseStringAsBool(v.fxa_tpc_suspense_pool_flag),
                                                transactionLinkNumber =
                                                    ResponseHelper.TrimString(v.transactionLinkNumber),
                                                unencodedECDReturnFlag =
                                                    ResponseHelper.ParseStringAsBool(v.fxa_unencoded_ECD_return),
                                                unprocessable = ResponseHelper.ParseStringAsBool(v.unproc_flag),
                                                voucherDelayedIndicator =
                                                    ResponseHelper.TrimString(v.voucherIndicatorField),
                                                operatorId = ResponseHelper.TrimString(v.op_id),
                                                adjustedBy = ResponseHelper.TrimString(v.op_id),
                                                adjustmentLetterRequired =
                                                    ResponseHelper.ParseStringAsBool(v.adjustmentLetterRequired),
                                                forValueType = null,
                                                postTransmissionQaAmountFlag =
                                                    ResponseHelper.ParseStringAsBool(v.fxaPtQAAmtFlag),
                                                postTransmissionQaCodelineFlag =
                                                    ResponseHelper.ParseStringAsBool(v.fxaPtQACodelineFlag),
                                                adjustmentReasonCode =
                                                    ResponseHelper.ParseStringAsInt(v.adjustmentReasonCode),
                                                adjustmentDescription =
                                                    ResponseHelper.TrimString(v.adjustmentDescription),
                                                alternateAccountNumber =
                                                    ResponseHelper.TrimString(v.alt_acc_num),
                                                alternateAuxDom =
                                                    ResponseHelper.TrimString(v.alt_ser_num),
                                                alternateBsbNumber =
                                                    ResponseHelper.TrimString(v.alt_bsb_num),
                                                alternateExAuxDom =
                                                    ResponseHelper.TrimString(v.alt_ead),
                                                alternateTransactionCode =
                                                    ResponseHelper.TrimString(v.alt_trancode),
                                                creditNoteFlag = ResponseHelper.ParseStringAsBool(v.creditNoteFlag),
                                                insertedCreditType = ResponseHelper.ParseInsertedCreditType(v.insertedCreditType)
                                            },

                                            voucher = new Voucher
                                            {
                                                accountNumber = ResponseHelper.TrimString(v.acc_num),
                                                amount = ResponseHelper.ParseAmountField(v.amount),
                                                auxDom = ResponseHelper.TrimString(v.ser_num),
                                                bsbNumber = v.bsb_num,
                                                documentReferenceNumber = ResponseHelper.TrimString(v.doc_ref_num),
                                                documentType = ResponseHelper.ParseDocumentType(v.doc_type),
                                                extraAuxDom = ResponseHelper.TrimString(v.ead),
                                                processingDate =
                                                    DateTime.ParseExact(string.Format("{0}", v.proc_date), "yyyyMMdd",
                                                        CultureInfo.InvariantCulture),
                                                transactionCode = ResponseHelper.TrimString(v.trancode),
                                            }
                                        }).ToArray()
                                    };

                                    if (adapterConfiguration.DeleteDatabaseRows)
                                    {
                                        ResponseHelper.CleanupBatchData(batchNumber, dipsDbContext);
                                    }

                                    if (string.IsNullOrEmpty(routingKey))
                                    {
                                        routingKey = string.Empty;
                                    }

                                    Task.WaitAll(responseExchange.PublishAsync(batchResponse,
                                        completedBatch.CorrelationId,
                                        routingKey.Trim()));

                                    tx.Commit();

                                    Log.Debug(
                                        "Third party checking batch '{@batch}' has been completed and a response has been placed on the queue",
                                        completedBatch.S_BATCH);
                                    Log.Information("Batch '{@batch}' response sent: {@response}",
                                        completedBatch.S_BATCH,
                                        batchResponse);
                                }
                                else
                                {
                                    Log.Error(
                                        "Could not create a third party checking response for batch '{@batch}' because the vouchers cannot be queried",
                                        completedBatch.S_BATCH);
                                }
                            }
                            catch (OptimisticConcurrencyException)
                            {
                                //this is to handle the race condition where more than instance of this service is running at the same time and tries to update the row.

                                //basically ignore the message by loggin a warning and rolling back.
                                //if this row was not included by mistake (e.g. it should be included), it will just come in in the next batch run.
                                Log.Warning(
                                    "Could not create a third party checking response for batch '{@batch}' because the DIPS database row was updated by another connection",
                                    completedBatch.S_BATCH);

                                tx.Rollback();
                            }
                            catch (Exception ex)
                            {
                                Log.Error(
                                    ex,
                                    "Could not complete and create a third party checking response for batch '{@batch}'",
                                    completedBatch.S_BATCH);
                                tx.Rollback();
                            }
                        }
                    }
                }
            }

            Log.Information("Finished processing completed third party checking batches");
        }