Пример #1
0
        public List <DataTable> SalesOrderReportViewAll(string strInvoiceNo, decimal decLedgerId, string strProductCode, decimal decVouchertypeId, DateTime FromDate, DateTime ToDate, string strStatus, decimal decEmployeeId, string strSalesQuotationNo, decimal decAreaId, decimal decGroupId, decimal decRouteId)
        {
            List <DataTable> ListObj = new List <DataTable>();

            try
            {
                ListObj = spSalesOrderMaster.SalesOrderReportViewAll(strInvoiceNo, decLedgerId, strProductCode, decVouchertypeId, FromDate, ToDate, strStatus, decEmployeeId, strSalesQuotationNo, decAreaId, decGroupId, decRouteId);
            }
            catch (Exception ex)
            {
                MessageBox.Show("SOBLL21:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(ListObj);
        }