Пример #1
0
        /// <summary>
        /// 获取未打包的商品类别数量
        /// </summary>
        /// <param name="Customer_Id">客户标识</param>
        /// <param name="User_Id">用户标识</param>
        /// <param name="Unit_Id">组织标识</param>
        /// <returns></returns>
        public int GetItemCategoryNotPackagedCount(string Customer_Id, string User_Id, string Unit_Id)
        {
            LoggingSessionInfo loggingSessionInfo = GetLoggingSessionInfo(Customer_Id, User_Id, Unit_Id);
            int iCount = 0;
            ItemCategoryService itemCategoryService = new ItemCategoryService();

            iCount = itemCategoryService.GetItemCategoryNotPackagedCount(loggingSessionInfo);
            return(iCount);
        }