예제 #1
0
        public static DataTable GetReceivables(string CustNo, string CustName, string BeginDate, string EndDate, int pageIndex, int pageSize, string OrderBy, ref int totalCount)
        {
            string CompanyCD = ((UserInfoUtil)SessionUtil.Session["UserInfo"]).CompanyCD;

            return(SellProductReport.GetReceivables(CompanyCD, CustNo, CustName, BeginDate, EndDate, pageIndex, pageSize, OrderBy, ref totalCount));
        }