Пример #1
0
        /// <summary>
        /// 设置记录Item category打包批次号
        /// </summary>
        /// <param name="Customer_Id">客户标识</param>
        /// <param name="User_Id">用户标识</param>
        /// <param name="Unit_Id">组织标识</param>
        /// <param name="bat_id">批次号</param>
        /// <param name="ItemCategoryInfoList">商品集合</param>
        /// <returns>true=成功,false=失败</returns>
        public bool SetItemCategoryBatInfo(string Customer_Id, string User_Id, string Unit_Id, string bat_id, IList <ItemCategoryInfo> ItemCategoryInfoList)
        {
            LoggingSessionInfo loggingSessionInfo = GetLoggingSessionInfo(Customer_Id, User_Id, Unit_Id);
            bool bReturn = false;
            ItemCategoryService itemCategoryService = new ItemCategoryService();

            bReturn = itemCategoryService.SetItemCategoryBatInfo(loggingSessionInfo, bat_id, ItemCategoryInfoList);
            return(bReturn);
        }