Exemple #1
0
        // 收货确认单查看-加载列表
        public static string GetDeliveryInfo(string strTakeID, ref string a_strErr)
        {
            DataTable dtList = new DataTable();

            dtList = FlowMeterPro.GetDeliveryInfo(strTakeID, ref a_strErr);

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

            string strList = GFun.Dt2Json("DeliveryInfo", dtList);

            return(strList);
        }