This commit is contained in:
2012-10-26 10:13:05 +00:00
parent 94d2b11dc3
commit 75ee5c4141
3 changed files with 4 additions and 26 deletions

View File

@@ -364,12 +364,6 @@ namespace DataLoader
get { return _RevDate; }
set { _RevDate = value; }
}
private string _ReviewDate;
public string ReviewDate
{
get { return _ReviewDate; }
set { _ReviewDate = value; }
}
public ProcInfo(DataRow dr, string afpath)
{
Number = dr["NUMBER"].ToString();
@@ -388,8 +382,9 @@ namespace DataLoader
if (fis.Count > 0)
{
Rev = fis[0].Rev;
RevDate = fis[0].RevDate ?? GetDBFRevDate(afpath);
ReviewDate = fis[0].ReviewDate;
// the following line needs fixed, i.e. should the date come from the set file or
// the datetime stamp of dbf (GetDBFRevDate):
//RevDate = fis[0].RevDate ?? GetDBFRevDate(afpath);
}
}
public System.DateTime GetDTS(string date, string time)