Exemple #1
0
        /// <summary>
        /// 更新Item表打包标识方法
        /// </summary>
        /// <param name="Customer_Id">客户标识</param>
        /// <param name="User_Id">用户标识</param>
        /// <param name="Unit_Id">组织标识</param>
        /// <param name="bat_id">批次号</param>
        /// <returns>true=成功,false=失败</returns>
        public bool SetItemCategoryIfFlagInfo(string Customer_Id, string User_Id, string Unit_Id, string bat_id)
        {
            LoggingSessionInfo loggingSessionInfo = GetLoggingSessionInfo(Customer_Id, User_Id, Unit_Id);
            bool bReturn = false;
            ItemCategoryService itemCategoryService = new ItemCategoryService();

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