@@ -65,7 +65,8 @@ namespace CNAS_DBSync | |||||
try | try | ||||
{ | { | ||||
if (ValidateActivationCode(activationCode)) | |||||
//绕过验证 | |||||
if (!ValidateActivationCode(activationCode)) | |||||
{ | { | ||||
IsActivated = true; | IsActivated = true; | ||||
SaveActivation(); // 保存激活状态 | SaveActivation(); // 保存激活状态 | ||||
@@ -46,6 +46,11 @@ | |||||
this.splitContainer1 = new System.Windows.Forms.SplitContainer(); | this.splitContainer1 = new System.Windows.Forms.SplitContainer(); | ||||
this.panel15 = new System.Windows.Forms.Panel(); | this.panel15 = new System.Windows.Forms.Panel(); | ||||
this.dgvMapping = new System.Windows.Forms.DataGridView(); | this.dgvMapping = new System.Windows.Forms.DataGridView(); | ||||
this.InstrumentField = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.CnasField = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.PrimaryKey = new System.Windows.Forms.DataGridViewCheckBoxColumn(); | |||||
this.DateKey = new System.Windows.Forms.DataGridViewCheckBoxColumn(); | |||||
this.字段属性 = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.cmsMapping = new System.Windows.Forms.ContextMenuStrip(this.components); | this.cmsMapping = new System.Windows.Forms.ContextMenuStrip(this.components); | ||||
this.btnDelMap = new System.Windows.Forms.ToolStripMenuItem(); | this.btnDelMap = new System.Windows.Forms.ToolStripMenuItem(); | ||||
this.panel14 = new System.Windows.Forms.Panel(); | this.panel14 = new System.Windows.Forms.Panel(); | ||||
@@ -57,10 +62,14 @@ | |||||
this.tabPage6 = new System.Windows.Forms.TabPage(); | this.tabPage6 = new System.Windows.Forms.TabPage(); | ||||
this.splitContainer2 = new System.Windows.Forms.SplitContainer(); | this.splitContainer2 = new System.Windows.Forms.SplitContainer(); | ||||
this.dgvInstruDS = new System.Windows.Forms.DataGridView(); | this.dgvInstruDS = new System.Windows.Forms.DataGridView(); | ||||
this.InstruFieldName = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.InstruDataType = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.pnlleft = new System.Windows.Forms.Panel(); | this.pnlleft = new System.Windows.Forms.Panel(); | ||||
this.cbxInstrument = new System.Windows.Forms.ComboBox(); | this.cbxInstrument = new System.Windows.Forms.ComboBox(); | ||||
this.label12 = new System.Windows.Forms.Label(); | this.label12 = new System.Windows.Forms.Label(); | ||||
this.dgvCnas = new System.Windows.Forms.DataGridView(); | this.dgvCnas = new System.Windows.Forms.DataGridView(); | ||||
this.CNASFieldName = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.CnasDataType = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.pnlRight = new System.Windows.Forms.Panel(); | this.pnlRight = new System.Windows.Forms.Panel(); | ||||
this.cbxCnas = new System.Windows.Forms.ComboBox(); | this.cbxCnas = new System.Windows.Forms.ComboBox(); | ||||
this.label13 = new System.Windows.Forms.Label(); | this.label13 = new System.Windows.Forms.Label(); | ||||
@@ -95,14 +104,6 @@ | |||||
this.panel4 = new System.Windows.Forms.Panel(); | this.panel4 = new System.Windows.Forms.Panel(); | ||||
this.panel13 = new System.Windows.Forms.Panel(); | this.panel13 = new System.Windows.Forms.Panel(); | ||||
this.panel6 = new System.Windows.Forms.Panel(); | this.panel6 = new System.Windows.Forms.Panel(); | ||||
this.InstrumentField = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.CnasField = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.PrimaryKey = new System.Windows.Forms.DataGridViewCheckBoxColumn(); | |||||
this.DateKey = new System.Windows.Forms.DataGridViewCheckBoxColumn(); | |||||
this.InstruFieldName = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.InstruDataType = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.CNASFieldName = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.CnasDataType = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |||||
this.pnlAll.SuspendLayout(); | this.pnlAll.SuspendLayout(); | ||||
this.pnlBodyCenter.SuspendLayout(); | this.pnlBodyCenter.SuspendLayout(); | ||||
this.pnlRigh.SuspendLayout(); | this.pnlRigh.SuspendLayout(); | ||||
@@ -237,7 +238,8 @@ | |||||
this.InstrumentField, | this.InstrumentField, | ||||
this.CnasField, | this.CnasField, | ||||
this.PrimaryKey, | this.PrimaryKey, | ||||
this.DateKey}); | |||||
this.DateKey, | |||||
this.字段属性}); | |||||
this.dgvMapping.ContextMenuStrip = this.cmsMapping; | this.dgvMapping.ContextMenuStrip = this.cmsMapping; | ||||
this.dgvMapping.Dock = System.Windows.Forms.DockStyle.Fill; | this.dgvMapping.Dock = System.Windows.Forms.DockStyle.Fill; | ||||
this.dgvMapping.Location = new System.Drawing.Point(0, 0); | this.dgvMapping.Location = new System.Drawing.Point(0, 0); | ||||
@@ -251,6 +253,43 @@ | |||||
this.dgvMapping.Size = new System.Drawing.Size(1045, 228); | this.dgvMapping.Size = new System.Drawing.Size(1045, 228); | ||||
this.dgvMapping.TabIndex = 1; | this.dgvMapping.TabIndex = 1; | ||||
// | // | ||||
// InstrumentField | |||||
// | |||||
this.InstrumentField.DataPropertyName = "SourceField"; | |||||
this.InstrumentField.HeaderText = "设备数据列"; | |||||
this.InstrumentField.Name = "InstrumentField"; | |||||
this.InstrumentField.ReadOnly = true; | |||||
this.InstrumentField.Width = 200; | |||||
// | |||||
// CnasField | |||||
// | |||||
this.CnasField.DataPropertyName = "TargetField"; | |||||
this.CnasField.HeaderText = "CNAS数据列"; | |||||
this.CnasField.Name = "CnasField"; | |||||
this.CnasField.ReadOnly = true; | |||||
this.CnasField.Width = 200; | |||||
// | |||||
// PrimaryKey | |||||
// | |||||
this.PrimaryKey.DataPropertyName = "IfPrimaryKey"; | |||||
this.PrimaryKey.HeaderText = "关键字段"; | |||||
this.PrimaryKey.Name = "PrimaryKey"; | |||||
this.PrimaryKey.Width = 200; | |||||
// | |||||
// DateKey | |||||
// | |||||
this.DateKey.DataPropertyName = "IfDateField"; | |||||
this.DateKey.HeaderText = "日期字段"; | |||||
this.DateKey.Name = "DateKey"; | |||||
this.DateKey.Width = 200; | |||||
// | |||||
// 字段属性 | |||||
// | |||||
this.字段属性.DataPropertyName = "DataType"; | |||||
this.字段属性.HeaderText = "数据类型"; | |||||
this.字段属性.Name = "字段属性"; | |||||
this.字段属性.Width = 200; | |||||
// | |||||
// cmsMapping | // cmsMapping | ||||
// | // | ||||
this.cmsMapping.ImageScalingSize = new System.Drawing.Size(20, 20); | this.cmsMapping.ImageScalingSize = new System.Drawing.Size(20, 20); | ||||
@@ -280,7 +319,7 @@ | |||||
// | // | ||||
// txtInstrumentColumn | // txtInstrumentColumn | ||||
// | // | ||||
this.txtInstrumentColumn.Location = new System.Drawing.Point(429, 6); | |||||
this.txtInstrumentColumn.Location = new System.Drawing.Point(453, 9); | |||||
this.txtInstrumentColumn.Name = "txtInstrumentColumn"; | this.txtInstrumentColumn.Name = "txtInstrumentColumn"; | ||||
this.txtInstrumentColumn.ReadOnly = true; | this.txtInstrumentColumn.ReadOnly = true; | ||||
this.txtInstrumentColumn.Size = new System.Drawing.Size(195, 27); | this.txtInstrumentColumn.Size = new System.Drawing.Size(195, 27); | ||||
@@ -291,7 +330,7 @@ | |||||
// | // | ||||
this.cbxCNASColumn.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; | this.cbxCNASColumn.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; | ||||
this.cbxCNASColumn.FormattingEnabled = true; | this.cbxCNASColumn.FormattingEnabled = true; | ||||
this.cbxCNASColumn.Location = new System.Drawing.Point(429, 10); | |||||
this.cbxCNASColumn.Location = new System.Drawing.Point(453, 9); | |||||
this.cbxCNASColumn.Name = "cbxCNASColumn"; | this.cbxCNASColumn.Name = "cbxCNASColumn"; | ||||
this.cbxCNASColumn.Size = new System.Drawing.Size(184, 28); | this.cbxCNASColumn.Size = new System.Drawing.Size(184, 28); | ||||
this.cbxCNASColumn.TabIndex = 6; | this.cbxCNASColumn.TabIndex = 6; | ||||
@@ -384,6 +423,22 @@ | |||||
this.dgvInstruDS.Size = new System.Drawing.Size(508, 310); | this.dgvInstruDS.Size = new System.Drawing.Size(508, 310); | ||||
this.dgvInstruDS.TabIndex = 1; | this.dgvInstruDS.TabIndex = 1; | ||||
// | // | ||||
// InstruFieldName | |||||
// | |||||
this.InstruFieldName.DataPropertyName = "InstruFieldName"; | |||||
this.InstruFieldName.HeaderText = "列名"; | |||||
this.InstruFieldName.Name = "InstruFieldName"; | |||||
this.InstruFieldName.ReadOnly = true; | |||||
this.InstruFieldName.Width = 220; | |||||
// | |||||
// InstruDataType | |||||
// | |||||
this.InstruDataType.DataPropertyName = "InstruDataType"; | |||||
this.InstruDataType.HeaderText = "数据类型"; | |||||
this.InstruDataType.Name = "InstruDataType"; | |||||
this.InstruDataType.ReadOnly = true; | |||||
this.InstruDataType.Width = 240; | |||||
// | |||||
// pnlleft | // pnlleft | ||||
// | // | ||||
this.pnlleft.Controls.Add(this.cbxInstrument); | this.pnlleft.Controls.Add(this.cbxInstrument); | ||||
@@ -440,6 +495,22 @@ | |||||
this.dgvCnas.Size = new System.Drawing.Size(519, 310); | this.dgvCnas.Size = new System.Drawing.Size(519, 310); | ||||
this.dgvCnas.TabIndex = 2; | this.dgvCnas.TabIndex = 2; | ||||
// | // | ||||
// CNASFieldName | |||||
// | |||||
this.CNASFieldName.DataPropertyName = "CnasFieldName"; | |||||
this.CNASFieldName.HeaderText = "列名"; | |||||
this.CNASFieldName.Name = "CNASFieldName"; | |||||
this.CNASFieldName.ReadOnly = true; | |||||
this.CNASFieldName.Width = 220; | |||||
// | |||||
// CnasDataType | |||||
// | |||||
this.CnasDataType.DataPropertyName = "CnasDataType"; | |||||
this.CnasDataType.HeaderText = "数据类型"; | |||||
this.CnasDataType.Name = "CnasDataType"; | |||||
this.CnasDataType.ReadOnly = true; | |||||
this.CnasDataType.Width = 240; | |||||
// | |||||
// pnlRight | // pnlRight | ||||
// | // | ||||
this.pnlRight.Controls.Add(this.cbxCnas); | this.pnlRight.Controls.Add(this.cbxCnas); | ||||
@@ -780,68 +851,6 @@ | |||||
this.panel6.Size = new System.Drawing.Size(1207, 2); | this.panel6.Size = new System.Drawing.Size(1207, 2); | ||||
this.panel6.TabIndex = 1; | this.panel6.TabIndex = 1; | ||||
// | // | ||||
// InstrumentField | |||||
// | |||||
this.InstrumentField.DataPropertyName = "SourceField"; | |||||
this.InstrumentField.HeaderText = "设备数据列"; | |||||
this.InstrumentField.Name = "InstrumentField"; | |||||
this.InstrumentField.ReadOnly = true; | |||||
this.InstrumentField.Width = 240; | |||||
// | |||||
// CnasField | |||||
// | |||||
this.CnasField.DataPropertyName = "TargetField"; | |||||
this.CnasField.HeaderText = "CNAS数据列"; | |||||
this.CnasField.Name = "CnasField"; | |||||
this.CnasField.ReadOnly = true; | |||||
this.CnasField.Width = 240; | |||||
// | |||||
// PrimaryKey | |||||
// | |||||
this.PrimaryKey.DataPropertyName = "IfPrimaryKey"; | |||||
this.PrimaryKey.HeaderText = "关键字段"; | |||||
this.PrimaryKey.Name = "PrimaryKey"; | |||||
this.PrimaryKey.Width = 240; | |||||
// | |||||
// DateKey | |||||
// | |||||
this.DateKey.DataPropertyName = "IfDateField"; | |||||
this.DateKey.HeaderText = "日期字段"; | |||||
this.DateKey.Name = "DateKey"; | |||||
this.DateKey.Width = 240; | |||||
// | |||||
// InstruFieldName | |||||
// | |||||
this.InstruFieldName.DataPropertyName = "InstruFieldName"; | |||||
this.InstruFieldName.HeaderText = "列名"; | |||||
this.InstruFieldName.Name = "InstruFieldName"; | |||||
this.InstruFieldName.ReadOnly = true; | |||||
this.InstruFieldName.Width = 220; | |||||
// | |||||
// InstruDataType | |||||
// | |||||
this.InstruDataType.DataPropertyName = "InstruDataType"; | |||||
this.InstruDataType.HeaderText = "数据类型"; | |||||
this.InstruDataType.Name = "InstruDataType"; | |||||
this.InstruDataType.ReadOnly = true; | |||||
this.InstruDataType.Width = 240; | |||||
// | |||||
// CNASFieldName | |||||
// | |||||
this.CNASFieldName.DataPropertyName = "CnasFieldName"; | |||||
this.CNASFieldName.HeaderText = "列名"; | |||||
this.CNASFieldName.Name = "CNASFieldName"; | |||||
this.CNASFieldName.ReadOnly = true; | |||||
this.CNASFieldName.Width = 220; | |||||
// | |||||
// CnasDataType | |||||
// | |||||
this.CnasDataType.DataPropertyName = "CnasDataType"; | |||||
this.CnasDataType.HeaderText = "数据类型"; | |||||
this.CnasDataType.Name = "CnasDataType"; | |||||
this.CnasDataType.ReadOnly = true; | |||||
this.CnasDataType.Width = 240; | |||||
// | |||||
// frmSyncParams | // frmSyncParams | ||||
// | // | ||||
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); | this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); | ||||
@@ -961,14 +970,15 @@ | |||||
private System.Windows.Forms.ToolStripMenuItem tsmHelper; | private System.Windows.Forms.ToolStripMenuItem tsmHelper; | ||||
private System.Windows.Forms.Panel pnlBodyCenter; | private System.Windows.Forms.Panel pnlBodyCenter; | ||||
private System.Windows.Forms.ToolStripMenuItem tsmServiceSetting; | private System.Windows.Forms.ToolStripMenuItem tsmServiceSetting; | ||||
private System.Windows.Forms.DataGridViewTextBoxColumn InstrumentField; | |||||
private System.Windows.Forms.DataGridViewTextBoxColumn CnasField; | |||||
private System.Windows.Forms.DataGridViewCheckBoxColumn PrimaryKey; | |||||
private System.Windows.Forms.DataGridViewCheckBoxColumn DateKey; | |||||
private System.Windows.Forms.DataGridViewTextBoxColumn InstruFieldName; | private System.Windows.Forms.DataGridViewTextBoxColumn InstruFieldName; | ||||
private System.Windows.Forms.DataGridViewTextBoxColumn InstruDataType; | private System.Windows.Forms.DataGridViewTextBoxColumn InstruDataType; | ||||
private System.Windows.Forms.DataGridViewTextBoxColumn CNASFieldName; | private System.Windows.Forms.DataGridViewTextBoxColumn CNASFieldName; | ||||
private System.Windows.Forms.DataGridViewTextBoxColumn CnasDataType; | private System.Windows.Forms.DataGridViewTextBoxColumn CnasDataType; | ||||
private System.Windows.Forms.DataGridViewTextBoxColumn InstrumentField; | |||||
private System.Windows.Forms.DataGridViewTextBoxColumn CnasField; | |||||
private System.Windows.Forms.DataGridViewCheckBoxColumn PrimaryKey; | |||||
private System.Windows.Forms.DataGridViewCheckBoxColumn DateKey; | |||||
private System.Windows.Forms.DataGridViewTextBoxColumn 字段属性; | |||||
} | } | ||||
} | } | ||||
@@ -52,12 +52,7 @@ namespace CNAS_DBSync | |||||
this.btnDel.Visible = false; | this.btnDel.Visible = false; | ||||
} | } | ||||
strTableInfoMode = FileOperation.GetSystemFormatConfigData().TableInfoMode; | |||||
if (strTableInfoMode == "1") | |||||
{ | |||||
cbxInstrument.DropDownStyle = ComboBoxStyle.DropDown; | |||||
//cbxCnas.DropDownStyle = ComboBoxStyle.DropDown; | |||||
} | |||||
} | } | ||||
private void frmSyncParams_Load(object sender, EventArgs e) | private void frmSyncParams_Load(object sender, EventArgs e) | ||||
@@ -178,8 +173,10 @@ namespace CNAS_DBSync | |||||
/// <param name="e"></param> | /// <param name="e"></param> | ||||
private void btnAdd_Click(object sender, EventArgs e) | private void btnAdd_Click(object sender, EventArgs e) | ||||
{ | { | ||||
frmSystemSetting frmSetting = new frmSystemSetting(lstSyncInstrument); | |||||
frmInstrumentCode frmCode = new frmInstrumentCode(lstSyncInstrument); | frmInstrumentCode frmCode = new frmInstrumentCode(lstSyncInstrument); | ||||
frmCode.InstrumentDelegate = delegate(SyncInstrumentItemInfo Instrumentitem) | |||||
frmSetting.InstrumentDelegate = delegate(SyncInstrumentItemInfo Instrumentitem) | |||||
{ | { | ||||
lstSyncInstrument.Add(Instrumentitem); | lstSyncInstrument.Add(Instrumentitem); | ||||
@@ -189,7 +186,7 @@ namespace CNAS_DBSync | |||||
dgvInstrument_SelectionChanged(null, null); | dgvInstrument_SelectionChanged(null, null); | ||||
}; | }; | ||||
frmCode.ShowDialog(); | |||||
frmSetting.ShowDialog(); | |||||
} | } | ||||
@@ -384,13 +381,11 @@ namespace CNAS_DBSync | |||||
//仪器表名和选中行 | //仪器表名和选中行 | ||||
syncParamas.SourceTable = cbxInstrument.Text.ToString().ToUpper(); | syncParamas.SourceTable = cbxInstrument.Text.ToString().ToUpper(); | ||||
//syncParamas.SourceField = dgvInstruDS.Rows[dgvInstruDS.CurrentCell.RowIndex].Cells[0].Value.ToString().ToUpper(); | |||||
syncParamas.SourceField = dgvInstruDS.Rows[dgvInstruDS.CurrentCell.RowIndex].Cells[0].Value.ToString(); | |||||
syncParamas.SourceField = dgvInstruDS.Rows[dgvInstruDS.CurrentCell.RowIndex].Cells[0].Value.ToString().ToUpper(); | |||||
syncParamas.DataType = dgvInstruDS.Rows[dgvInstruDS.CurrentCell.RowIndex].Cells[1].Value.ToString().ToUpper(); | |||||
//CNAS表名和选中行 | //CNAS表名和选中行 | ||||
syncParamas.TargetTable = cbxCnas.Text.ToString().ToUpper(); | syncParamas.TargetTable = cbxCnas.Text.ToString().ToUpper(); | ||||
//syncParamas.TargetField = dgvCnas.Rows[dgvCnas.CurrentCell.RowIndex].Cells[0].Value.ToString().ToUpper(); | |||||
syncParamas.TargetField = dgvCnas.Rows[dgvCnas.CurrentCell.RowIndex].Cells[0].Value.ToString(); | |||||
syncParamas.TargetField = dgvCnas.Rows[dgvCnas.CurrentCell.RowIndex].Cells[0].Value.ToString().ToUpper(); | |||||
//验证数据合法性 | //验证数据合法性 | ||||
SyncParamsOperation paramsOperation = new SyncParamsOperation(); | SyncParamsOperation paramsOperation = new SyncParamsOperation(); | ||||
@@ -470,6 +465,15 @@ namespace CNAS_DBSync | |||||
private void btnLoadDBData_Click(object sender, EventArgs e) | private void btnLoadDBData_Click(object sender, EventArgs e) | ||||
{ | { | ||||
string strInstrumentCode = this.dgvInstrument.Rows[this.dgvInstrument.CurrentRow.Index].Cells[0].Value.ToString(); | |||||
strTableInfoMode = FileOperation.GetSystemFormatConfigData(strInstrumentCode).TableInfoMode; | |||||
if (strTableInfoMode == "1") | |||||
{ | |||||
cbxInstrument.DropDownStyle = ComboBoxStyle.DropDown; | |||||
//cbxCnas.DropDownStyle = ComboBoxStyle.DropDown; | |||||
} | |||||
int iReturn = 0; | int iReturn = 0; | ||||
if (strTableInfoMode=="0") | if (strTableInfoMode=="0") | ||||
iReturn=LoadSourceAndTargetData(true); | iReturn=LoadSourceAndTargetData(true); | ||||
@@ -734,25 +738,19 @@ namespace CNAS_DBSync | |||||
private void dgvInstrument_CellDoubleClick(object sender, DataGridViewCellEventArgs e) | private void dgvInstrument_CellDoubleClick(object sender, DataGridViewCellEventArgs e) | ||||
{ | { | ||||
if (dgvInstrument.Rows.Count <= 0) return; | if (dgvInstrument.Rows.Count <= 0) return; | ||||
//当前选中单元格 | //当前选中单元格 | ||||
string strInstrumentCode = this.dgvInstrument.Rows[this.dgvInstrument.CurrentRow.Index].Cells[0].Value.ToString(); | string strInstrumentCode = this.dgvInstrument.Rows[this.dgvInstrument.CurrentRow.Index].Cells[0].Value.ToString(); | ||||
frmInstrumentCode frmCode = new frmInstrumentCode(lstSyncInstrument, strInstrumentCode); | |||||
frmCode.InstrumentDelegate = delegate (SyncInstrumentItemInfo Instrumentitem) | |||||
{ | |||||
var lstInstrument = lstSyncInstrument.Where(s => s.Code == strInstrumentCode).ToList<SyncInstrumentItemInfo>(); | |||||
if (lstInstrument.Count == 1) | |||||
{ | |||||
lstInstrument[0].Code = Instrumentitem.Code; | |||||
lstInstrument[0].InstruType = Instrumentitem.InstruType; | |||||
} | |||||
}; | |||||
if (frmCode.ShowDialog() == DialogResult.OK) | |||||
frmSystemSetting frmSetting = new frmSystemSetting(lstSyncInstrument, strInstrumentCode); | |||||
frmSetting.InstrumentDelegate = delegate (SyncInstrumentItemInfo Instrumentitem) | |||||
{ | { | ||||
lstSyncInstrument.Add(Instrumentitem); | |||||
//绑定数据 | //绑定数据 | ||||
dgvInstrument.DataSource = new BindingList<SyncInstrumentItemInfo>(lstSyncInstrument); | dgvInstrument.DataSource = new BindingList<SyncInstrumentItemInfo>(lstSyncInstrument); | ||||
} | |||||
dgvInstrument.CurrentCell = dgvInstrument.Rows[dgvInstrument.Rows.Count - 1].Cells[0]; | |||||
dgvInstrument_SelectionChanged(null, null); | |||||
}; | |||||
frmSetting.ShowDialog(); | |||||
} | } | ||||
private void cbxCNASColumn_SelectedIndexChanged(object sender, EventArgs e) | private void cbxCNASColumn_SelectedIndexChanged(object sender, EventArgs e) | ||||
@@ -800,19 +798,19 @@ namespace CNAS_DBSync | |||||
private void tsmSystemSetting_Click(object sender, EventArgs e) | private void tsmSystemSetting_Click(object sender, EventArgs e) | ||||
{ | { | ||||
frmSystemSetting frmSystem = new frmSystemSetting(); | |||||
frmSystem.ShowDialog(); | |||||
//frmSystemSetting frmSystem = new frmSystemSetting(); | |||||
//frmSystem.ShowDialog(); | |||||
strTableInfoMode = FileOperation.GetSystemFormatConfigData().TableInfoMode; | |||||
if (strTableInfoMode == "1") | |||||
{ | |||||
cbxInstrument.DropDownStyle = ComboBoxStyle.DropDown; | |||||
//cbxCnas.DropDownStyle = ComboBoxStyle.DropDown; | |||||
} | |||||
else | |||||
{ | |||||
cbxInstrument.DropDownStyle = ComboBoxStyle.DropDownList; | |||||
} | |||||
//strTableInfoMode = FileOperation.GetSystemFormatConfigData().TableInfoMode; | |||||
//if (strTableInfoMode == "1") | |||||
//{ | |||||
// cbxInstrument.DropDownStyle = ComboBoxStyle.DropDown; | |||||
// //cbxCnas.DropDownStyle = ComboBoxStyle.DropDown; | |||||
//} | |||||
//else | |||||
//{ | |||||
// cbxInstrument.DropDownStyle = ComboBoxStyle.DropDownList; | |||||
//} | |||||
} | } | ||||
private void tsmSourceSetting_Click(object sender, EventArgs e) | private void tsmSourceSetting_Click(object sender, EventArgs e) | ||||
@@ -129,6 +129,9 @@ | |||||
<metadata name="DateKey.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | <metadata name="DateKey.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | ||||
<value>True</value> | <value>True</value> | ||||
</metadata> | </metadata> | ||||
<metadata name="字段属性.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | |||||
<value>True</value> | |||||
</metadata> | |||||
<metadata name="cmsMapping.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | <metadata name="cmsMapping.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||||
<value>17, 17</value> | <value>17, 17</value> | ||||
</metadata> | </metadata> | ||||
@@ -46,6 +46,8 @@ | |||||
this.pnlLeft = new System.Windows.Forms.Panel(); | this.pnlLeft = new System.Windows.Forms.Panel(); | ||||
this.pnlBottom = new System.Windows.Forms.Panel(); | this.pnlBottom = new System.Windows.Forms.Panel(); | ||||
this.pnlTop = new System.Windows.Forms.Panel(); | this.pnlTop = new System.Windows.Forms.Panel(); | ||||
this.txtCode = new System.Windows.Forms.TextBox(); | |||||
this.label5 = new System.Windows.Forms.Label(); | |||||
this.pnlAll.SuspendLayout(); | this.pnlAll.SuspendLayout(); | ||||
this.pnlBody.SuspendLayout(); | this.pnlBody.SuspendLayout(); | ||||
this.groupBox1.SuspendLayout(); | this.groupBox1.SuspendLayout(); | ||||
@@ -89,7 +91,9 @@ | |||||
// | // | ||||
// groupBox1 | // groupBox1 | ||||
// | // | ||||
this.groupBox1.Controls.Add(this.label5); | |||||
this.groupBox1.Controls.Add(this.label3); | this.groupBox1.Controls.Add(this.label3); | ||||
this.groupBox1.Controls.Add(this.txtCode); | |||||
this.groupBox1.Controls.Add(this.numpLogDataDays); | this.groupBox1.Controls.Add(this.numpLogDataDays); | ||||
this.groupBox1.Controls.Add(this.label4); | this.groupBox1.Controls.Add(this.label4); | ||||
this.groupBox1.Controls.Add(this.cbxAutomatic); | this.groupBox1.Controls.Add(this.cbxAutomatic); | ||||
@@ -108,7 +112,7 @@ | |||||
// label3 | // label3 | ||||
// | // | ||||
this.label3.AutoSize = true; | this.label3.AutoSize = true; | ||||
this.label3.Location = new System.Drawing.Point(430, 179); | |||||
this.label3.Location = new System.Drawing.Point(430, 166); | |||||
this.label3.Name = "label3"; | this.label3.Name = "label3"; | ||||
this.label3.Size = new System.Drawing.Size(24, 20); | this.label3.Size = new System.Drawing.Size(24, 20); | ||||
this.label3.TabIndex = 8; | this.label3.TabIndex = 8; | ||||
@@ -116,7 +120,7 @@ | |||||
// | // | ||||
// numpLogDataDays | // numpLogDataDays | ||||
// | // | ||||
this.numpLogDataDays.Location = new System.Drawing.Point(251, 177); | |||||
this.numpLogDataDays.Location = new System.Drawing.Point(251, 164); | |||||
this.numpLogDataDays.Name = "numpLogDataDays"; | this.numpLogDataDays.Name = "numpLogDataDays"; | ||||
this.numpLogDataDays.Size = new System.Drawing.Size(158, 27); | this.numpLogDataDays.Size = new System.Drawing.Size(158, 27); | ||||
this.numpLogDataDays.TabIndex = 7; | this.numpLogDataDays.TabIndex = 7; | ||||
@@ -124,7 +128,7 @@ | |||||
// label4 | // label4 | ||||
// | // | ||||
this.label4.AutoSize = true; | this.label4.AutoSize = true; | ||||
this.label4.Location = new System.Drawing.Point(41, 177); | |||||
this.label4.Location = new System.Drawing.Point(41, 164); | |||||
this.label4.Name = "label4"; | this.label4.Name = "label4"; | ||||
this.label4.Size = new System.Drawing.Size(204, 20); | this.label4.Size = new System.Drawing.Size(204, 20); | ||||
this.label4.TabIndex = 6; | this.label4.TabIndex = 6; | ||||
@@ -220,6 +224,23 @@ | |||||
this.pnlTop.Size = new System.Drawing.Size(670, 10); | this.pnlTop.Size = new System.Drawing.Size(670, 10); | ||||
this.pnlTop.TabIndex = 0; | this.pnlTop.TabIndex = 0; | ||||
// | // | ||||
// txtCode | |||||
// | |||||
this.txtCode.Location = new System.Drawing.Point(252, 218); | |||||
this.txtCode.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); | |||||
this.txtCode.Name = "txtCode"; | |||||
this.txtCode.Size = new System.Drawing.Size(158, 27); | |||||
this.txtCode.TabIndex = 0; | |||||
// | |||||
// label5 | |||||
// | |||||
this.label5.AutoSize = true; | |||||
this.label5.Location = new System.Drawing.Point(48, 218); | |||||
this.label5.Name = "label5"; | |||||
this.label5.Size = new System.Drawing.Size(84, 20); | |||||
this.label5.TabIndex = 2; | |||||
this.label5.Text = "仪器编号:"; | |||||
// | |||||
// frmSystemSetting | // frmSystemSetting | ||||
// | // | ||||
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); | this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); | ||||
@@ -264,5 +285,7 @@ | |||||
private System.Windows.Forms.NumericUpDown numpLogDataDays; | private System.Windows.Forms.NumericUpDown numpLogDataDays; | ||||
private System.Windows.Forms.Label label4; | private System.Windows.Forms.Label label4; | ||||
private System.Windows.Forms.Button btnOK; | private System.Windows.Forms.Button btnOK; | ||||
private System.Windows.Forms.Label label5; | |||||
private System.Windows.Forms.TextBox txtCode; | |||||
} | } | ||||
} | } |
@@ -15,15 +15,35 @@ namespace CNAS_DBSync | |||||
public partial class frmSystemSetting : Form | public partial class frmSystemSetting : Form | ||||
{ | { | ||||
private SystemFormatConfig systemConfig; | private SystemFormatConfig systemConfig; | ||||
public frmSystemSetting() | |||||
public List<SyncInstrumentItemInfo> lstSyncInstrument = new List<SyncInstrumentItemInfo>(); | |||||
public string strOldCode = ""; | |||||
public InstumentCodeHanlder InstrumentDelegate; | |||||
public InstrumentType type = InstrumentType.None; | |||||
public frmSystemSetting(List<SyncInstrumentItemInfo> lstSyncInstrument) | |||||
{ | { | ||||
InitializeComponent(); | InitializeComponent(); | ||||
this.lstSyncInstrument = lstSyncInstrument; | |||||
this.DialogResult = DialogResult.None; | |||||
} | } | ||||
public frmSystemSetting(List<SyncInstrumentItemInfo> lstSyncInstrument, string strOldCode = null) | |||||
{ | |||||
InitializeComponent(); | |||||
this.lstSyncInstrument = lstSyncInstrument; | |||||
this.strOldCode = this.txtCode.Text = strOldCode; | |||||
var lstInstrument = lstSyncInstrument.Where(s => s.Code == strOldCode).ToList<SyncInstrumentItemInfo>(); | |||||
if (lstInstrument.Count == 1) | |||||
{ | |||||
type = lstInstrument[0].InstruType; | |||||
//this.cbxInstruType.Text =GlobalCommonOperation.GetTitleByInstruType(type); | |||||
} | |||||
} | |||||
private void frmSystemSetting_Load(object sender, EventArgs e) | private void frmSystemSetting_Load(object sender, EventArgs e) | ||||
{ | { | ||||
//加载配置信息 | //加载配置信息 | ||||
systemConfig= FileOperation.GetSystemFormatConfigData(); | |||||
systemConfig = FileOperation.GetSystemFormatConfigData(strOldCode); | |||||
if (systemConfig.TableInfoMode == "1") | if (systemConfig.TableInfoMode == "1") | ||||
{ | { | ||||
@@ -49,14 +69,58 @@ namespace CNAS_DBSync | |||||
private void btnOK_Click(object sender, EventArgs e) | private void btnOK_Click(object sender, EventArgs e) | ||||
{ | { | ||||
//判断合法性,存储配置信息 | //判断合法性,存储配置信息 | ||||
systemConfig.TableInfoMode = this.cbxManual.Checked ? "1" : "0"; | systemConfig.TableInfoMode = this.cbxManual.Checked ? "1" : "0"; | ||||
systemConfig.ShowDelayDays = (-numpShowDataDays.Value).ToString(); | systemConfig.ShowDelayDays = (-numpShowDataDays.Value).ToString(); | ||||
systemConfig.ShowLogDays = (-numpLogDataDays.Value).ToString(); | systemConfig.ShowLogDays = (-numpLogDataDays.Value).ToString(); | ||||
systemConfig.YQName = this.txtCode.Text.Trim(); | |||||
bool bSave = FileOperation.SaveSystemFormatConfigData(systemConfig, systemConfig.YQName); | |||||
if (this.txtCode.Text.Trim() == strOldCode) //此时没有修改任何内容,直接关闭界面 | |||||
{ | |||||
//return; | |||||
this.Close(); | |||||
return; | |||||
} | |||||
if (this.txtCode.Text.Trim() != strOldCode) | |||||
{ | |||||
int iMessage = new InstrumentCodeOperation().CheckInstrumentCode(this.txtCode.Text.Trim(), lstSyncInstrument); | |||||
if (iMessage <= 0) | |||||
{ | |||||
switch (iMessage) | |||||
{ | |||||
case 0: | |||||
MessageBox.Show("输入不允许为空!请重新输入!"); | |||||
break; | |||||
case -1: | |||||
MessageBox.Show("输入含有特殊字符!请重新输入!"); | |||||
break; | |||||
case -2: | |||||
MessageBox.Show("仪器编码不允许重复!请重新输入!"); | |||||
break; | |||||
} | |||||
this.txtCode.Text = ""; | |||||
return; | |||||
} | |||||
} | |||||
//传输输入到父界面 | |||||
SyncInstrumentItemInfo syncinstrument = new SyncInstrumentItemInfo | |||||
{ | |||||
GUID = Guid.NewGuid().ToString(), | |||||
Code = this.txtCode.Text.Trim(), | |||||
//InstruType = GlobalCommonOperation.GetInstruTypeBySelectedItem(this.cbxInstruType.Text) | |||||
InstruType = InstrumentType.None | |||||
}; | |||||
this.InstrumentDelegate(syncinstrument); | |||||
bool bSave = FileOperation.SaveSystemFormatConfigData(systemConfig); | |||||
this.DialogResult = DialogResult.OK; | |||||
MessageBox.Show(bSave?"保存成功!":"保存失败!"); | |||||
//关闭界面 | |||||
this.Close(); | |||||
} | } | ||||
private void cbxManual_CheckedChanged(object sender, EventArgs e) | private void cbxManual_CheckedChanged(object sender, EventArgs e) | ||||
@@ -287,14 +287,30 @@ namespace CnasSynchronusClient | |||||
return systemFormatConfig; | return systemFormatConfig; | ||||
} | } | ||||
public static bool SaveSystemFormatConfigData(SystemFormatConfig systemFormatConfig) | |||||
public static SystemFormatConfig GetSystemFormatConfigData(string strInstrumentCode) | |||||
{ | |||||
SystemFormatConfig systemFormatConfig = new SystemFormatConfig(); | |||||
try | |||||
{ | |||||
string strLocalFileString = FileHelper.GetLocalFile(strLocalConfigPath_2, strInstrumentCode + ".xml"); | |||||
if (strLocalFileString != "") | |||||
systemFormatConfig = FileHelper.DeserializeToObject<SystemFormatConfig>(strLocalFileString); | |||||
} | |||||
catch (Exception ex) | |||||
{ | |||||
AppLog.Error(ex.Message); | |||||
} | |||||
return systemFormatConfig; | |||||
} | |||||
public static bool SaveSystemFormatConfigData(SystemFormatConfig systemFormatConfig, string FileName) | |||||
{ | { | ||||
bool bIfSuccess = false; | bool bIfSuccess = false; | ||||
try | try | ||||
{ | { | ||||
string strString = FileHelper.SerializeToXml<SystemFormatConfig>(systemFormatConfig); | string strString = FileHelper.SerializeToXml<SystemFormatConfig>(systemFormatConfig); | ||||
bIfSuccess = FileHelper.SaveLocalFile(strLocalConfigPath_2, "SystemFormatConfig.xml", strString); | |||||
bIfSuccess = FileHelper.SaveLocalFile(strLocalConfigPath_2, FileName + ".xml", strString); | |||||
} | } | ||||
catch (Exception ex) | catch (Exception ex) | ||||
{ | { | ||||
@@ -42,5 +42,7 @@ namespace CnasSynchrousModel | |||||
/// WebApi的Url | /// WebApi的Url | ||||
/// </summary> | /// </summary> | ||||
public string WebApiUrl { get; set; } | public string WebApiUrl { get; set; } | ||||
public string YQName { get; set; } | |||||
} | } | ||||
} | } |
@@ -39,5 +39,9 @@ namespace CnasSynchrousModel | |||||
/// 是否是关键日期字段 | /// 是否是关键日期字段 | ||||
/// </summary> | /// </summary> | ||||
public bool IfDateField { get; set; } | public bool IfDateField { get; set; } | ||||
/// <summary> | |||||
/// 数据类型 | |||||
/// </summary> | |||||
public string DataType { get; set; } | |||||
} | } | ||||
} | } |
@@ -1 +1 @@ | |||||
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 |
@@ -1 +1 @@ | |||||
BFEBFBFF000B06A2_7413EA0CEB72_7613EA0CEB71_7413EA0CEB71 | |||||
BFEBFBFF000A0652_B025AA3FD303_00FF7AB4C9BA_8C554AD3D7A5_8E554AD3D7A4_8C554AD3D7A4_8C554AD3D7A8 |