Compare commits

..

No commits in common. "711b2a2d59571d28ec1b535e7975af543aa54797" and "ccce05d505dd2e439e237ff3b7387308bb08a4bc" have entirely different histories.

1 changed files with 9 additions and 13 deletions

View File

@ -1055,8 +1055,6 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
{
DataTable source = ObjectToTable(Grid9.DataSource);
int Quantity1Total = 0, Quantity2Total = 0;
if (source!=null)
{
foreach (DataRow row in source.Rows)
{
Quantity1Total += Convert.ToInt32(row["Quantity1"]);
@ -1070,8 +1068,6 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
Grid9.SummaryData = summary;
}
}
public static DataTable ObjectToTable(object obj)
{
try