示例#1
0
        public JsonResult GetDetail(Int32 ID)
        {
            List <T_OutStockTaskDetailsInfo> modelList = new List <T_OutStockTaskDetailsInfo>();
            string strError = "";

            tfunc_detail.GetModelListByHeaderID(ref modelList, ID, ref strError);
            return(Json(modelList, JsonRequestBehavior.AllowGet));
        }
示例#2
0
        public bool GetAllT_OutTaskDetailsByHeaderID(ref List <T_OutStockTaskDetailsInfo> modelList, int headerID, ref string strError)
        {
            T_OutTaskDetails_Func tfunc = new T_OutTaskDetails_Func();

            return(tfunc.GetModelListByHeaderID(ref modelList, headerID, ref strError));
        }