Exemple #1
0
        /// <summary>
        /// 옮겨타기
        /// </summary>
        /// <param name="unloadgvcode"></param>
        /// <param name="loadgvcode"></param>
        /// <param name="unloadqty"></param>
        /// <param name="userid"></param>
        /// <param name="wccode"></param>
        /// <param name="workorderno"></param>
        /// <returns></returns>
        public bool UpdateMoveGvItem(string unloadgvcode, string loadgvcode, int unloadqty, string userid, string wccode, string workorderno, string fromworkorderno, bool isLoading = false, long?gvhistseq = null, int?statusseq = null)
        {
            GV_HistoryDAC dac = new GV_HistoryDAC();

            return(dac.UpdateMoveGvItem(unloadgvcode, loadgvcode, unloadqty, userid, wccode, workorderno, fromworkorderno, isLoading, gvhistseq, statusseq));
        }
Exemple #2
0
        /// <summary>
        /// 언로딩
        /// </summary>
        public bool UpdateUnload(string workorderno, string username, string gvcode, string targetgvcode, string wccode, int qty, string itemcode, long?histseq = null, int?statusseq = null)
        {
            GV_HistoryDAC dac = new GV_HistoryDAC();

            return(dac.UpdateUnload(workorderno, username, gvcode, targetgvcode, wccode, qty, itemcode, histseq, statusseq));
        }
Exemple #3
0
        /// <summary>
        /// 대차비우기
        /// </summary>
        public bool UpdateClearGV(GVClearVO item)
        {
            GV_HistoryDAC dac = new GV_HistoryDAC();

            return(dac.UpdateClearGV(item));
        }
Exemple #4
0
        /// <summary>
        /// 로딩
        /// </summary>
        public bool UpdateLoad(string username, string gvcode, int qty, string wccode, string workorderno)
        {
            GV_HistoryDAC dac = new GV_HistoryDAC();

            return(dac.UpdateLoad(username, gvcode, qty, wccode, workorderno));
        }