Exemple #1
0
        // 打印随工单-加载需要检查的仪表项目
        public static string GetOutCheck(ref string a_strErr)
        {
            DataTable dtItems = new DataTable();

            dtItems = FlowMeterPro.GetOutCheck(ref a_strErr);

            if (dtItems == null)
            {
                return("");
            }
            if (dtItems.Rows.Count == 0)
            {
                return("");
            }

            string strCheckItems = GFun.Dt2Json("CheckItems", dtItems);

            return(strCheckItems);
        }