예제 #1
0
        //Reallocate - upon reallocate, update ROD table w/ new figures - Web Clerk
        public void UpdateRODTable(WCF_SortingItem ci)
        {
            string token = ci.Token.Trim();

            if (AuthenticateToken(token))
            {
                BusinessLogic.UpdateRODTableOnReallocate(ci.DepartmentID, ci.ItemNumber, ci.CollectedQty);
            }
        }
예제 #2
0
        //Reallocate - upon reallocate, reset ROD table - Web Clerk
        public void ResetRODTable(WCF_SortingItem ci)
        {
            string token = ci.Token.Trim();

            if (AuthenticateToken(token))
            {
                BusinessLogic.ResetRODTable(ci.DepartmentID, ci.ItemNumber);
            }
        }