public bool SalesInvoiceInvoicePartyCheckEnableBillByBillOrNot(decimal decPartyId)
        {
            bool isResult = false;

            try
            {
                isResult = SPSalesMaster.SalesInvoiceInvoicePartyCheckEnableBillByBillOrNot(decPartyId);
            }
            catch (Exception ex)
            {
                MessageBox.Show("CB:1" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(isResult);
        }