SVN-Revision: r333
This commit is contained in:
tdx
2025-03-16 08:25:53 +00:00
parent d04a09b6a5
commit 8f69607930
@@ -838,7 +838,8 @@ namespace Lskj.ProductiSched
string colName = dayValue.ToString("yyyy-MM-dd");
if (dayValue >= startDate && dayValue <= endDate && dataMain.Columns.Contains(colName))
{
dataMap[key][colName] = Convert.ToDecimal(dayRow["amount"]);
Decimal.TryParse(dayRow["amount"] + "", out decimal amountValue);
dataMap[key][colName] = amountValue;
}
}
}