Exemple #1
0
        public bool PartyBalanceAgainstReferenceCheck(string strVoucherNo, decimal decVoucherTypeId)
        {
            bool isExist = false;

            try
            {
                isExist = spAccountLedger.PartyBalanceAgainstReferenceCheck(strVoucherNo, decVoucherTypeId);
            }
            catch (Exception ex)
            {
                MessageBox.Show("AL6:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(isExist);
        }