예제 #1
0
        public async Task <ApiResponse> Handle(AddEditTransactionListCommand request, CancellationToken cancellationToken)
        {
            ApiResponse response = new ApiResponse();

            try
            {
                await Task.Run(() =>
                {
                    // Common Function to Add/Update Transaction
                    bool transactionAddedFlag = _iAccountingServices.AddEditTransactionList(request);

                    if (!transactionAddedFlag)
                    {
                        throw new Exception(StaticResource.SomethingWentWrong);
                    }
                });

                response.StatusCode = StaticResource.successStatusCode;
                response.Message    = StaticResource.SuccessText;
            }
            catch (Exception ex)
            {
                response.StatusCode = StaticResource.failStatusCode;
                response.Message    = ex.Message;
            }
            return(response);
        }
        public async Task <ApiResponse> Handle(ExchangeGainLossVoucherDetailsCommand model, CancellationToken cancellationToken)
        {
            ApiResponse response = new ApiResponse();

            try
            {
                #region "Generate Voucher"
                AddVoucherDetailCommand voucherModel = new AddVoucherDetailCommand
                {
                    VoucherNo                 = model.VoucherNo,
                    CurrencyId                = model.CurrencyId,
                    Description               = model.Description,
                    JournalCode               = model.JournalId,
                    VoucherTypeId             = model.VoucherType,
                    OfficeId                  = model.OfficeId,
                    ProjectId                 = model.ProjectId,
                    BudgetLineId              = model.BudgetLineId,
                    IsExchangeGainLossVoucher = true,
                    TimezoneOffset            = model.TimezoneOffset,
                };

                var responseVoucher = await _iAccountingServices.AddVoucherDetail(voucherModel);

                #endregion

                #region "Generate Transaction"

                if (responseVoucher != null)
                {
                    List <VoucherTransactionsModel> transactions = new List <VoucherTransactionsModel>();

                    // Credit
                    transactions.Add(new VoucherTransactionsModel
                    {
                        TransactionId = 0,
                        VoucherNo     = responseVoucher.VoucherNo,
                        AccountNo     = model.CreditAccount,
                        Debit         = 0,
                        Credit        = Math.Abs(model.Amount),
                        Description   = "Gain-Loss-Voucher-Credit",
                        IsDeleted     = false
                    });

                    // Debit
                    transactions.Add(new VoucherTransactionsModel
                    {
                        TransactionId = 0,
                        VoucherNo     = responseVoucher.VoucherNo,
                        AccountNo     = model.DebitAccount,
                        Debit         = Math.Abs(model.Amount),
                        Credit        = 0,
                        Description   = "Gain-Loss-Voucher-Debit",
                        IsDeleted     = false
                    });

                    AddEditTransactionListCommand transactionVoucherDetail = new AddEditTransactionListCommand
                    {
                        VoucherNo           = responseVoucher.VoucherNo,
                        VoucherTransactions = transactions
                    };

                    bool isTransactionSaved = _iAccountingServices.AddEditTransactionList(transactionVoucherDetail);

                    if (isTransactionSaved)
                    {
                        string journalName = _dbContext.VoucherDetail.FirstOrDefault(x => x.JournalCode == responseVoucher.JournalCode)?.JournalDetails.JournalName;

                        response.data.GainLossVoucherDetail = new GainLossVoucherListModel
                        {
                            VoucherId   = responseVoucher.VoucherNo,
                            JournalName = string.IsNullOrEmpty(journalName) ? journalName : "",
                            VoucherName = responseVoucher.ReferenceNo,
                            VoucherDate = responseVoucher.VoucherDate
                        };
                    }
                    else
                    {
                        throw new Exception(StaticResource.TransactionsNotSaved);
                    }

                    response.StatusCode = StaticResource.successStatusCode;
                    response.Message    = StaticResource.SuccessText;
                }
                else
                {
                    response.StatusCode = StaticResource.failStatusCode;
                    response.Message    = StaticResource.VoucherNotSaved;
                }

                #endregion
            }
            catch (Exception ex)
            {
                response.StatusCode = StaticResource.failStatusCode;
                response.Message    = ex.Message;
            }
            return(response);
        }