DataSet dstMain=biz.GetDataSetList(pStart, pEnd, pStoreName);//得到报表的数据集合set给newsDs
newsDs.Tables.Add(dstMain.Tables[0].Copy());//添加主报表数据集
DataSet dstPOS1 = new DataSet();
DataSet dstPOS2 = new DataSet();
dstPOS1 = biz.GetDataSetList(pStart, pEnd, pStoreName1);
dstPOS2 = biz.GetDataSetList(pStart, pEnd, pStoreName2);
newsDs.Tables.Add(dstPOS1.Tables[0].Copy());//添加子报表数据集
newsDs.Tables.Add(dstPOS2.Tables[0].Copy());//添加子报表数据集 |