summary report 관련 데이터 업데이트

This commit is contained in:
chi
2021-03-26 10:31:40 +09:00
parent 3a667f14b1
commit 1efe0fa04e
33 changed files with 13666 additions and 4411 deletions

View File

@@ -123,7 +123,7 @@ namespace Project
Func_Login();
Update_Site();
bw.RunWorkerAsync(); //background worker
@@ -136,11 +136,12 @@ namespace Project
{
WebApp.Start<OWIN.Startup>(url: "http://127.0.0.1:9000");
Console.WriteLine("start webapp");
}catch (Exception ex)
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
//서버ON
@@ -1156,5 +1157,19 @@ namespace Project
var f = new Dialog.AccessDB();
f.ShowDialog();
}
private void otherToolStripMenuItem_Click(object sender, EventArgs e)
{
string formkey = "OTHEREQ";
if (!ShowForm(formkey))
AddForm(formkey, new FEQ0000.fEquipment(FEQ0000.fEquipment.eTabletype.OTHER), "K3/K5");
}
private void summaryToolStripMenuItem_Click(object sender, EventArgs e)
{
string formkey = "EQSUM";
if (!ShowForm(formkey))
AddForm(formkey, new FEQ0000.fEquipmentSummary(), "장비전체요약");
}
}
}