Added tables for master slave (under development)
cleaned up stored procedures and functions Added new settings to control conversion of approved data Handle file missing
This commit is contained in:
parent
4ddce7b4eb
commit
f673a0a119
File diff suppressed because it is too large
Load Diff
@ -71,6 +71,15 @@ namespace DataLoader
|
|||||||
get { return _OnlyThisSet; }
|
get { return _OnlyThisSet; }
|
||||||
set { _OnlyThisSet = value; }
|
set { _OnlyThisSet = value; }
|
||||||
}
|
}
|
||||||
|
private bool _LoadApproved; // Boolean
|
||||||
|
[Category("16-Bit Data")]
|
||||||
|
[DisplayName("Load approved data for this Procedure Set")]
|
||||||
|
[Description("Load approved PDFs (if they exist) and consistency checks for the Selected Procedure Set")]
|
||||||
|
public bool LoadApproved
|
||||||
|
{
|
||||||
|
get { return _LoadApproved; }
|
||||||
|
set { _LoadApproved = value; }
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region Format Data
|
#region Format Data
|
||||||
private string _FormatFolder; // Folder
|
private string _FormatFolder; // Folder
|
||||||
@ -141,6 +150,15 @@ namespace DataLoader
|
|||||||
get { return _Phase3Suffix; }
|
get { return _Phase3Suffix; }
|
||||||
set { _Phase3Suffix = value; }
|
set { _Phase3Suffix = value; }
|
||||||
}
|
}
|
||||||
|
private string _Phase4Suffix; // String
|
||||||
|
[Category("Backup Data")]
|
||||||
|
[DisplayName("Phase 4 Suffix")]
|
||||||
|
[Description("Suffix to use for backup before Loading Approved Data")]
|
||||||
|
public string Phase4Suffix
|
||||||
|
{
|
||||||
|
get { return _Phase4Suffix; }
|
||||||
|
set { _Phase4Suffix = value; }
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region Process Log
|
#region Process Log
|
||||||
private string _LogFilePath; // Folder
|
private string _LogFilePath; // Folder
|
||||||
|
@ -9,6 +9,8 @@ namespace DataLoader
|
|||||||
{
|
{
|
||||||
public FixItems(FileInfo myFile):base()
|
public FixItems(FileInfo myFile):base()
|
||||||
{
|
{
|
||||||
|
if (!myFile.Exists)
|
||||||
|
return;
|
||||||
FileStream fs = myFile.OpenRead();
|
FileStream fs = myFile.OpenRead();
|
||||||
int len = (int) myFile.Length;
|
int len = (int) myFile.Length;
|
||||||
byte [] buffer = new byte[len];
|
byte [] buffer = new byte[len];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user