/// <summary> /// Function to insert values to DebitNoteDetails Table /// </summary> /// <param name="debitnotedetailsinfo"></param> /// <returns></returns> public decimal DebitNoteDetailsAdd(DebitNoteDetailsInfo debitnotedetailsinfo) { decimal decDebitNoteDetails = 0; try { if (sqlcon.State == ConnectionState.Closed) { sqlcon.Open(); } SqlCommand sccmd = new SqlCommand("DebitNoteDetailsAdd", sqlcon); sccmd.CommandType = CommandType.StoredProcedure; SqlParameter sprmparam = new SqlParameter(); sprmparam = sccmd.Parameters.Add("@debitNoteMasterId", SqlDbType.Decimal); sprmparam.Value = debitnotedetailsinfo.DebitNoteMasterId; sprmparam = sccmd.Parameters.Add("@ledgerId", SqlDbType.Decimal); sprmparam.Value = debitnotedetailsinfo.LedgerId; sprmparam = sccmd.Parameters.Add("@credit", SqlDbType.Decimal); sprmparam.Value = debitnotedetailsinfo.Credit; sprmparam = sccmd.Parameters.Add("@debit", SqlDbType.Decimal); sprmparam.Value = debitnotedetailsinfo.Debit; sprmparam = sccmd.Parameters.Add("@exchangeRateId", SqlDbType.Decimal); sprmparam.Value = debitnotedetailsinfo.ExchangeRateId; sprmparam = sccmd.Parameters.Add("@chequeNo", SqlDbType.VarChar); sprmparam.Value = debitnotedetailsinfo.ChequeNo; sprmparam = sccmd.Parameters.Add("@chequeDate", SqlDbType.DateTime); sprmparam.Value = debitnotedetailsinfo.ChequeDate; sprmparam = sccmd.Parameters.Add("@extra1", SqlDbType.VarChar); sprmparam.Value = debitnotedetailsinfo.Extra1; sprmparam = sccmd.Parameters.Add("@extra2", SqlDbType.VarChar); sprmparam.Value = debitnotedetailsinfo.Extra2; sprmparam = sccmd.Parameters.Add("@extraDate", SqlDbType.DateTime); sprmparam.Value = debitnotedetailsinfo.ExtraDate; decDebitNoteDetails = Convert.ToDecimal(sccmd.ExecuteScalar().ToString()); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } finally { sqlcon.Close(); } return(decDebitNoteDetails); }
/// <summary> /// Function to insert values to DebitNoteDetails Table /// </summary> /// <param name="debitnotedetailsinfo"></param> /// <returns></returns> public decimal DebitNoteDetailsAdd(DebitNoteDetailsInfo debitnotedetailsinfo) { decimal decDebitNoteDetails = 0; try { if (sqlcon.State == ConnectionState.Closed) { sqlcon.Open(); } SqlCommand sccmd = new SqlCommand("DebitNoteDetailsAdd", sqlcon); sccmd.CommandType = CommandType.StoredProcedure; SqlParameter sprmparam = new SqlParameter(); sprmparam = sccmd.Parameters.Add("@debitNoteMasterId", SqlDbType.Decimal); sprmparam.Value = debitnotedetailsinfo.DebitNoteMasterId; sprmparam = sccmd.Parameters.Add("@ledgerId", SqlDbType.Decimal); sprmparam.Value = debitnotedetailsinfo.LedgerId; sprmparam = sccmd.Parameters.Add("@credit", SqlDbType.Decimal); sprmparam.Value = debitnotedetailsinfo.Credit; sprmparam = sccmd.Parameters.Add("@debit", SqlDbType.Decimal); sprmparam.Value = debitnotedetailsinfo.Debit; sprmparam = sccmd.Parameters.Add("@exchangeRateId", SqlDbType.Decimal); sprmparam.Value = debitnotedetailsinfo.ExchangeRateId; sprmparam = sccmd.Parameters.Add("@chequeNo", SqlDbType.VarChar); sprmparam.Value = debitnotedetailsinfo.ChequeNo; sprmparam = sccmd.Parameters.Add("@chequeDate", SqlDbType.DateTime); sprmparam.Value = debitnotedetailsinfo.ChequeDate; sprmparam = sccmd.Parameters.Add("@extra1", SqlDbType.VarChar); sprmparam.Value = debitnotedetailsinfo.Extra1; sprmparam = sccmd.Parameters.Add("@extra2", SqlDbType.VarChar); sprmparam.Value = debitnotedetailsinfo.Extra2; sprmparam = sccmd.Parameters.Add("@extraDate", SqlDbType.DateTime); sprmparam.Value = debitnotedetailsinfo.ExtraDate; decDebitNoteDetails = Convert.ToDecimal(sccmd.ExecuteScalar().ToString()); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } finally { sqlcon.Close(); } return decDebitNoteDetails; }
/// <summary> /// Function to get particular values from DebitNoteDetails table based on the parameter /// </summary> /// <param name="debitNoteDetailsId"></param> /// <returns></returns> public DebitNoteDetailsInfo DebitNoteDetailsView(decimal debitNoteDetailsId) { DebitNoteDetailsInfo debitnotedetailsinfo = new DebitNoteDetailsInfo(); SqlDataReader sdrreader = null; try { if (sqlcon.State == ConnectionState.Closed) { sqlcon.Open(); } SqlCommand sccmd = new SqlCommand("DebitNoteDetailsView", sqlcon); sccmd.CommandType = CommandType.StoredProcedure; SqlParameter sprmparam = new SqlParameter(); sprmparam = sccmd.Parameters.Add("@debitNoteDetailsId", SqlDbType.Decimal); sprmparam.Value = debitNoteDetailsId; sdrreader = sccmd.ExecuteReader(); while (sdrreader.Read()) { debitnotedetailsinfo.DebitNoteDetailsId = decimal.Parse(sdrreader[0].ToString()); debitnotedetailsinfo.DebitNoteMasterId = decimal.Parse(sdrreader[1].ToString()); debitnotedetailsinfo.LedgerId = decimal.Parse(sdrreader[2].ToString()); debitnotedetailsinfo.Credit = decimal.Parse(sdrreader[3].ToString()); debitnotedetailsinfo.Debit = decimal.Parse(sdrreader[4].ToString()); debitnotedetailsinfo.ExchangeRateId = decimal.Parse(sdrreader[5].ToString()); debitnotedetailsinfo.ChequeNo = sdrreader[6].ToString(); debitnotedetailsinfo.ChequeDate = DateTime.Parse(sdrreader[7].ToString()); debitnotedetailsinfo.Extra1 = sdrreader[8].ToString(); debitnotedetailsinfo.Extra2 = sdrreader[9].ToString(); debitnotedetailsinfo.ExtraDate = DateTime.Parse(sdrreader[10].ToString()); } } catch (Exception ex) { MessageBox.Show(ex.ToString()); } finally { sdrreader.Close(); sqlcon.Close(); } return(debitnotedetailsinfo); }
/// <summary> /// Function to edit the debitnote voucher /// </summary> /// <param name="decDebitNoteMasterId"></param> public void Edit(decimal decDebitNoteMasterId) { try { DebitNoteMasterSP spDebitNoteMaster = new DebitNoteMasterSP(); DebitNoteDetailsSP spDebitNoteDetails = new DebitNoteDetailsSP(); DebitNoteMasterInfo infoDebitNoteMaster = new DebitNoteMasterInfo(); DebitNoteDetailsInfo infoDebitNoteDetails = new DebitNoteDetailsInfo(); ExchangeRateSP spExchangeRate = new ExchangeRateSP(); /*****************Update in DebitNoteMaster table *************/ decimal decTotalDebit = 0; decimal decTotalCredit = 0; infoDebitNoteMaster.DebitNoteMasterId = decDebitNoteMasterId; infoDebitNoteMaster.VoucherNo = strVoucherNo; infoDebitNoteMaster.InvoiceNo = txtVoucherNo.Text.Trim(); infoDebitNoteMaster.SuffixPrefixId = decDebitNoteSuffixPrefixId; infoDebitNoteMaster.Date = Convert.ToDateTime(txtDate.Text); infoDebitNoteMaster.Narration = txtNarration.Text; infoDebitNoteMaster.UserId = PublicVariables._decCurrentUserId; infoDebitNoteMaster.VoucherTypeId = decDebitNoteVoucherTypeId; infoDebitNoteMaster.FinancialYearId = Convert.ToDecimal(PublicVariables._decCurrentFinancialYearId.ToString()); infoDebitNoteMaster.ExtraDate = DateTime.Now; infoDebitNoteMaster.Extra1 = string.Empty; infoDebitNoteMaster.Extra2 = string.Empty; decTotalDebit = Convert.ToDecimal(txtDebitTotal.Text.Trim()); decTotalCredit = Convert.ToDecimal(txtCreditTotal.Text.Trim()); infoDebitNoteMaster.TotalAmount = decTotalDebit; decimal decEffectRow = spDebitNoteMaster.DebitNoteMasterEdit(infoDebitNoteMaster); /**********************DebitNoteDetails Edit********************/ if (decEffectRow > 0) { infoDebitNoteDetails.DebitNoteMasterId = decDebitNoteMasterId; infoDebitNoteDetails.ExtraDate = DateTime.Now; infoDebitNoteDetails.Extra1 = string.Empty; infoDebitNoteDetails.Extra2 = string.Empty; //-----------to delete details, LedgerPosting and bankReconciliation of removed rows--------------// LedgerPostingSP spLedgerPosting = new LedgerPostingSP(); BankReconciliationSP spBankReconciliation = new BankReconciliationSP(); foreach (object obj in arrlstOfRemove) { string str = Convert.ToString(obj); spDebitNoteDetails.DebitNoteDetailsDelete(Convert.ToDecimal(str)); spLedgerPosting.LedgerPostDeleteByDetailsId(Convert.ToDecimal(str), strVoucherNo, decDebitNoteVoucherTypeId); } spLedgerPosting.LedgerPostingDeleteByVoucherNoVoucherTypeIdAndLedgerId(strVoucherNo, decDebitNoteVoucherTypeId, 12); //=============================================================================================// decimal decLedgerId = 0; decimal decDebit = 0; decimal decCredit = 0; decimal decDebitNoteDetailsId = 0; int inRowCount = dgvDebitNote.RowCount; for (int inI = 0; inI < inRowCount; inI++) { if (dgvDebitNote.Rows[inI].Cells["dgvcmbAccountLedger"].Value != null && dgvDebitNote.Rows[inI].Cells["dgvcmbAccountLedger"].Value.ToString() != string.Empty) { infoDebitNoteDetails.LedgerId = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvcmbAccountLedger"].Value.ToString()); decLedgerId = infoDebitNoteDetails.LedgerId; } if (dgvDebitNote.Rows[inI].Cells["dgvcmbDrOrCr"].Value != null && dgvDebitNote.Rows[inI].Cells["dgvcmbDrOrCr"].Value.ToString() != string.Empty) { //------------------Currency conversion------------------// decSelectedCurrencyRate = spExchangeRate.GetExchangeRateByExchangeRateId(Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvcmbCurrency"].Value)); decAmount = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvtxtAmount"].Value.ToString()); decConvertRate = decAmount * decSelectedCurrencyRate; //======================================================// if (dgvDebitNote.Rows[inI].Cells["dgvcmbDrOrCr"].Value.ToString() == "Dr") { infoDebitNoteDetails.Debit = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvtxtAmount"].Value.ToString()); infoDebitNoteDetails.Credit = 0; decDebit = decConvertRate; decCredit = infoDebitNoteDetails.Credit; } else { infoDebitNoteDetails.Credit = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvtxtAmount"].Value.ToString()); infoDebitNoteDetails.Debit = 0; decDebit = infoDebitNoteDetails.Debit; decCredit = decConvertRate; } infoDebitNoteDetails.ExchangeRateId = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvcmbCurrency"].Value.ToString()); if (dgvDebitNote.Rows[inI].Cells["dgvtxtChequeNo"].Value != null && dgvDebitNote.Rows[inI].Cells["dgvtxtChequeNo"].Value.ToString() != string.Empty) { infoDebitNoteDetails.ChequeNo = dgvDebitNote.Rows[inI].Cells["dgvtxtChequeNo"].Value.ToString(); } else { infoDebitNoteDetails.ChequeNo = string.Empty; } if (dgvDebitNote.Rows[inI].Cells["dgvtxtChequeDate"].Value != null && dgvDebitNote.Rows[inI].Cells["dgvtxtChequeDate"].Value.ToString() != string.Empty) { infoDebitNoteDetails.ChequeDate = Convert.ToDateTime(dgvDebitNote.Rows[inI].Cells["dgvtxtChequeDate"].Value); } else { infoDebitNoteDetails.ChequeDate = DateTime.Now; } if (dgvDebitNote.Rows[inI].Cells["dgvtxtDetailsId"].Value != null && dgvDebitNote.Rows[inI].Cells["dgvtxtDetailsId"].Value.ToString() != string.Empty) { infoDebitNoteDetails.DebitNoteDetailsId = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvtxtDetailsId"].Value.ToString()); spDebitNoteDetails.DebitNoteDetailsEdit(infoDebitNoteDetails); PartyBalanceAddOrEdit(inI); decDebitNoteDetailsId = infoDebitNoteDetails.DebitNoteDetailsId; decimal decLedgerPostId = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvtxtLedgerPostingId"].Value.ToString()); LedgerPostingEdit(decLedgerPostId, decLedgerId, decCredit, decDebit, decDebitNoteDetailsId, inI); } else { decDebitNoteDetailsId = spDebitNoteDetails.DebitNoteDetailsAdd(infoDebitNoteDetails); PartyBalanceAddOrEdit(inI); LedgerPosting(decLedgerId, decCredit, decDebit, decDebitNoteDetailsId, inI); } } } Messages.UpdatedMessage(); } //----------------If print after save is enable-----------------------// SettingsSP spSettings = new SettingsSP(); if (cbxPrintAfterSave.Checked == true) { if (spSettings.SettingsStatusCheck("Printer") == "Dot Matrix") { PrintForDotMatrix(infoDebitNoteMaster.DebitNoteMasterId); } else { Print(infoDebitNoteMaster.DebitNoteMasterId); } } //===================================================================// if (frmDebitNoteRegisterObj != null) { this.Close(); frmDebitNoteRegisterObj.Enabled = true; } else if (frmDebitNoteReportObj != null) { this.Close(); frmDebitNoteReportObj.Enabled = true; } else { Clear(); } } catch (Exception ex) { MessageBox.Show("DRNT34:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
/// <summary> /// Function to save the debitnote voucher /// </summary> public void Save() { try { decimal decTotalDebit = 0; decimal decTotalCredit = 0; decTotalDebit = Convert.ToDecimal(txtDebitTotal.Text.Trim()); decTotalCredit = Convert.ToDecimal(txtCreditTotal.Text.Trim()); DebitNoteMasterSP spDebitNoteMaster = new DebitNoteMasterSP(); DebitNoteDetailsSP spDebitNoteDetails = new DebitNoteDetailsSP(); DebitNoteMasterInfo infoDebitNoteMaster = new DebitNoteMasterInfo(); DebitNoteDetailsInfo infoDebitNoteDetails = new DebitNoteDetailsInfo(); PartyBalanceSP SpPartyBalance = new PartyBalanceSP(); PartyBalanceInfo InfopartyBalance = new PartyBalanceInfo(); ExchangeRateSP spExchangeRate = new ExchangeRateSP(); infoDebitNoteMaster.VoucherNo = strVoucherNo; infoDebitNoteMaster.InvoiceNo = txtVoucherNo.Text.Trim(); infoDebitNoteMaster.SuffixPrefixId = decDebitNoteSuffixPrefixId; infoDebitNoteMaster.Date = Convert.ToDateTime(txtDate.Text); infoDebitNoteMaster.Narration = txtNarration.Text; infoDebitNoteMaster.UserId = PublicVariables._decCurrentUserId; infoDebitNoteMaster.VoucherTypeId = decDebitNoteVoucherTypeId; infoDebitNoteMaster.FinancialYearId = Convert.ToDecimal(PublicVariables._decCurrentFinancialYearId.ToString()); infoDebitNoteMaster.Extra1 = string.Empty; infoDebitNoteMaster.Extra2 = string.Empty; infoDebitNoteMaster.TotalAmount = decTotalDebit; decimal decJDebitNoteMasterId = spDebitNoteMaster.DebitNoteMasterAdd(infoDebitNoteMaster); /*******************DebitNoteDetailsAdd and LedgerPosting*************************/ infoDebitNoteDetails.DebitNoteMasterId = decJDebitNoteMasterId; infoDebitNoteDetails.ExtraDate = DateTime.Now; infoDebitNoteDetails.Extra1 = string.Empty; infoDebitNoteDetails.Extra2 = string.Empty; decimal decLedgerId = 0; decimal decDebit = 0; decimal decCredit = 0; int inRowCount = dgvDebitNote.RowCount; for (int inI = 0; inI < inRowCount - 1; inI++) { if (dgvDebitNote.Rows[inI].Cells["dgvcmbAccountLedger"].Value != null && dgvDebitNote.Rows[inI].Cells["dgvcmbAccountLedger"].Value.ToString() != string.Empty) { infoDebitNoteDetails.LedgerId = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvcmbAccountLedger"].Value.ToString()); decLedgerId = infoDebitNoteDetails.LedgerId; } if (dgvDebitNote.Rows[inI].Cells["dgvcmbDrOrCr"].Value != null && dgvDebitNote.Rows[inI].Cells["dgvcmbDrOrCr"].Value.ToString() != string.Empty) { if (dgvDebitNote.Rows[inI].Cells["dgvtxtAmount"].Value != null && dgvDebitNote.Rows[inI].Cells["dgvtxtAmount"].Value.ToString() != string.Empty) { //--------Currency conversion--------------// decSelectedCurrencyRate = spExchangeRate.GetExchangeRateByExchangeRateId(Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvcmbCurrency"].Value.ToString())); decAmount = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvtxtAmount"].Value.ToString()); decConvertRate = decAmount * decSelectedCurrencyRate; //===========================================// if (dgvDebitNote.Rows[inI].Cells["dgvcmbDrOrCr"].Value.ToString() == "Dr") { infoDebitNoteDetails.Debit = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvtxtAmount"].Value.ToString()); infoDebitNoteDetails.Credit = 0; decDebit = decConvertRate; decCredit = infoDebitNoteDetails.Credit; } else { infoDebitNoteDetails.Credit = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvtxtAmount"].Value.ToString()); infoDebitNoteDetails.Debit = 0; decDebit = infoDebitNoteDetails.Debit; decCredit = decConvertRate; } } infoDebitNoteDetails.ExchangeRateId = Convert.ToDecimal(dgvDebitNote.Rows[inI].Cells["dgvcmbCurrency"].Value.ToString()); if (dgvDebitNote.Rows[inI].Cells["dgvtxtChequeNo"].Value != null && dgvDebitNote.Rows[inI].Cells["dgvtxtChequeNo"].Value.ToString() != string.Empty) { infoDebitNoteDetails.ChequeNo = dgvDebitNote.Rows[inI].Cells["dgvtxtChequeNo"].Value.ToString(); } else { infoDebitNoteDetails.ChequeNo = string.Empty; } if (dgvDebitNote.Rows[inI].Cells["dgvtxtChequeDate"].Value != null && dgvDebitNote.Rows[inI].Cells["dgvtxtChequeDate"].Value.ToString() != string.Empty) { infoDebitNoteDetails.ChequeDate = Convert.ToDateTime(dgvDebitNote.Rows[inI].Cells["dgvtxtChequeDate"].Value); } else { infoDebitNoteDetails.ChequeDate = DateTime.Now; } decimal decDebitNoteDetailsId = spDebitNoteDetails.DebitNoteDetailsAdd(infoDebitNoteDetails); if (decDebitNoteDetailsId != 0) { PartyBalanceAddOrEdit(inI); LedgerPosting(decLedgerId, decCredit, decDebit, decDebitNoteDetailsId, inI); } } } Messages.SavedMessage(); //----------------If print after save is enable-----------------------// SettingsSP spSettings = new SettingsSP(); if (cbxPrintAfterSave.Checked == true) { if (spSettings.SettingsStatusCheck("Printer") == "Dot Matrix") { PrintForDotMatrix(decJDebitNoteMasterId); } else { Print(decJDebitNoteMasterId); } } //===================================================================// } catch (Exception ex) { MessageBox.Show("DRNT31:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
/// <summary> /// Function to get particular values from DebitNoteDetails table based on the parameter /// </summary> /// <param name="debitNoteDetailsId"></param> /// <returns></returns> public DebitNoteDetailsInfo DebitNoteDetailsView(decimal debitNoteDetailsId ) { DebitNoteDetailsInfo debitnotedetailsinfo =new DebitNoteDetailsInfo(); SqlDataReader sdrreader =null; try { if (sqlcon.State == ConnectionState.Closed) { sqlcon.Open(); } SqlCommand sccmd = new SqlCommand("DebitNoteDetailsView", sqlcon); sccmd.CommandType = CommandType.StoredProcedure; SqlParameter sprmparam = new SqlParameter(); sprmparam = sccmd.Parameters.Add("@debitNoteDetailsId", SqlDbType.Decimal); sprmparam.Value = debitNoteDetailsId; sdrreader = sccmd.ExecuteReader(); while (sdrreader.Read()) { debitnotedetailsinfo.DebitNoteDetailsId=decimal.Parse(sdrreader[0].ToString()); debitnotedetailsinfo.DebitNoteMasterId=decimal.Parse(sdrreader[1].ToString()); debitnotedetailsinfo.LedgerId=decimal.Parse(sdrreader[2].ToString()); debitnotedetailsinfo.Credit=decimal.Parse(sdrreader[3].ToString()); debitnotedetailsinfo.Debit=decimal.Parse(sdrreader[4].ToString()); debitnotedetailsinfo.ExchangeRateId=decimal.Parse(sdrreader[5].ToString()); debitnotedetailsinfo.ChequeNo= sdrreader[6].ToString(); debitnotedetailsinfo.ChequeDate=DateTime.Parse(sdrreader[7].ToString()); debitnotedetailsinfo.Extra1= sdrreader[8].ToString(); debitnotedetailsinfo.Extra2= sdrreader[9].ToString(); debitnotedetailsinfo.ExtraDate=DateTime.Parse(sdrreader[10].ToString()); } } catch (Exception ex) { MessageBox.Show(ex.ToString()); } finally { sdrreader.Close(); sqlcon.Close(); } return debitnotedetailsinfo; }