From: newton-cn Date: Sat, 11 Jan 2025 11:33:55 +0000 (+0900) Subject: 일회용 자동적립 폼 폰트수정 X-Git-Url: https://git.insang.kr/gitweb/?a=commitdiff_plain;h=60d8b26823182873ae43fec65b38c31e1ae95f94;p=newton-cn_pos.git 일회용 자동적립 폼 폰트수정 --- diff --git a/.vs/newton-cn/v16/.suo b/.vs/newton-cn/v16/.suo index bdd64e0..8858f3f 100644 Binary files a/.vs/newton-cn/v16/.suo and b/.vs/newton-cn/v16/.suo differ diff --git a/newton-cn/Form5.Designer.cs b/newton-cn/Form5.Designer.cs index 21a971a..f9318a9 100644 --- a/newton-cn/Form5.Designer.cs +++ b/newton-cn/Form5.Designer.cs @@ -81,6 +81,8 @@ namespace newton_cn // // button2 // + this.button2.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.button2.ForeColor = System.Drawing.Color.Black; this.button2.Location = new System.Drawing.Point(532, 358); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(105, 39); diff --git a/newton-cn/Form5.cs b/newton-cn/Form5.cs index 792c628..a3edecc 100644 --- a/newton-cn/Form5.cs +++ b/newton-cn/Form5.cs @@ -39,6 +39,30 @@ namespace newton_cn listView1.Columns.Add("ct_code", 70); Console.WriteLine(dateTimePicker1.Text); + + Console.WriteLine(dateTimePicker1.Text); + listView1.Items.Clear(); + string selected = dateTimePicker1.Text; + DBConnector dbc = new DBConnector(); + List> list = dbc.getDisposableIsEarn(selected); + + for (int i = 0; i < list.Count; i++) + { + String[] item = + { + list[i]["ps_date"], + list[i]["ct_name"], + list[i]["ps_prname"], + list[i]["ps_qty"], + list[i]["pe_bamt"], + Convert.ToBoolean(list[i]["is_earn"]) ? "O" : "X", + list[i]["pe_id"], + list[i]["ps_no"], + list[i]["ct_code"], + }; + ListViewItem lvi = new ListViewItem(item); + listView1.Items.Add(lvi); + } } private void button1_Click(object sender, EventArgs e) diff --git a/newton-cn/bin/Debug/newton-cn.exe b/newton-cn/bin/Debug/newton-cn.exe index 6229883..ab1a86a 100644 Binary files a/newton-cn/bin/Debug/newton-cn.exe and b/newton-cn/bin/Debug/newton-cn.exe differ diff --git a/newton-cn/bin/Debug/newton-cn.pdb b/newton-cn/bin/Debug/newton-cn.pdb index 2569670..c37e96c 100644 Binary files a/newton-cn/bin/Debug/newton-cn.pdb and b/newton-cn/bin/Debug/newton-cn.pdb differ diff --git a/newton-cn/bin/Release/newton-cn.exe b/newton-cn/bin/Release/newton-cn.exe index 18fada6..9d2cc8d 100644 Binary files a/newton-cn/bin/Release/newton-cn.exe and b/newton-cn/bin/Release/newton-cn.exe differ diff --git a/newton-cn/bin/Release/newton-cn.pdb b/newton-cn/bin/Release/newton-cn.pdb index 5c89fc4..618c524 100644 Binary files a/newton-cn/bin/Release/newton-cn.pdb and b/newton-cn/bin/Release/newton-cn.pdb differ diff --git a/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferences.cache index 7e5848f..d178759 100644 Binary files a/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/newton-cn/obj/Debug/newton-cn.csproj.GenerateResource.cache b/newton-cn/obj/Debug/newton-cn.csproj.GenerateResource.cache index 7ebb2e4..bb574d9 100644 Binary files a/newton-cn/obj/Debug/newton-cn.csproj.GenerateResource.cache and b/newton-cn/obj/Debug/newton-cn.csproj.GenerateResource.cache differ diff --git a/newton-cn/obj/Debug/newton-cn.exe b/newton-cn/obj/Debug/newton-cn.exe index 6229883..ab1a86a 100644 Binary files a/newton-cn/obj/Debug/newton-cn.exe and b/newton-cn/obj/Debug/newton-cn.exe differ diff --git a/newton-cn/obj/Debug/newton-cn.pdb b/newton-cn/obj/Debug/newton-cn.pdb index 2569670..c37e96c 100644 Binary files a/newton-cn/obj/Debug/newton-cn.pdb and b/newton-cn/obj/Debug/newton-cn.pdb differ diff --git a/newton-cn/obj/Release/newton-cn.csproj.GenerateResource.cache b/newton-cn/obj/Release/newton-cn.csproj.GenerateResource.cache index 7ebb2e4..bb574d9 100644 Binary files a/newton-cn/obj/Release/newton-cn.csproj.GenerateResource.cache and b/newton-cn/obj/Release/newton-cn.csproj.GenerateResource.cache differ diff --git a/newton-cn/obj/Release/newton-cn.exe b/newton-cn/obj/Release/newton-cn.exe index 68c91ed..9d2cc8d 100644 Binary files a/newton-cn/obj/Release/newton-cn.exe and b/newton-cn/obj/Release/newton-cn.exe differ diff --git a/newton-cn/obj/Release/newton-cn.pdb b/newton-cn/obj/Release/newton-cn.pdb index a28b53d..618c524 100644 Binary files a/newton-cn/obj/Release/newton-cn.pdb and b/newton-cn/obj/Release/newton-cn.pdb differ