Database 업데이트에 의한 자료 정리 및 임시 조치
Database 생성부 최신화 등록 화면 완료 나머지는 수정예정
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
using MetroFramework.Forms;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program.CustomForm
|
||||
@@ -35,6 +34,8 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomForm
|
||||
|
||||
private void metroDateTime_Start_ValueChanged(object sender, EventArgs e)
|
||||
{
|
||||
//TODO: 요금 업데이트 필요
|
||||
/*
|
||||
long cost = Global.GlobalSettings.UsageFee;
|
||||
|
||||
var days = (metroDateTime_End.Value - metroDateTime_Start.Value).TotalDays;
|
||||
@@ -51,7 +52,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomForm
|
||||
doubleCost -= (doubleCost % 10); // 10의 자리 버림
|
||||
int totalCost = (int)doubleCost;
|
||||
metroTextBox_Cost.Text = totalCost.ToString();
|
||||
|
||||
*/
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -1,12 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Diagnostics;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program.CustomForm
|
||||
@@ -34,7 +26,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomForm
|
||||
private void metroButton_Ok_Click(object sender, EventArgs e)
|
||||
{
|
||||
int count = int.Parse(metroLabel_WaitingCount.Text);
|
||||
if(count < 1)
|
||||
if (count < 1)
|
||||
{
|
||||
DialogResult = DialogResult.Cancel;
|
||||
}
|
||||
@@ -42,7 +34,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomForm
|
||||
{
|
||||
count = _MaxCount;
|
||||
}
|
||||
ResultCount=count;
|
||||
ResultCount = count;
|
||||
StartDate = metroDateTime_Start.Value;
|
||||
EndDate = metroDateTime_End.Value;
|
||||
int.TryParse(metroTextBox_Cost.Text, out var tempCost);
|
||||
@@ -67,7 +59,9 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomForm
|
||||
|
||||
private void metroDateTime_Start_ValueChanged(object sender, EventArgs e)
|
||||
{
|
||||
long cost = Global.GlobalSettings.UsageFee;
|
||||
//TODO: 요금계산 부분 다시 작성 요망
|
||||
/*
|
||||
//long cost = Global.GlobalSettings.UsageFee;
|
||||
|
||||
var days = (metroDateTime_End.Value - metroDateTime_Start.Value).TotalDays;
|
||||
if (days == 365)
|
||||
@@ -83,6 +77,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomForm
|
||||
doubleCost -= (doubleCost % 10); // 10의 자리 버림
|
||||
int totalCost = (int)doubleCost;
|
||||
metroTextBox_Cost.Text = totalCost.ToString();
|
||||
*/
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,190 +0,0 @@
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
{
|
||||
partial class AboutBox1
|
||||
{
|
||||
/// <summary>
|
||||
/// 필수 디자이너 변수입니다.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// 사용 중인 모든 리소스를 정리합니다.
|
||||
/// </summary>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form 디자이너에서 생성한 코드
|
||||
|
||||
/// <summary>
|
||||
/// 디자이너 지원에 필요한 메서드입니다.
|
||||
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBox1));
|
||||
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.logoPictureBox = new System.Windows.Forms.PictureBox();
|
||||
this.labelProductName = new System.Windows.Forms.Label();
|
||||
this.labelVersion = new System.Windows.Forms.Label();
|
||||
this.labelCopyright = new System.Windows.Forms.Label();
|
||||
this.labelCompanyName = new System.Windows.Forms.Label();
|
||||
this.textBoxDescription = new System.Windows.Forms.TextBox();
|
||||
this.okButton = new System.Windows.Forms.Button();
|
||||
this.tableLayoutPanel.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// tableLayoutPanel
|
||||
//
|
||||
this.tableLayoutPanel.ColumnCount = 2;
|
||||
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
|
||||
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
|
||||
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
|
||||
this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
|
||||
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
|
||||
this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
|
||||
this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
|
||||
this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
|
||||
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
|
||||
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.tableLayoutPanel.Location = new System.Drawing.Point(10, 8);
|
||||
this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
||||
this.tableLayoutPanel.Name = "tableLayoutPanel";
|
||||
this.tableLayoutPanel.RowCount = 6;
|
||||
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
|
||||
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
|
||||
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
|
||||
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
|
||||
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
||||
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
|
||||
this.tableLayoutPanel.Size = new System.Drawing.Size(487, 245);
|
||||
this.tableLayoutPanel.TabIndex = 0;
|
||||
//
|
||||
// logoPictureBox
|
||||
//
|
||||
this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
|
||||
this.logoPictureBox.Location = new System.Drawing.Point(4, 3);
|
||||
this.logoPictureBox.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
||||
this.logoPictureBox.Name = "logoPictureBox";
|
||||
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
|
||||
this.logoPictureBox.Size = new System.Drawing.Size(152, 239);
|
||||
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
||||
this.logoPictureBox.TabIndex = 12;
|
||||
this.logoPictureBox.TabStop = false;
|
||||
//
|
||||
// labelProductName
|
||||
//
|
||||
this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.labelProductName.Location = new System.Drawing.Point(167, 0);
|
||||
this.labelProductName.Margin = new System.Windows.Forms.Padding(7, 0, 4, 0);
|
||||
this.labelProductName.MaximumSize = new System.Drawing.Size(0, 16);
|
||||
this.labelProductName.Name = "labelProductName";
|
||||
this.labelProductName.Size = new System.Drawing.Size(316, 16);
|
||||
this.labelProductName.TabIndex = 19;
|
||||
this.labelProductName.Text = "제품 이름";
|
||||
this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// labelVersion
|
||||
//
|
||||
this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.labelVersion.Location = new System.Drawing.Point(167, 24);
|
||||
this.labelVersion.Margin = new System.Windows.Forms.Padding(7, 0, 4, 0);
|
||||
this.labelVersion.MaximumSize = new System.Drawing.Size(0, 16);
|
||||
this.labelVersion.Name = "labelVersion";
|
||||
this.labelVersion.Size = new System.Drawing.Size(316, 16);
|
||||
this.labelVersion.TabIndex = 0;
|
||||
this.labelVersion.Text = "버전";
|
||||
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// labelCopyright
|
||||
//
|
||||
this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.labelCopyright.Location = new System.Drawing.Point(167, 48);
|
||||
this.labelCopyright.Margin = new System.Windows.Forms.Padding(7, 0, 4, 0);
|
||||
this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 16);
|
||||
this.labelCopyright.Name = "labelCopyright";
|
||||
this.labelCopyright.Size = new System.Drawing.Size(316, 16);
|
||||
this.labelCopyright.TabIndex = 21;
|
||||
this.labelCopyright.Text = "저작권";
|
||||
this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// labelCompanyName
|
||||
//
|
||||
this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.labelCompanyName.Location = new System.Drawing.Point(167, 72);
|
||||
this.labelCompanyName.Margin = new System.Windows.Forms.Padding(7, 0, 4, 0);
|
||||
this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 16);
|
||||
this.labelCompanyName.Name = "labelCompanyName";
|
||||
this.labelCompanyName.Size = new System.Drawing.Size(316, 16);
|
||||
this.labelCompanyName.TabIndex = 22;
|
||||
this.labelCompanyName.Text = "회사 이름";
|
||||
this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// textBoxDescription
|
||||
//
|
||||
this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.textBoxDescription.Location = new System.Drawing.Point(167, 99);
|
||||
this.textBoxDescription.Margin = new System.Windows.Forms.Padding(7, 3, 4, 3);
|
||||
this.textBoxDescription.Multiline = true;
|
||||
this.textBoxDescription.Name = "textBoxDescription";
|
||||
this.textBoxDescription.ReadOnly = true;
|
||||
this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
||||
this.textBoxDescription.Size = new System.Drawing.Size(316, 116);
|
||||
this.textBoxDescription.TabIndex = 23;
|
||||
this.textBoxDescription.TabStop = false;
|
||||
this.textBoxDescription.Text = "설명";
|
||||
//
|
||||
// okButton
|
||||
//
|
||||
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||||
this.okButton.Location = new System.Drawing.Point(395, 221);
|
||||
this.okButton.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
||||
this.okButton.Name = "okButton";
|
||||
this.okButton.Size = new System.Drawing.Size(88, 21);
|
||||
this.okButton.TabIndex = 24;
|
||||
this.okButton.Text = "확인(&O)";
|
||||
//
|
||||
// AboutBox1
|
||||
//
|
||||
this.AcceptButton = this.okButton;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(507, 261);
|
||||
this.Controls.Add(this.tableLayoutPanel);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "AboutBox1";
|
||||
this.Padding = new System.Windows.Forms.Padding(10, 8, 10, 8);
|
||||
this.ShowIcon = false;
|
||||
this.ShowInTaskbar = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "AboutBox1";
|
||||
this.tableLayoutPanel.ResumeLayout(false);
|
||||
this.tableLayoutPanel.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
|
||||
private System.Windows.Forms.PictureBox logoPictureBox;
|
||||
private System.Windows.Forms.Label labelProductName;
|
||||
private System.Windows.Forms.Label labelVersion;
|
||||
private System.Windows.Forms.Label labelCopyright;
|
||||
private System.Windows.Forms.Label labelCompanyName;
|
||||
private System.Windows.Forms.TextBox textBoxDescription;
|
||||
private System.Windows.Forms.Button okButton;
|
||||
}
|
||||
}
|
@@ -1,105 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
{
|
||||
partial class AboutBox1 : Form
|
||||
{
|
||||
public AboutBox1()
|
||||
{
|
||||
InitializeComponent();
|
||||
this.Text = String.Format("{0} 정보", AssemblyTitle);
|
||||
this.labelProductName.Text = AssemblyProduct;
|
||||
this.labelVersion.Text = String.Format("버전 {0}", AssemblyVersion);
|
||||
this.labelCopyright.Text = AssemblyCopyright;
|
||||
this.labelCompanyName.Text = AssemblyCompany;
|
||||
this.textBoxDescription.Text = AssemblyDescription;
|
||||
}
|
||||
|
||||
#region 어셈블리 특성 접근자
|
||||
|
||||
public string AssemblyTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false);
|
||||
if (attributes.Length > 0)
|
||||
{
|
||||
AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0];
|
||||
if (titleAttribute.Title != "")
|
||||
{
|
||||
return titleAttribute.Title;
|
||||
}
|
||||
}
|
||||
return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase);
|
||||
}
|
||||
}
|
||||
|
||||
public string AssemblyVersion
|
||||
{
|
||||
get
|
||||
{
|
||||
return Assembly.GetExecutingAssembly().GetName().Version.ToString();
|
||||
}
|
||||
}
|
||||
|
||||
public string AssemblyDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false);
|
||||
if (attributes.Length == 0)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
return ((AssemblyDescriptionAttribute)attributes[0]).Description;
|
||||
}
|
||||
}
|
||||
|
||||
public string AssemblyProduct
|
||||
{
|
||||
get
|
||||
{
|
||||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false);
|
||||
if (attributes.Length == 0)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
return ((AssemblyProductAttribute)attributes[0]).Product;
|
||||
}
|
||||
}
|
||||
|
||||
public string AssemblyCopyright
|
||||
{
|
||||
get
|
||||
{
|
||||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false);
|
||||
if (attributes.Length == 0)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
return ((AssemblyCopyrightAttribute)attributes[0]).Copyright;
|
||||
}
|
||||
}
|
||||
|
||||
public string AssemblyCompany
|
||||
{
|
||||
get
|
||||
{
|
||||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false);
|
||||
if (attributes.Length == 0)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
return ((AssemblyCompanyAttribute)attributes[0]).Company;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
@@ -1,603 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="logoPictureBox.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
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
|
||||
</value>
|
||||
</data>
|
||||
</root>
|
@@ -31,20 +31,26 @@
|
||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
this.metroRadioButton_Waiting = new MetroFramework.Controls.MetroRadioButton();
|
||||
this.metroRadioButton_Draw = new MetroFramework.Controls.MetroRadioButton();
|
||||
this.metroLabel_RegistrationNumberTruck = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel_RegistrationNumberPassenger = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel_CargoVehicleNumber = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel_PassengerVehicleNumber = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel_Name = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel_Phone = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel_Address = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel_Inspection = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroTextBox_RegistrationNumberTruck = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_RegistrationNumberPassenger = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_CargoVehicleNumber = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_PassengerVehicleNumber = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_Name = new MetroFramework.Controls.MetroTextBox();
|
||||
this.maskedTextBox_Phone = new System.Windows.Forms.MaskedTextBox();
|
||||
this.metroTextBox_Address = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroCheckBox_Inspection = new MetroFramework.Controls.MetroCheckBox();
|
||||
this.metroButton_Register = new MetroFramework.Controls.MetroButton();
|
||||
this.metroButton_Cancel = new MetroFramework.Controls.MetroButton();
|
||||
this.metroTextBox_CargoVehicleName = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroLabel1 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroTextBox_PassengerVehicleName = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroLabel2 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroTextBox_PersonalNumber = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroLabel3 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel4 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroComboBox_VehicleType = new MetroFramework.Controls.MetroComboBox();
|
||||
this.groupBox1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
@@ -83,123 +89,110 @@
|
||||
this.metroRadioButton_Draw.Text = "추첨 접수";
|
||||
this.metroRadioButton_Draw.UseSelectable = true;
|
||||
//
|
||||
// metroLabel_RegistrationNumberTruck
|
||||
// metroLabel_CargoVehicleNumber
|
||||
//
|
||||
this.metroLabel_RegistrationNumberTruck.AutoSize = true;
|
||||
this.metroLabel_RegistrationNumberTruck.Location = new System.Drawing.Point(30, 80);
|
||||
this.metroLabel_RegistrationNumberTruck.Name = "metroLabel_RegistrationNumberTruck";
|
||||
this.metroLabel_RegistrationNumberTruck.Size = new System.Drawing.Size(101, 19);
|
||||
this.metroLabel_RegistrationNumberTruck.TabIndex = 1;
|
||||
this.metroLabel_RegistrationNumberTruck.Text = "차량번호(화물)";
|
||||
this.metroLabel_CargoVehicleNumber.AutoSize = true;
|
||||
this.metroLabel_CargoVehicleNumber.Location = new System.Drawing.Point(30, 80);
|
||||
this.metroLabel_CargoVehicleNumber.Name = "metroLabel_CargoVehicleNumber";
|
||||
this.metroLabel_CargoVehicleNumber.Size = new System.Drawing.Size(101, 19);
|
||||
this.metroLabel_CargoVehicleNumber.TabIndex = 1;
|
||||
this.metroLabel_CargoVehicleNumber.Text = "차량번호(화물)";
|
||||
//
|
||||
// metroLabel_RegistrationNumberPassenger
|
||||
// metroLabel_PassengerVehicleNumber
|
||||
//
|
||||
this.metroLabel_RegistrationNumberPassenger.AutoSize = true;
|
||||
this.metroLabel_RegistrationNumberPassenger.Location = new System.Drawing.Point(30, 110);
|
||||
this.metroLabel_RegistrationNumberPassenger.Name = "metroLabel_RegistrationNumberPassenger";
|
||||
this.metroLabel_RegistrationNumberPassenger.Size = new System.Drawing.Size(101, 19);
|
||||
this.metroLabel_RegistrationNumberPassenger.TabIndex = 2;
|
||||
this.metroLabel_RegistrationNumberPassenger.Text = "차량번호(승용)";
|
||||
this.metroLabel_PassengerVehicleNumber.AutoSize = true;
|
||||
this.metroLabel_PassengerVehicleNumber.Location = new System.Drawing.Point(30, 140);
|
||||
this.metroLabel_PassengerVehicleNumber.Name = "metroLabel_PassengerVehicleNumber";
|
||||
this.metroLabel_PassengerVehicleNumber.Size = new System.Drawing.Size(101, 19);
|
||||
this.metroLabel_PassengerVehicleNumber.TabIndex = 2;
|
||||
this.metroLabel_PassengerVehicleNumber.Text = "차량번호(승용)";
|
||||
//
|
||||
// metroLabel_Name
|
||||
//
|
||||
this.metroLabel_Name.AutoSize = true;
|
||||
this.metroLabel_Name.Location = new System.Drawing.Point(30, 140);
|
||||
this.metroLabel_Name.Location = new System.Drawing.Point(30, 240);
|
||||
this.metroLabel_Name.Name = "metroLabel_Name";
|
||||
this.metroLabel_Name.Size = new System.Drawing.Size(37, 19);
|
||||
this.metroLabel_Name.Size = new System.Drawing.Size(101, 19);
|
||||
this.metroLabel_Name.TabIndex = 3;
|
||||
this.metroLabel_Name.Text = "이름";
|
||||
this.metroLabel_Name.Text = "이 름";
|
||||
//
|
||||
// metroLabel_Phone
|
||||
//
|
||||
this.metroLabel_Phone.AutoSize = true;
|
||||
this.metroLabel_Phone.Location = new System.Drawing.Point(30, 170);
|
||||
this.metroLabel_Phone.Location = new System.Drawing.Point(30, 330);
|
||||
this.metroLabel_Phone.Name = "metroLabel_Phone";
|
||||
this.metroLabel_Phone.Size = new System.Drawing.Size(51, 19);
|
||||
this.metroLabel_Phone.Size = new System.Drawing.Size(103, 19);
|
||||
this.metroLabel_Phone.TabIndex = 4;
|
||||
this.metroLabel_Phone.Text = "연락처";
|
||||
this.metroLabel_Phone.Text = "연 락 처";
|
||||
//
|
||||
// metroLabel_Address
|
||||
//
|
||||
this.metroLabel_Address.AutoSize = true;
|
||||
this.metroLabel_Address.Location = new System.Drawing.Point(30, 200);
|
||||
this.metroLabel_Address.Location = new System.Drawing.Point(30, 360);
|
||||
this.metroLabel_Address.Name = "metroLabel_Address";
|
||||
this.metroLabel_Address.Size = new System.Drawing.Size(37, 19);
|
||||
this.metroLabel_Address.Size = new System.Drawing.Size(101, 19);
|
||||
this.metroLabel_Address.TabIndex = 5;
|
||||
this.metroLabel_Address.Text = "주소";
|
||||
this.metroLabel_Address.Text = "주 소";
|
||||
//
|
||||
// metroLabel_Inspection
|
||||
//
|
||||
this.metroLabel_Inspection.AutoSize = true;
|
||||
this.metroLabel_Inspection.Location = new System.Drawing.Point(30, 230);
|
||||
this.metroLabel_Inspection.Name = "metroLabel_Inspection";
|
||||
this.metroLabel_Inspection.Size = new System.Drawing.Size(69, 19);
|
||||
this.metroLabel_Inspection.TabIndex = 8;
|
||||
this.metroLabel_Inspection.Text = "서류 검토";
|
||||
//
|
||||
// metroTextBox_RegistrationNumberTruck
|
||||
// metroTextBox_CargoVehicleNumber
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_RegistrationNumberTruck.CustomButton.Image = null;
|
||||
this.metroTextBox_RegistrationNumberTruck.CustomButton.Location = new System.Drawing.Point(68, 1);
|
||||
this.metroTextBox_RegistrationNumberTruck.CustomButton.Name = "";
|
||||
this.metroTextBox_RegistrationNumberTruck.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_RegistrationNumberTruck.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_RegistrationNumberTruck.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_RegistrationNumberTruck.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_RegistrationNumberTruck.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_RegistrationNumberTruck.CustomButton.Visible = false;
|
||||
this.metroTextBox_RegistrationNumberTruck.Lines = new string[] {
|
||||
"경기90바9999"};
|
||||
this.metroTextBox_RegistrationNumberTruck.Location = new System.Drawing.Point(140, 80);
|
||||
this.metroTextBox_RegistrationNumberTruck.MaxLength = 32767;
|
||||
this.metroTextBox_RegistrationNumberTruck.Name = "metroTextBox_RegistrationNumberTruck";
|
||||
this.metroTextBox_RegistrationNumberTruck.PasswordChar = '\0';
|
||||
this.metroTextBox_RegistrationNumberTruck.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_RegistrationNumberTruck.SelectedText = "";
|
||||
this.metroTextBox_RegistrationNumberTruck.SelectionLength = 0;
|
||||
this.metroTextBox_RegistrationNumberTruck.SelectionStart = 0;
|
||||
this.metroTextBox_RegistrationNumberTruck.ShortcutsEnabled = true;
|
||||
this.metroTextBox_RegistrationNumberTruck.Size = new System.Drawing.Size(90, 23);
|
||||
this.metroTextBox_RegistrationNumberTruck.TabIndex = 2;
|
||||
this.metroTextBox_RegistrationNumberTruck.Text = "경기90바9999";
|
||||
this.metroTextBox_RegistrationNumberTruck.UseSelectable = true;
|
||||
this.metroTextBox_RegistrationNumberTruck.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_RegistrationNumberTruck.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
this.metroTextBox_CargoVehicleNumber.CustomButton.Image = null;
|
||||
this.metroTextBox_CargoVehicleNumber.CustomButton.Location = new System.Drawing.Point(108, 1);
|
||||
this.metroTextBox_CargoVehicleNumber.CustomButton.Name = "";
|
||||
this.metroTextBox_CargoVehicleNumber.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_CargoVehicleNumber.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_CargoVehicleNumber.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_CargoVehicleNumber.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_CargoVehicleNumber.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_CargoVehicleNumber.CustomButton.Visible = false;
|
||||
this.metroTextBox_CargoVehicleNumber.Lines = new string[0];
|
||||
this.metroTextBox_CargoVehicleNumber.Location = new System.Drawing.Point(140, 76);
|
||||
this.metroTextBox_CargoVehicleNumber.MaxLength = 32767;
|
||||
this.metroTextBox_CargoVehicleNumber.Name = "metroTextBox_CargoVehicleNumber";
|
||||
this.metroTextBox_CargoVehicleNumber.PasswordChar = '\0';
|
||||
this.metroTextBox_CargoVehicleNumber.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_CargoVehicleNumber.SelectedText = "";
|
||||
this.metroTextBox_CargoVehicleNumber.SelectionLength = 0;
|
||||
this.metroTextBox_CargoVehicleNumber.SelectionStart = 0;
|
||||
this.metroTextBox_CargoVehicleNumber.ShortcutsEnabled = true;
|
||||
this.metroTextBox_CargoVehicleNumber.Size = new System.Drawing.Size(130, 23);
|
||||
this.metroTextBox_CargoVehicleNumber.TabIndex = 2;
|
||||
this.metroTextBox_CargoVehicleNumber.UseSelectable = true;
|
||||
this.metroTextBox_CargoVehicleNumber.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_CargoVehicleNumber.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroTextBox_RegistrationNumberPassenger
|
||||
// metroTextBox_PassengerVehicleNumber
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_RegistrationNumberPassenger.CustomButton.Image = null;
|
||||
this.metroTextBox_RegistrationNumberPassenger.CustomButton.Location = new System.Drawing.Point(68, 1);
|
||||
this.metroTextBox_RegistrationNumberPassenger.CustomButton.Name = "";
|
||||
this.metroTextBox_RegistrationNumberPassenger.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_RegistrationNumberPassenger.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_RegistrationNumberPassenger.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_RegistrationNumberPassenger.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_RegistrationNumberPassenger.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_RegistrationNumberPassenger.CustomButton.Visible = false;
|
||||
this.metroTextBox_RegistrationNumberPassenger.Lines = new string[] {
|
||||
"경기90바9999"};
|
||||
this.metroTextBox_RegistrationNumberPassenger.Location = new System.Drawing.Point(140, 110);
|
||||
this.metroTextBox_RegistrationNumberPassenger.MaxLength = 32767;
|
||||
this.metroTextBox_RegistrationNumberPassenger.Name = "metroTextBox_RegistrationNumberPassenger";
|
||||
this.metroTextBox_RegistrationNumberPassenger.PasswordChar = '\0';
|
||||
this.metroTextBox_RegistrationNumberPassenger.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_RegistrationNumberPassenger.SelectedText = "";
|
||||
this.metroTextBox_RegistrationNumberPassenger.SelectionLength = 0;
|
||||
this.metroTextBox_RegistrationNumberPassenger.SelectionStart = 0;
|
||||
this.metroTextBox_RegistrationNumberPassenger.ShortcutsEnabled = true;
|
||||
this.metroTextBox_RegistrationNumberPassenger.Size = new System.Drawing.Size(90, 23);
|
||||
this.metroTextBox_RegistrationNumberPassenger.TabIndex = 3;
|
||||
this.metroTextBox_RegistrationNumberPassenger.Text = "경기90바9999";
|
||||
this.metroTextBox_RegistrationNumberPassenger.UseSelectable = true;
|
||||
this.metroTextBox_RegistrationNumberPassenger.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_RegistrationNumberPassenger.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
this.metroTextBox_PassengerVehicleNumber.CustomButton.Image = null;
|
||||
this.metroTextBox_PassengerVehicleNumber.CustomButton.Location = new System.Drawing.Point(108, 1);
|
||||
this.metroTextBox_PassengerVehicleNumber.CustomButton.Name = "";
|
||||
this.metroTextBox_PassengerVehicleNumber.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_PassengerVehicleNumber.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_PassengerVehicleNumber.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_PassengerVehicleNumber.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_PassengerVehicleNumber.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_PassengerVehicleNumber.CustomButton.Visible = false;
|
||||
this.metroTextBox_PassengerVehicleNumber.Lines = new string[0];
|
||||
this.metroTextBox_PassengerVehicleNumber.Location = new System.Drawing.Point(140, 136);
|
||||
this.metroTextBox_PassengerVehicleNumber.MaxLength = 32767;
|
||||
this.metroTextBox_PassengerVehicleNumber.Name = "metroTextBox_PassengerVehicleNumber";
|
||||
this.metroTextBox_PassengerVehicleNumber.PasswordChar = '\0';
|
||||
this.metroTextBox_PassengerVehicleNumber.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_PassengerVehicleNumber.SelectedText = "";
|
||||
this.metroTextBox_PassengerVehicleNumber.SelectionLength = 0;
|
||||
this.metroTextBox_PassengerVehicleNumber.SelectionStart = 0;
|
||||
this.metroTextBox_PassengerVehicleNumber.ShortcutsEnabled = true;
|
||||
this.metroTextBox_PassengerVehicleNumber.Size = new System.Drawing.Size(130, 23);
|
||||
this.metroTextBox_PassengerVehicleNumber.TabIndex = 4;
|
||||
this.metroTextBox_PassengerVehicleNumber.UseSelectable = true;
|
||||
this.metroTextBox_PassengerVehicleNumber.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_PassengerVehicleNumber.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroTextBox_Name
|
||||
//
|
||||
@@ -207,7 +200,7 @@
|
||||
//
|
||||
//
|
||||
this.metroTextBox_Name.CustomButton.Image = null;
|
||||
this.metroTextBox_Name.CustomButton.Location = new System.Drawing.Point(67, 1);
|
||||
this.metroTextBox_Name.CustomButton.Location = new System.Drawing.Point(108, 1);
|
||||
this.metroTextBox_Name.CustomButton.Name = "";
|
||||
this.metroTextBox_Name.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_Name.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
@@ -216,7 +209,7 @@
|
||||
this.metroTextBox_Name.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_Name.CustomButton.Visible = false;
|
||||
this.metroTextBox_Name.Lines = new string[0];
|
||||
this.metroTextBox_Name.Location = new System.Drawing.Point(140, 140);
|
||||
this.metroTextBox_Name.Location = new System.Drawing.Point(140, 240);
|
||||
this.metroTextBox_Name.MaxLength = 32767;
|
||||
this.metroTextBox_Name.Name = "metroTextBox_Name";
|
||||
this.metroTextBox_Name.PasswordChar = '\0';
|
||||
@@ -225,8 +218,8 @@
|
||||
this.metroTextBox_Name.SelectionLength = 0;
|
||||
this.metroTextBox_Name.SelectionStart = 0;
|
||||
this.metroTextBox_Name.ShortcutsEnabled = true;
|
||||
this.metroTextBox_Name.Size = new System.Drawing.Size(89, 23);
|
||||
this.metroTextBox_Name.TabIndex = 4;
|
||||
this.metroTextBox_Name.Size = new System.Drawing.Size(130, 23);
|
||||
this.metroTextBox_Name.TabIndex = 7;
|
||||
this.metroTextBox_Name.UseSelectable = true;
|
||||
this.metroTextBox_Name.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_Name.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
@@ -234,11 +227,11 @@
|
||||
// maskedTextBox_Phone
|
||||
//
|
||||
this.maskedTextBox_Phone.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.maskedTextBox_Phone.Location = new System.Drawing.Point(140, 170);
|
||||
this.maskedTextBox_Phone.Location = new System.Drawing.Point(140, 328);
|
||||
this.maskedTextBox_Phone.Mask = "000-9000-0000";
|
||||
this.maskedTextBox_Phone.Name = "maskedTextBox_Phone";
|
||||
this.maskedTextBox_Phone.Size = new System.Drawing.Size(89, 21);
|
||||
this.maskedTextBox_Phone.TabIndex = 5;
|
||||
this.maskedTextBox_Phone.TabIndex = 9;
|
||||
//
|
||||
// metroTextBox_Address
|
||||
//
|
||||
@@ -255,7 +248,7 @@
|
||||
this.metroTextBox_Address.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_Address.CustomButton.Visible = false;
|
||||
this.metroTextBox_Address.Lines = new string[0];
|
||||
this.metroTextBox_Address.Location = new System.Drawing.Point(140, 200);
|
||||
this.metroTextBox_Address.Location = new System.Drawing.Point(140, 356);
|
||||
this.metroTextBox_Address.MaxLength = 32767;
|
||||
this.metroTextBox_Address.Name = "metroTextBox_Address";
|
||||
this.metroTextBox_Address.PasswordChar = '\0';
|
||||
@@ -265,30 +258,18 @@
|
||||
this.metroTextBox_Address.SelectionStart = 0;
|
||||
this.metroTextBox_Address.ShortcutsEnabled = true;
|
||||
this.metroTextBox_Address.Size = new System.Drawing.Size(313, 23);
|
||||
this.metroTextBox_Address.TabIndex = 6;
|
||||
this.metroTextBox_Address.TabIndex = 10;
|
||||
this.metroTextBox_Address.UseSelectable = true;
|
||||
this.metroTextBox_Address.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_Address.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroCheckBox_Inspection
|
||||
//
|
||||
this.metroCheckBox_Inspection.AutoSize = true;
|
||||
this.metroCheckBox_Inspection.Checked = true;
|
||||
this.metroCheckBox_Inspection.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.metroCheckBox_Inspection.Location = new System.Drawing.Point(140, 234);
|
||||
this.metroCheckBox_Inspection.Name = "metroCheckBox_Inspection";
|
||||
this.metroCheckBox_Inspection.Size = new System.Drawing.Size(74, 15);
|
||||
this.metroCheckBox_Inspection.TabIndex = 8;
|
||||
this.metroCheckBox_Inspection.Text = "검토 완료";
|
||||
this.metroCheckBox_Inspection.UseSelectable = true;
|
||||
//
|
||||
// metroButton_Register
|
||||
//
|
||||
this.metroButton_Register.FontSize = MetroFramework.MetroButtonSize.Tall;
|
||||
this.metroButton_Register.Location = new System.Drawing.Point(100, 270);
|
||||
this.metroButton_Register.Location = new System.Drawing.Point(96, 399);
|
||||
this.metroButton_Register.Name = "metroButton_Register";
|
||||
this.metroButton_Register.Size = new System.Drawing.Size(170, 50);
|
||||
this.metroButton_Register.TabIndex = 9;
|
||||
this.metroButton_Register.TabIndex = 11;
|
||||
this.metroButton_Register.Text = "접 수 ";
|
||||
this.metroButton_Register.UseSelectable = true;
|
||||
this.metroButton_Register.Click += new System.EventHandler(this.metroButton_Register_Click);
|
||||
@@ -296,37 +277,183 @@
|
||||
// metroButton_Cancel
|
||||
//
|
||||
this.metroButton_Cancel.FontSize = MetroFramework.MetroButtonSize.Tall;
|
||||
this.metroButton_Cancel.Location = new System.Drawing.Point(283, 270);
|
||||
this.metroButton_Cancel.Location = new System.Drawing.Point(279, 399);
|
||||
this.metroButton_Cancel.Name = "metroButton_Cancel";
|
||||
this.metroButton_Cancel.Size = new System.Drawing.Size(170, 50);
|
||||
this.metroButton_Cancel.TabIndex = 10;
|
||||
this.metroButton_Cancel.TabIndex = 12;
|
||||
this.metroButton_Cancel.Text = "취 소";
|
||||
this.metroButton_Cancel.UseSelectable = true;
|
||||
this.metroButton_Cancel.Click += new System.EventHandler(this.metroButton_Cancel_Click);
|
||||
//
|
||||
// metroTextBox_CargoVehicleName
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_CargoVehicleName.CustomButton.Image = null;
|
||||
this.metroTextBox_CargoVehicleName.CustomButton.Location = new System.Drawing.Point(180, 1);
|
||||
this.metroTextBox_CargoVehicleName.CustomButton.Name = "";
|
||||
this.metroTextBox_CargoVehicleName.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_CargoVehicleName.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_CargoVehicleName.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_CargoVehicleName.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_CargoVehicleName.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_CargoVehicleName.CustomButton.Visible = false;
|
||||
this.metroTextBox_CargoVehicleName.Lines = new string[0];
|
||||
this.metroTextBox_CargoVehicleName.Location = new System.Drawing.Point(140, 106);
|
||||
this.metroTextBox_CargoVehicleName.MaxLength = 32767;
|
||||
this.metroTextBox_CargoVehicleName.Name = "metroTextBox_CargoVehicleName";
|
||||
this.metroTextBox_CargoVehicleName.PasswordChar = '\0';
|
||||
this.metroTextBox_CargoVehicleName.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_CargoVehicleName.SelectedText = "";
|
||||
this.metroTextBox_CargoVehicleName.SelectionLength = 0;
|
||||
this.metroTextBox_CargoVehicleName.SelectionStart = 0;
|
||||
this.metroTextBox_CargoVehicleName.ShortcutsEnabled = true;
|
||||
this.metroTextBox_CargoVehicleName.Size = new System.Drawing.Size(202, 23);
|
||||
this.metroTextBox_CargoVehicleName.TabIndex = 3;
|
||||
this.metroTextBox_CargoVehicleName.UseSelectable = true;
|
||||
this.metroTextBox_CargoVehicleName.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_CargoVehicleName.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroLabel1
|
||||
//
|
||||
this.metroLabel1.AutoSize = true;
|
||||
this.metroLabel1.Location = new System.Drawing.Point(30, 110);
|
||||
this.metroLabel1.Name = "metroLabel1";
|
||||
this.metroLabel1.Size = new System.Drawing.Size(101, 19);
|
||||
this.metroLabel1.TabIndex = 11;
|
||||
this.metroLabel1.Text = "차 종(화물)";
|
||||
//
|
||||
// metroTextBox_PassengerVehicleName
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_PassengerVehicleName.CustomButton.Image = null;
|
||||
this.metroTextBox_PassengerVehicleName.CustomButton.Location = new System.Drawing.Point(180, 1);
|
||||
this.metroTextBox_PassengerVehicleName.CustomButton.Name = "";
|
||||
this.metroTextBox_PassengerVehicleName.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_PassengerVehicleName.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_PassengerVehicleName.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_PassengerVehicleName.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_PassengerVehicleName.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_PassengerVehicleName.CustomButton.Visible = false;
|
||||
this.metroTextBox_PassengerVehicleName.Lines = new string[0];
|
||||
this.metroTextBox_PassengerVehicleName.Location = new System.Drawing.Point(140, 166);
|
||||
this.metroTextBox_PassengerVehicleName.MaxLength = 32767;
|
||||
this.metroTextBox_PassengerVehicleName.Name = "metroTextBox_PassengerVehicleName";
|
||||
this.metroTextBox_PassengerVehicleName.PasswordChar = '\0';
|
||||
this.metroTextBox_PassengerVehicleName.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_PassengerVehicleName.SelectedText = "";
|
||||
this.metroTextBox_PassengerVehicleName.SelectionLength = 0;
|
||||
this.metroTextBox_PassengerVehicleName.SelectionStart = 0;
|
||||
this.metroTextBox_PassengerVehicleName.ShortcutsEnabled = true;
|
||||
this.metroTextBox_PassengerVehicleName.Size = new System.Drawing.Size(202, 23);
|
||||
this.metroTextBox_PassengerVehicleName.TabIndex = 5;
|
||||
this.metroTextBox_PassengerVehicleName.UseSelectable = true;
|
||||
this.metroTextBox_PassengerVehicleName.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_PassengerVehicleName.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroLabel2
|
||||
//
|
||||
this.metroLabel2.AutoSize = true;
|
||||
this.metroLabel2.Location = new System.Drawing.Point(30, 170);
|
||||
this.metroLabel2.Name = "metroLabel2";
|
||||
this.metroLabel2.Size = new System.Drawing.Size(101, 19);
|
||||
this.metroLabel2.TabIndex = 13;
|
||||
this.metroLabel2.Text = "차 종(승용)";
|
||||
//
|
||||
// metroTextBox_PersonalNumber
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_PersonalNumber.CustomButton.Image = null;
|
||||
this.metroTextBox_PersonalNumber.CustomButton.Location = new System.Drawing.Point(108, 1);
|
||||
this.metroTextBox_PersonalNumber.CustomButton.Name = "";
|
||||
this.metroTextBox_PersonalNumber.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_PersonalNumber.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_PersonalNumber.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_PersonalNumber.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_PersonalNumber.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_PersonalNumber.CustomButton.Visible = false;
|
||||
this.metroTextBox_PersonalNumber.Lines = new string[0];
|
||||
this.metroTextBox_PersonalNumber.Location = new System.Drawing.Point(140, 278);
|
||||
this.metroTextBox_PersonalNumber.MaxLength = 32767;
|
||||
this.metroTextBox_PersonalNumber.Name = "metroTextBox_PersonalNumber";
|
||||
this.metroTextBox_PersonalNumber.PasswordChar = '\0';
|
||||
this.metroTextBox_PersonalNumber.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_PersonalNumber.SelectedText = "";
|
||||
this.metroTextBox_PersonalNumber.SelectionLength = 0;
|
||||
this.metroTextBox_PersonalNumber.SelectionStart = 0;
|
||||
this.metroTextBox_PersonalNumber.ShortcutsEnabled = true;
|
||||
this.metroTextBox_PersonalNumber.Size = new System.Drawing.Size(130, 23);
|
||||
this.metroTextBox_PersonalNumber.TabIndex = 8;
|
||||
this.metroTextBox_PersonalNumber.UseSelectable = true;
|
||||
this.metroTextBox_PersonalNumber.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_PersonalNumber.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroLabel3
|
||||
//
|
||||
this.metroLabel3.AutoSize = true;
|
||||
this.metroLabel3.Location = new System.Drawing.Point(30, 270);
|
||||
this.metroLabel3.Name = "metroLabel3";
|
||||
this.metroLabel3.Size = new System.Drawing.Size(105, 38);
|
||||
this.metroLabel3.TabIndex = 15;
|
||||
this.metroLabel3.Text = "생 년 월 일\r\n (법인등록번호)";
|
||||
//
|
||||
// metroLabel4
|
||||
//
|
||||
this.metroLabel4.AutoSize = true;
|
||||
this.metroLabel4.Location = new System.Drawing.Point(30, 200);
|
||||
this.metroLabel4.Name = "metroLabel4";
|
||||
this.metroLabel4.Size = new System.Drawing.Size(101, 19);
|
||||
this.metroLabel4.TabIndex = 17;
|
||||
this.metroLabel4.Text = "차 량 구 분";
|
||||
//
|
||||
// metroComboBox_VehicleType
|
||||
//
|
||||
this.metroComboBox_VehicleType.FormattingEnabled = true;
|
||||
this.metroComboBox_VehicleType.ItemHeight = 23;
|
||||
this.metroComboBox_VehicleType.Items.AddRange(new object[] {
|
||||
"대형(4.5톤 미만)",
|
||||
"특대형(4.5톤 이상)"});
|
||||
this.metroComboBox_VehicleType.Location = new System.Drawing.Point(139, 200);
|
||||
this.metroComboBox_VehicleType.Name = "metroComboBox_VehicleType";
|
||||
this.metroComboBox_VehicleType.Size = new System.Drawing.Size(203, 29);
|
||||
this.metroComboBox_VehicleType.TabIndex = 6;
|
||||
this.metroComboBox_VehicleType.UseSelectable = true;
|
||||
this.metroComboBox_VehicleType.SelectedIndex = 0;
|
||||
//
|
||||
// ApplicantControl
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackColor = System.Drawing.Color.White;
|
||||
this.Controls.Add(this.metroComboBox_VehicleType);
|
||||
this.Controls.Add(this.metroLabel4);
|
||||
this.Controls.Add(this.metroTextBox_PersonalNumber);
|
||||
this.Controls.Add(this.metroLabel3);
|
||||
this.Controls.Add(this.metroTextBox_PassengerVehicleName);
|
||||
this.Controls.Add(this.metroLabel2);
|
||||
this.Controls.Add(this.metroTextBox_CargoVehicleName);
|
||||
this.Controls.Add(this.metroLabel1);
|
||||
this.Controls.Add(this.metroButton_Cancel);
|
||||
this.Controls.Add(this.metroButton_Register);
|
||||
this.Controls.Add(this.metroCheckBox_Inspection);
|
||||
this.Controls.Add(this.maskedTextBox_Phone);
|
||||
this.Controls.Add(this.metroTextBox_Address);
|
||||
this.Controls.Add(this.metroTextBox_Name);
|
||||
this.Controls.Add(this.metroTextBox_RegistrationNumberPassenger);
|
||||
this.Controls.Add(this.metroTextBox_RegistrationNumberTruck);
|
||||
this.Controls.Add(this.metroLabel_Inspection);
|
||||
this.Controls.Add(this.metroTextBox_PassengerVehicleNumber);
|
||||
this.Controls.Add(this.metroTextBox_CargoVehicleNumber);
|
||||
this.Controls.Add(this.metroLabel_Address);
|
||||
this.Controls.Add(this.metroLabel_Phone);
|
||||
this.Controls.Add(this.metroLabel_Name);
|
||||
this.Controls.Add(this.metroLabel_RegistrationNumberPassenger);
|
||||
this.Controls.Add(this.metroLabel_RegistrationNumberTruck);
|
||||
this.Controls.Add(this.metroLabel_PassengerVehicleNumber);
|
||||
this.Controls.Add(this.metroLabel_CargoVehicleNumber);
|
||||
this.Controls.Add(this.groupBox1);
|
||||
this.Margin = new System.Windows.Forms.Padding(0);
|
||||
this.Name = "ApplicantControl";
|
||||
this.Size = new System.Drawing.Size(480, 380);
|
||||
this.Size = new System.Drawing.Size(480, 480);
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
this.groupBox1.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
@@ -339,19 +466,25 @@
|
||||
private System.Windows.Forms.GroupBox groupBox1;
|
||||
private MetroFramework.Controls.MetroRadioButton metroRadioButton_Draw;
|
||||
private MetroFramework.Controls.MetroRadioButton metroRadioButton_Waiting;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel_RegistrationNumberTruck;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel_RegistrationNumberPassenger;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel_CargoVehicleNumber;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel_PassengerVehicleNumber;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel_Name;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel_Phone;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel_Address;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel_Inspection;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_RegistrationNumberTruck;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_RegistrationNumberPassenger;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_CargoVehicleNumber;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_PassengerVehicleNumber;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_Name;
|
||||
private System.Windows.Forms.MaskedTextBox maskedTextBox_Phone;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_Address;
|
||||
private MetroFramework.Controls.MetroCheckBox metroCheckBox_Inspection;
|
||||
private MetroFramework.Controls.MetroButton metroButton_Register;
|
||||
private MetroFramework.Controls.MetroButton metroButton_Cancel;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_CargoVehicleName;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel1;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_PassengerVehicleName;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel2;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_PersonalNumber;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel3;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel4;
|
||||
private MetroFramework.Controls.MetroComboBox metroComboBox_VehicleType;
|
||||
}
|
||||
}
|
||||
|
@@ -1,4 +1,7 @@
|
||||
using System;
|
||||
using HSUCO_Cargo_Garage_Operation_Program.Properties;
|
||||
using MetroFramework;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
@@ -13,22 +16,34 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
|
||||
void metroButton_Register_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (metroTextBox_RegistrationNumberTruck.Text.Trim() == string.Empty)
|
||||
if (metroTextBox_CargoVehicleNumber.Text.Trim() == string.Empty)
|
||||
{
|
||||
MessageBox.Show(this, "차량번호(화물)이 입력되지 않았습니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
metroTextBox_RegistrationNumberTruck.Text = string.Empty;
|
||||
metroTextBox_RegistrationNumberTruck.Focus();
|
||||
MessageBox.Show(this, "차량번호(화물)가 입력되지 않았습니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
metroTextBox_CargoVehicleNumber.Text = string.Empty;
|
||||
metroTextBox_CargoVehicleNumber.Focus();
|
||||
return;
|
||||
}
|
||||
|
||||
if (metroTextBox_RegistrationNumberPassenger.Text.Trim() == string.Empty)
|
||||
if (metroTextBox_CargoVehicleName.Text.Trim() == string.Empty)
|
||||
{
|
||||
MessageBox.Show(this, "차량번호(승용)이 입력되지 않았습니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
metroTextBox_RegistrationNumberPassenger.Text = string.Empty;
|
||||
metroTextBox_RegistrationNumberPassenger.Focus();
|
||||
MessageBox.Show(this, "차 종(화물)이 입력되지 않았습니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
metroTextBox_CargoVehicleName.Text = string.Empty;
|
||||
metroTextBox_CargoVehicleName.Focus();
|
||||
return;
|
||||
}
|
||||
if (metroTextBox_PassengerVehicleNumber.Text.Trim() == string.Empty)
|
||||
{
|
||||
MessageBox.Show(this, "차량번호(승용)가 입력되지 않았습니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
metroTextBox_PassengerVehicleNumber.Text = string.Empty;
|
||||
metroTextBox_PassengerVehicleNumber.Focus();
|
||||
return;
|
||||
}
|
||||
if (metroTextBox_PassengerVehicleName.Text.Trim() == string.Empty)
|
||||
{
|
||||
MessageBox.Show(this, "차 종(승용)이 입력되지 않았습니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
metroTextBox_PassengerVehicleName.Text = string.Empty;
|
||||
metroTextBox_PassengerVehicleName.Focus();
|
||||
return;
|
||||
}
|
||||
|
||||
if (metroTextBox_Name.Text.Trim() == string.Empty)
|
||||
{
|
||||
MessageBox.Show(this, "이름이 입력되지 않았습니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
@@ -36,7 +51,13 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
metroTextBox_Name.Focus();
|
||||
return;
|
||||
}
|
||||
|
||||
if (metroTextBox_PersonalNumber.Text.Trim() == string.Empty)
|
||||
{
|
||||
MessageBox.Show(this, "생년월일(법인등록번호)이 입력되지 않았습니다..", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
metroTextBox_PersonalNumber.Text = string.Empty;
|
||||
metroTextBox_PersonalNumber.Focus();
|
||||
return;
|
||||
}
|
||||
if (maskedTextBox_Phone.Text.Trim() == string.Empty)
|
||||
{
|
||||
MessageBox.Show(this, "연락처가 입력되지 않았습니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
@@ -53,43 +74,67 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
return;
|
||||
}
|
||||
|
||||
bool already = Database.ApplicantCheckAlready(metroTextBox_RegistrationNumberTruck.Text.Trim());
|
||||
bool already = Database.ApplicantCheckAlready(metroTextBox_CargoVehicleNumber.Text.Trim());
|
||||
|
||||
if(already)
|
||||
{
|
||||
MessageBox.Show(this, metroTextBox_RegistrationNumberTruck.Text.Trim() +"차량은 이미 신청된 차량입니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
ResetInput();
|
||||
metroTextBox_RegistrationNumberTruck.Focus();
|
||||
return;
|
||||
}
|
||||
|
||||
already = Database.UserListCheckAlready(metroTextBox_RegistrationNumberTruck.Text.Trim());
|
||||
if (already)
|
||||
{
|
||||
MessageBox.Show(this, metroTextBox_RegistrationNumberTruck.Text.Trim() + "현재 사용중인 차량입니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
MessageBox.Show(this, metroTextBox_CargoVehicleNumber.Text.Trim() + "차량은 이미 신청된 차량입니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
ResetInput();
|
||||
metroTextBox_RegistrationNumberTruck.Focus();
|
||||
metroTextBox_CargoVehicleNumber.Focus();
|
||||
return;
|
||||
}
|
||||
var applicant = new Applicant();
|
||||
|
||||
already = Database.UserListCheckAlready(metroTextBox_CargoVehicleNumber.Text.Trim());
|
||||
if (already)
|
||||
{
|
||||
MessageBox.Show(this, metroTextBox_CargoVehicleNumber.Text.Trim() + "현재 사용중인 차량입니다.", "Fatal Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
ResetInput();
|
||||
metroTextBox_CargoVehicleNumber.Focus();
|
||||
return;
|
||||
}
|
||||
var applicant = new ApplicantInformation();
|
||||
applicant.ApplicantType = metroRadioButton_Draw.Checked; // 추첨이 true, 대기가 false
|
||||
applicant.RegistrationNumberTruck = metroTextBox_RegistrationNumberTruck.Text.Trim();
|
||||
applicant.RegistrationNumberPassenger = metroTextBox_RegistrationNumberPassenger.Text.Trim();
|
||||
applicant.CargoVehicleNumber = metroTextBox_CargoVehicleNumber.Text.Trim();
|
||||
applicant.CargoVehicleName = metroTextBox_CargoVehicleName.Text.Trim();
|
||||
applicant.PassengerVehicleNumber = metroTextBox_PassengerVehicleNumber.Text.Trim();
|
||||
applicant.PassengerVehicleName = metroTextBox_PassengerVehicleName.Text.Trim();
|
||||
applicant.VehicleType = (EVehicleType)metroComboBox_VehicleType.SelectedIndex;
|
||||
|
||||
applicant.Name = metroTextBox_Name.Text.Trim();
|
||||
applicant.PersonalNumber = metroTextBox_PersonalNumber.Text.Trim();
|
||||
applicant.Phone = maskedTextBox_Phone.Text.Trim();
|
||||
applicant.Address = metroTextBox_Address.Text.Trim();
|
||||
applicant.DateOfApplication = DateTime.Now;
|
||||
applicant.Inspection = metroCheckBox_Inspection.Checked;
|
||||
|
||||
bool resultInsert = Database.ApplicantInsert(applicant);
|
||||
if(resultInsert)
|
||||
|
||||
var resultInsert = Database.SetApplicant(applicant);
|
||||
if (resultInsert.Result)
|
||||
{
|
||||
ResetInput();
|
||||
MessageBox.Show("정상적으로 등록되었습니다.", "Information", MessageBoxButtons.OK, MessageBoxIcon.Hand);
|
||||
MetroMessageBox.Show(this, "정상적으로 등록되었습니다.", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
PrintFilingReceiptInformation printFilingReceiptInformation = new PrintFilingReceiptInformation();
|
||||
printFilingReceiptInformation.No = resultInsert.No;
|
||||
printFilingReceiptInformation.WaitingOrder = resultInsert.WaitingOrder;
|
||||
printFilingReceiptInformation.Name = applicant.Name;
|
||||
printFilingReceiptInformation.PersonalNumber = applicant.PersonalNumber;
|
||||
|
||||
printFilingReceiptInformation.Address = applicant.Address;
|
||||
printFilingReceiptInformation.CargoVehicleNumber = applicant.CargoVehicleNumber;
|
||||
printFilingReceiptInformation.PassengerVehicleNumber = applicant.PassengerVehicleNumber;
|
||||
printFilingReceiptInformation.DateReception = applicant.DateOfApplication;
|
||||
|
||||
PrintFilingReceipt printFilingReceipt = new PrintFilingReceipt(new List<PrintFilingReceiptInformation>() { printFilingReceiptInformation });
|
||||
var printPreviewDialog = new PrintPreviewDialog();
|
||||
printPreviewDialog.Icon = Resources.free_icon_trucks_8552082;
|
||||
printPreviewDialog.WindowState = FormWindowState.Maximized;
|
||||
printPreviewDialog.Document = printFilingReceipt.printDocument;
|
||||
printPreviewDialog.ShowDialog();
|
||||
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
MessageBox.Show("등록에 실패하였습니다.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
MetroMessageBox.Show(this, "등록에 실패하였습니다.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -99,17 +144,18 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
}
|
||||
void ResetInput()
|
||||
{
|
||||
metroTextBox_RegistrationNumberTruck.Text = string.Empty;
|
||||
metroTextBox_CargoVehicleNumber.Text = string.Empty;
|
||||
metroTextBox_CargoVehicleName.Text = string.Empty;
|
||||
|
||||
metroTextBox_RegistrationNumberPassenger.Text = string.Empty;
|
||||
metroTextBox_PassengerVehicleNumber.Text = string.Empty;
|
||||
metroTextBox_PassengerVehicleName.Text = string.Empty;
|
||||
|
||||
metroTextBox_Name.Text = string.Empty;
|
||||
|
||||
metroTextBox_PersonalNumber.Text = string.Empty;
|
||||
maskedTextBox_Phone.Text = string.Empty;
|
||||
|
||||
metroTextBox_Address.Text = string.Empty;
|
||||
|
||||
metroTextBox_RegistrationNumberTruck.Focus();
|
||||
metroTextBox_CargoVehicleNumber.Focus();
|
||||
}
|
||||
}
|
||||
}
|
@@ -42,8 +42,6 @@
|
||||
this.metroButton_Search = new MetroFramework.Controls.MetroButton();
|
||||
this.metroTextBox_Search = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroComboBox_SearchType = new MetroFramework.Controls.MetroComboBox();
|
||||
this.metroButton_InspectionFalse = new MetroFramework.Controls.MetroButton();
|
||||
this.metroButton_InspectionTrue = new MetroFramework.Controls.MetroButton();
|
||||
this.metroButton_UpdateUser = new MetroFramework.Controls.MetroButton();
|
||||
this.dataGridView_List = new System.Windows.Forms.DataGridView();
|
||||
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
|
||||
@@ -103,8 +101,6 @@
|
||||
this.metroPanel1.Controls.Add(this.metroButton_ExportExcel);
|
||||
this.metroPanel1.Controls.Add(this.metroButton_Delete);
|
||||
this.metroPanel1.Controls.Add(this.groupBox2);
|
||||
this.metroPanel1.Controls.Add(this.metroButton_InspectionFalse);
|
||||
this.metroPanel1.Controls.Add(this.metroButton_InspectionTrue);
|
||||
this.metroPanel1.Controls.Add(this.metroButton_UpdateUser);
|
||||
this.metroPanel1.Controls.Add(this.dataGridView_List);
|
||||
this.metroPanel1.Controls.Add(this.groupBox1);
|
||||
@@ -236,30 +232,6 @@
|
||||
this.metroComboBox_SearchType.TabIndex = 3;
|
||||
this.metroComboBox_SearchType.UseSelectable = true;
|
||||
//
|
||||
// metroButton_InspectionFalse
|
||||
//
|
||||
this.metroButton_InspectionFalse.Anchor = System.Windows.Forms.AnchorStyles.Right;
|
||||
this.metroButton_InspectionFalse.FontSize = MetroFramework.MetroButtonSize.Tall;
|
||||
this.metroButton_InspectionFalse.Location = new System.Drawing.Point(626, 230);
|
||||
this.metroButton_InspectionFalse.Name = "metroButton_InspectionFalse";
|
||||
this.metroButton_InspectionFalse.Size = new System.Drawing.Size(121, 40);
|
||||
this.metroButton_InspectionFalse.TabIndex = 9;
|
||||
this.metroButton_InspectionFalse.Text = "서류 미비 전환";
|
||||
this.metroButton_InspectionFalse.UseSelectable = true;
|
||||
this.metroButton_InspectionFalse.Click += new System.EventHandler(this.metroButton_InspectionFalse_Click);
|
||||
//
|
||||
// metroButton_InspectionTrue
|
||||
//
|
||||
this.metroButton_InspectionTrue.Anchor = System.Windows.Forms.AnchorStyles.Right;
|
||||
this.metroButton_InspectionTrue.FontSize = MetroFramework.MetroButtonSize.Tall;
|
||||
this.metroButton_InspectionTrue.Location = new System.Drawing.Point(626, 184);
|
||||
this.metroButton_InspectionTrue.Name = "metroButton_InspectionTrue";
|
||||
this.metroButton_InspectionTrue.Size = new System.Drawing.Size(121, 40);
|
||||
this.metroButton_InspectionTrue.TabIndex = 8;
|
||||
this.metroButton_InspectionTrue.Text = "서류 완료 전환";
|
||||
this.metroButton_InspectionTrue.UseSelectable = true;
|
||||
this.metroButton_InspectionTrue.Click += new System.EventHandler(this.metroButton_InspectionTrue_Click);
|
||||
//
|
||||
// metroButton_UpdateUser
|
||||
//
|
||||
this.metroButton_UpdateUser.Anchor = System.Windows.Forms.AnchorStyles.Right;
|
||||
@@ -325,8 +297,6 @@
|
||||
private MetroFramework.Controls.MetroButton metroButton_Search;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_Search;
|
||||
private MetroFramework.Controls.MetroComboBox metroComboBox_SearchType;
|
||||
private MetroFramework.Controls.MetroButton metroButton_InspectionFalse;
|
||||
private MetroFramework.Controls.MetroButton metroButton_InspectionTrue;
|
||||
private MetroFramework.Controls.MetroButton metroButton_UpdateUser;
|
||||
private System.Windows.Forms.DataGridView dataGridView_List;
|
||||
private MetroFramework.Controls.MetroButton metroButton_Delete;
|
||||
|
@@ -17,48 +17,29 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
metroComboBox_SearchType.SelectedIndex = 0;
|
||||
}
|
||||
|
||||
List<Applicant> InspectionType()
|
||||
{
|
||||
var applicants = Database.GetApplicant();
|
||||
List<Applicant> nowApplicants;
|
||||
|
||||
if (metroRadioButton_InspectionTrue.Checked)
|
||||
{
|
||||
nowApplicants = applicants.Where(x => x.Inspection).ToList();
|
||||
}
|
||||
else if (metroRadioButton_InspectionFalse.Checked)
|
||||
{
|
||||
nowApplicants = applicants.Where(x => !x.Inspection).ToList();
|
||||
}
|
||||
else
|
||||
{
|
||||
nowApplicants = applicants;
|
||||
}
|
||||
|
||||
return nowApplicants;
|
||||
}
|
||||
|
||||
void DataChange()
|
||||
{
|
||||
var nowApplicants = InspectionType();
|
||||
var applicants = Database.GetApplicant();
|
||||
|
||||
switch (metroComboBox_SearchType.SelectedIndex)
|
||||
{
|
||||
case 0:
|
||||
nowApplicants = nowApplicants.Where(x => x.RegistrationNumberTruck.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
applicants = applicants.Where(x => x.CargoVehicleNumber.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
|
||||
break;
|
||||
case 1:
|
||||
nowApplicants = nowApplicants.Where(x => x.RegistrationNumberPassenger.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
applicants = applicants.Where(x => x.PassengerVehicleNumber.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
break;
|
||||
case 2:
|
||||
nowApplicants = nowApplicants.Where(x => x.Name.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
applicants = applicants.Where(x => x.Name.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
break;
|
||||
case 3:
|
||||
nowApplicants = nowApplicants.Where(x => x.Phone.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
applicants = applicants.Where(x => x.Phone.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
break;
|
||||
case 4:
|
||||
nowApplicants = nowApplicants.Where(x => x.Address.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
applicants = applicants.Where(x => x.Address.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
break;
|
||||
|
||||
}
|
||||
@@ -70,19 +51,17 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
dataTable.Columns.Add("연락처");
|
||||
dataTable.Columns.Add("주소");
|
||||
dataTable.Columns.Add("신청일");
|
||||
dataTable.Columns.Add("서류 검토");
|
||||
|
||||
for (int i = 0; i < nowApplicants.Count; i++)
|
||||
for (int i = 0; i < applicants.Count; i++)
|
||||
{
|
||||
dataTable.Rows
|
||||
.Add(
|
||||
nowApplicants[i].RegistrationNumberTruck,
|
||||
nowApplicants[i].RegistrationNumberPassenger,
|
||||
nowApplicants[i].Name,
|
||||
nowApplicants[i].Phone,
|
||||
nowApplicants[i].Address,
|
||||
nowApplicants[i].DateOfApplication,
|
||||
nowApplicants[i].Inspection ? "Y" : "N"
|
||||
applicants[i].CargoVehicleNumber,
|
||||
applicants[i].PassengerVehicleNumber,
|
||||
applicants[i].Name,
|
||||
applicants[i].Phone,
|
||||
applicants[i].Address,
|
||||
applicants[i].DateOfApplication
|
||||
|
||||
);
|
||||
}
|
||||
@@ -103,80 +82,17 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
|
||||
void metroButton_Search_Click(object sender, EventArgs e) => DataChange();
|
||||
|
||||
void metroButton_InspectionTrue_Click(object sender, EventArgs e)
|
||||
{
|
||||
var allCount = dataGridView_List.SelectedRows.Count;
|
||||
if (allCount == 0) return;
|
||||
|
||||
var RegistrationNumberTruck = new List<string>();
|
||||
|
||||
for (int i = 0; i < dataGridView_List.SelectedRows.Count; i++)
|
||||
{
|
||||
if (dataGridView_List.SelectedRows[i].Cells[6].Value.ToString() == "N")
|
||||
{
|
||||
RegistrationNumberTruck.Add(dataGridView_List.SelectedRows[i].Cells[0].Value.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
if (RegistrationNumberTruck.Count == 0)
|
||||
{
|
||||
MetroMessageBox.Show(this, "선택하신 건수 중에 전환할수 있는 건수가 없습니다.", "서류 완료 전환", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
else
|
||||
{
|
||||
var message = "선태하신 전체 건수(" + allCount + ")중 서류 미비 상태인 건수(" + RegistrationNumberTruck.Count + ")를 서류 완료 상태로 전환합니다.";
|
||||
|
||||
if (MetroMessageBox.Show(this, message, "서류 완료 전환", MessageBoxButtons.OKCancel, MessageBoxIcon.Information) == DialogResult.OK)
|
||||
{
|
||||
Database.ChangeInspection(RegistrationNumberTruck, true);
|
||||
}
|
||||
}
|
||||
|
||||
DataChange();
|
||||
}
|
||||
|
||||
void metroButton_InspectionFalse_Click(object sender, EventArgs e)
|
||||
{
|
||||
var allCount = dataGridView_List.SelectedRows.Count;
|
||||
if (allCount == 0) return;
|
||||
|
||||
var RegistrationNumberTruck = new List<string>();
|
||||
|
||||
for (int i = 0; i < dataGridView_List.SelectedRows.Count; i++)
|
||||
{
|
||||
if (dataGridView_List.SelectedRows[i].Cells[6].Value.ToString() == "Y")
|
||||
{
|
||||
RegistrationNumberTruck.Add(dataGridView_List.SelectedRows[i].Cells[0].Value.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
if (RegistrationNumberTruck.Count == 0)
|
||||
{
|
||||
MetroMessageBox.Show(this, "선택하신 건수 중에 전환할수 있는 건수가 없습니다.", "서류 미비 전환", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
else
|
||||
{
|
||||
var message = "선태하신 전체 건수(" + allCount + ")중 서류 완료 상태인 건수(" + RegistrationNumberTruck.Count + ")를 서류 미비 상태로 전환합니다.";
|
||||
|
||||
if (MetroMessageBox.Show(this, message, "서류 미비 전환", MessageBoxButtons.OKCancel, MessageBoxIcon.Information) == DialogResult.OK)
|
||||
{
|
||||
Database.ChangeInspection(RegistrationNumberTruck, false);
|
||||
}
|
||||
}
|
||||
|
||||
DataChange();
|
||||
}
|
||||
|
||||
void metroButton_Delete_Click(object sender, EventArgs e)
|
||||
{
|
||||
var allCount = dataGridView_List.SelectedRows.Count;
|
||||
if (allCount == 0) return;
|
||||
|
||||
var RegistrationNumberTruck = new List<string>();
|
||||
var CargoVehicleNumber = new List<string>();
|
||||
|
||||
for (int i = 0; i < dataGridView_List.SelectedRows.Count; i++)
|
||||
{
|
||||
RegistrationNumberTruck.Add(dataGridView_List.SelectedRows[i].Cells[0].Value.ToString());
|
||||
CargoVehicleNumber.Add(dataGridView_List.SelectedRows[i].Cells[0].Value.ToString());
|
||||
}
|
||||
|
||||
var message = "선태하신 " + allCount + "건을 삭제 하시겠습니까?";
|
||||
@@ -187,7 +103,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
|
||||
if (deleteReason.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
Database.DeleteInspection(RegistrationNumberTruck, deleteReason.ResultName, deleteReason.ResultReason);
|
||||
Database.DeleteInspection(CargoVehicleNumber, deleteReason.ResultName, deleteReason.ResultReason);
|
||||
DataChange();
|
||||
}
|
||||
}
|
||||
@@ -198,17 +114,17 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
var allCount = dataGridView_List.SelectedRows.Count;
|
||||
if (allCount == 0) return;
|
||||
|
||||
var RegistrationNumberTruck = new List<string>();
|
||||
var CargoVehicleNumber = new List<string>();
|
||||
|
||||
for (int i = 0; i < dataGridView_List.SelectedRows.Count; i++)
|
||||
{
|
||||
if (dataGridView_List.SelectedRows[i].Cells[6].Value.ToString() == "Y")
|
||||
{
|
||||
RegistrationNumberTruck.Add(dataGridView_List.SelectedRows[i].Cells[0].Value.ToString());
|
||||
CargoVehicleNumber.Add(dataGridView_List.SelectedRows[i].Cells[0].Value.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
if (RegistrationNumberTruck.Count == 0)
|
||||
if (CargoVehicleNumber.Count == 0)
|
||||
{
|
||||
MetroMessageBox.Show(this, "선택하신 건수 중에 당첨 처리 할수 있는 건이 없습니다.", "당첨 처리", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
@@ -222,7 +138,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
|
||||
if (promotion.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
Database.AddUserList(RegistrationNumberTruck, promotion.StartDate, promotion.EndDate, promotion.TotalCost);
|
||||
Database.AddUserList(CargoVehicleNumber, promotion.StartDate, promotion.EndDate, promotion.TotalCost);
|
||||
DataChange();
|
||||
}
|
||||
}
|
||||
|
@@ -1,15 +1,9 @@
|
||||
using MetroFramework;
|
||||
using HSUCO_Cargo_Garage_Operation_Program.Properties;
|
||||
using MetroFramework;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Drawing.Printing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using HSUCO_Cargo_Garage_Operation_Program.Properties;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
{
|
||||
@@ -35,7 +29,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
|
||||
private void metroButton_ReCertificate_Click(object sender, EventArgs e)
|
||||
{
|
||||
if(dataGridView_List.SelectedRows.Count == 0) return;
|
||||
if (dataGridView_List.SelectedRows.Count == 0) return;
|
||||
var x = dataGridView_List.SelectedRows[0];
|
||||
//if(dataGridView_List.select)
|
||||
// 재발급 인쇠
|
||||
@@ -65,8 +59,8 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
|
||||
certificateDatas[i].IssueNumber,
|
||||
certificateDatas[i].IssueDate,
|
||||
certificateDatas[i].RegistrationNumberTruck,
|
||||
certificateDatas[i].RegistrationNumberPassenger,
|
||||
certificateDatas[i].CargoVehicleNumber,
|
||||
certificateDatas[i].PassengerVehicleNumber,
|
||||
certificateDatas[i].Name,
|
||||
|
||||
|
||||
@@ -91,7 +85,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
|
||||
private void metroButton_RePrint_Click(object sender, EventArgs e)
|
||||
{
|
||||
int count = dataGridView_List.SelectedRows.Count;
|
||||
int count = dataGridView_List.SelectedRows.Count;
|
||||
if (count == 0)
|
||||
{
|
||||
MetroMessageBox.Show(this, "선택된 이용자가 없습니다.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
@@ -101,18 +95,17 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
string issueNumber = dataGridView_List.SelectedRows[0].Cells[0].Value.ToString();
|
||||
CertificateData certificateData = Database.GetCertificate(issueNumber);
|
||||
|
||||
var print = new PrintCertificate(new List<CertificateData>(){certificateData});
|
||||
var printDocument = new PrintDocument();
|
||||
printDocument.DocumentName = "차고지 이용 증명서";
|
||||
var print = new PrintCertificate(new List<CertificateData>() { certificateData });
|
||||
|
||||
|
||||
|
||||
printDocument.PrintPage += print.PrintPage;
|
||||
|
||||
var printPreviewDialog = new PrintPreviewDialog();
|
||||
printPreviewDialog.Icon = Resources.free_icon_trucks_8552082;
|
||||
printPreviewDialog.WindowState = FormWindowState.Maximized;
|
||||
printPreviewDialog.Document = printDocument;
|
||||
printPreviewDialog.Document = print.printDocument;
|
||||
printPreviewDialog.ShowDialog();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,12 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
@@ -34,7 +28,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
private void metroButton_Search_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
List<ProceedsData> proceedsDatas = Database.GetLedgerProceeds(metroDateTime_StartDate.Value, metroDateTime_EndDate.Value);
|
||||
List<ProceedsData> proceedsDatas = Database.GetLedgerProceeds(metroDateTime_StartDate.Value, metroDateTime_EndDate.Value);
|
||||
|
||||
var dataTable = new DataTable();
|
||||
|
||||
@@ -59,9 +53,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
case ProceedsType.Certificate:
|
||||
typeString = "인증서 발급비용";
|
||||
break;
|
||||
case ProceedsType.ReCertificate:
|
||||
typeString = "인증서 재발급비용";
|
||||
break;
|
||||
|
||||
case ProceedsType.Refunds:
|
||||
typeString = "환불";
|
||||
break;
|
||||
@@ -72,8 +64,8 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
dataTable.Rows
|
||||
.Add(
|
||||
|
||||
proceedsDatas[i].RegistrationNumberTruck,
|
||||
proceedsDatas[i].RegistrationNumberPassenger,
|
||||
proceedsDatas[i].CargoVehicleNumber,
|
||||
proceedsDatas[i].PassengerVehicleNumber,
|
||||
proceedsDatas[i].Name,
|
||||
typeString,
|
||||
String.Format("{0:n0}", proceedsDatas[i].Amount),
|
||||
|
@@ -32,21 +32,29 @@
|
||||
this.metroLabel2 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel3 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel4 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroTextBox_UsageFee = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_ExtendedFee = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_CertificateFee = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_ReCertificateFee = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_CargoLargeMaxCount = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_CargoOversizedMaxCount = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_CargoLargeFee = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_CargoOversizedFee = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroButton_Save = new MetroFramework.Controls.MetroButton();
|
||||
this.metroLabel5 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel6 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel7 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel8 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel9 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroTextBox_GarageName = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroLabel10 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel11 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroTextBox_CargoOversizedCertificateFee = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroTextBox_CargoLargeCertificateFee = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroLabel12 = new MetroFramework.Controls.MetroLabel();
|
||||
this.metroLabel13 = new MetroFramework.Controls.MetroLabel();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// metroLabel1
|
||||
//
|
||||
this.metroLabel1.AutoSize = true;
|
||||
this.metroLabel1.Location = new System.Drawing.Point(20, 20);
|
||||
this.metroLabel1.Location = new System.Drawing.Point(20, 66);
|
||||
this.metroLabel1.Name = "metroLabel1";
|
||||
this.metroLabel1.Size = new System.Drawing.Size(96, 19);
|
||||
this.metroLabel1.TabIndex = 0;
|
||||
@@ -55,7 +63,7 @@
|
||||
// metroLabel2
|
||||
//
|
||||
this.metroLabel2.AutoSize = true;
|
||||
this.metroLabel2.Location = new System.Drawing.Point(20, 50);
|
||||
this.metroLabel2.Location = new System.Drawing.Point(20, 96);
|
||||
this.metroLabel2.Name = "metroLabel2";
|
||||
this.metroLabel2.Size = new System.Drawing.Size(96, 19);
|
||||
this.metroLabel2.TabIndex = 1;
|
||||
@@ -64,7 +72,7 @@
|
||||
// metroLabel3
|
||||
//
|
||||
this.metroLabel3.AutoSize = true;
|
||||
this.metroLabel3.Location = new System.Drawing.Point(20, 80);
|
||||
this.metroLabel3.Location = new System.Drawing.Point(20, 126);
|
||||
this.metroLabel3.Name = "metroLabel3";
|
||||
this.metroLabel3.Size = new System.Drawing.Size(115, 19);
|
||||
this.metroLabel3.TabIndex = 2;
|
||||
@@ -73,140 +81,140 @@
|
||||
// metroLabel4
|
||||
//
|
||||
this.metroLabel4.AutoSize = true;
|
||||
this.metroLabel4.Location = new System.Drawing.Point(20, 110);
|
||||
this.metroLabel4.Location = new System.Drawing.Point(20, 156);
|
||||
this.metroLabel4.Name = "metroLabel4";
|
||||
this.metroLabel4.Size = new System.Drawing.Size(129, 19);
|
||||
this.metroLabel4.TabIndex = 3;
|
||||
this.metroLabel4.Text = "증명서 재발급 금액";
|
||||
//
|
||||
// metroTextBox_UsageFee
|
||||
// metroTextBox_CargoLargeMaxCount
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_UsageFee.CustomButton.Image = null;
|
||||
this.metroTextBox_UsageFee.CustomButton.Location = new System.Drawing.Point(78, 1);
|
||||
this.metroTextBox_UsageFee.CustomButton.Name = "";
|
||||
this.metroTextBox_UsageFee.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_UsageFee.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_UsageFee.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_UsageFee.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_UsageFee.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_UsageFee.CustomButton.Visible = false;
|
||||
this.metroTextBox_UsageFee.Lines = new string[0];
|
||||
this.metroTextBox_UsageFee.Location = new System.Drawing.Point(150, 16);
|
||||
this.metroTextBox_UsageFee.MaxLength = 32767;
|
||||
this.metroTextBox_UsageFee.Name = "metroTextBox_UsageFee";
|
||||
this.metroTextBox_UsageFee.PasswordChar = '\0';
|
||||
this.metroTextBox_UsageFee.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_UsageFee.SelectedText = "";
|
||||
this.metroTextBox_UsageFee.SelectionLength = 0;
|
||||
this.metroTextBox_UsageFee.SelectionStart = 0;
|
||||
this.metroTextBox_UsageFee.ShortcutsEnabled = true;
|
||||
this.metroTextBox_UsageFee.Size = new System.Drawing.Size(100, 23);
|
||||
this.metroTextBox_UsageFee.TabIndex = 4;
|
||||
this.metroTextBox_UsageFee.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.metroTextBox_UsageFee.UseSelectable = true;
|
||||
this.metroTextBox_UsageFee.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_UsageFee.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
this.metroTextBox_CargoLargeMaxCount.CustomButton.Image = null;
|
||||
this.metroTextBox_CargoLargeMaxCount.CustomButton.Location = new System.Drawing.Point(78, 1);
|
||||
this.metroTextBox_CargoLargeMaxCount.CustomButton.Name = "";
|
||||
this.metroTextBox_CargoLargeMaxCount.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_CargoLargeMaxCount.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_CargoLargeMaxCount.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_CargoLargeMaxCount.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_CargoLargeMaxCount.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_CargoLargeMaxCount.CustomButton.Visible = false;
|
||||
this.metroTextBox_CargoLargeMaxCount.Lines = new string[0];
|
||||
this.metroTextBox_CargoLargeMaxCount.Location = new System.Drawing.Point(150, 62);
|
||||
this.metroTextBox_CargoLargeMaxCount.MaxLength = 32767;
|
||||
this.metroTextBox_CargoLargeMaxCount.Name = "metroTextBox_CargoLargeMaxCount";
|
||||
this.metroTextBox_CargoLargeMaxCount.PasswordChar = '\0';
|
||||
this.metroTextBox_CargoLargeMaxCount.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_CargoLargeMaxCount.SelectedText = "";
|
||||
this.metroTextBox_CargoLargeMaxCount.SelectionLength = 0;
|
||||
this.metroTextBox_CargoLargeMaxCount.SelectionStart = 0;
|
||||
this.metroTextBox_CargoLargeMaxCount.ShortcutsEnabled = true;
|
||||
this.metroTextBox_CargoLargeMaxCount.Size = new System.Drawing.Size(100, 23);
|
||||
this.metroTextBox_CargoLargeMaxCount.TabIndex = 4;
|
||||
this.metroTextBox_CargoLargeMaxCount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.metroTextBox_CargoLargeMaxCount.UseSelectable = true;
|
||||
this.metroTextBox_CargoLargeMaxCount.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_CargoLargeMaxCount.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroTextBox_ExtendedFee
|
||||
// metroTextBox_CargoOversizedMaxCount
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_ExtendedFee.CustomButton.Image = null;
|
||||
this.metroTextBox_ExtendedFee.CustomButton.Location = new System.Drawing.Point(78, 1);
|
||||
this.metroTextBox_ExtendedFee.CustomButton.Name = "";
|
||||
this.metroTextBox_ExtendedFee.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_ExtendedFee.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_ExtendedFee.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_ExtendedFee.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_ExtendedFee.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_ExtendedFee.CustomButton.Visible = false;
|
||||
this.metroTextBox_ExtendedFee.Lines = new string[0];
|
||||
this.metroTextBox_ExtendedFee.Location = new System.Drawing.Point(150, 45);
|
||||
this.metroTextBox_ExtendedFee.MaxLength = 32767;
|
||||
this.metroTextBox_ExtendedFee.Name = "metroTextBox_ExtendedFee";
|
||||
this.metroTextBox_ExtendedFee.PasswordChar = '\0';
|
||||
this.metroTextBox_ExtendedFee.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_ExtendedFee.SelectedText = "";
|
||||
this.metroTextBox_ExtendedFee.SelectionLength = 0;
|
||||
this.metroTextBox_ExtendedFee.SelectionStart = 0;
|
||||
this.metroTextBox_ExtendedFee.ShortcutsEnabled = true;
|
||||
this.metroTextBox_ExtendedFee.Size = new System.Drawing.Size(100, 23);
|
||||
this.metroTextBox_ExtendedFee.TabIndex = 5;
|
||||
this.metroTextBox_ExtendedFee.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.metroTextBox_ExtendedFee.UseSelectable = true;
|
||||
this.metroTextBox_ExtendedFee.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_ExtendedFee.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
this.metroTextBox_CargoOversizedMaxCount.CustomButton.Image = null;
|
||||
this.metroTextBox_CargoOversizedMaxCount.CustomButton.Location = new System.Drawing.Point(78, 1);
|
||||
this.metroTextBox_CargoOversizedMaxCount.CustomButton.Name = "";
|
||||
this.metroTextBox_CargoOversizedMaxCount.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_CargoOversizedMaxCount.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_CargoOversizedMaxCount.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_CargoOversizedMaxCount.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_CargoOversizedMaxCount.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_CargoOversizedMaxCount.CustomButton.Visible = false;
|
||||
this.metroTextBox_CargoOversizedMaxCount.Lines = new string[0];
|
||||
this.metroTextBox_CargoOversizedMaxCount.Location = new System.Drawing.Point(150, 91);
|
||||
this.metroTextBox_CargoOversizedMaxCount.MaxLength = 32767;
|
||||
this.metroTextBox_CargoOversizedMaxCount.Name = "metroTextBox_CargoOversizedMaxCount";
|
||||
this.metroTextBox_CargoOversizedMaxCount.PasswordChar = '\0';
|
||||
this.metroTextBox_CargoOversizedMaxCount.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_CargoOversizedMaxCount.SelectedText = "";
|
||||
this.metroTextBox_CargoOversizedMaxCount.SelectionLength = 0;
|
||||
this.metroTextBox_CargoOversizedMaxCount.SelectionStart = 0;
|
||||
this.metroTextBox_CargoOversizedMaxCount.ShortcutsEnabled = true;
|
||||
this.metroTextBox_CargoOversizedMaxCount.Size = new System.Drawing.Size(100, 23);
|
||||
this.metroTextBox_CargoOversizedMaxCount.TabIndex = 5;
|
||||
this.metroTextBox_CargoOversizedMaxCount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.metroTextBox_CargoOversizedMaxCount.UseSelectable = true;
|
||||
this.metroTextBox_CargoOversizedMaxCount.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_CargoOversizedMaxCount.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroTextBox_CertificateFee
|
||||
// metroTextBox_CargoLargeFee
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_CertificateFee.CustomButton.Image = null;
|
||||
this.metroTextBox_CertificateFee.CustomButton.Location = new System.Drawing.Point(78, 1);
|
||||
this.metroTextBox_CertificateFee.CustomButton.Name = "";
|
||||
this.metroTextBox_CertificateFee.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_CertificateFee.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_CertificateFee.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_CertificateFee.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_CertificateFee.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_CertificateFee.CustomButton.Visible = false;
|
||||
this.metroTextBox_CertificateFee.Lines = new string[0];
|
||||
this.metroTextBox_CertificateFee.Location = new System.Drawing.Point(150, 76);
|
||||
this.metroTextBox_CertificateFee.MaxLength = 32767;
|
||||
this.metroTextBox_CertificateFee.Name = "metroTextBox_CertificateFee";
|
||||
this.metroTextBox_CertificateFee.PasswordChar = '\0';
|
||||
this.metroTextBox_CertificateFee.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_CertificateFee.SelectedText = "";
|
||||
this.metroTextBox_CertificateFee.SelectionLength = 0;
|
||||
this.metroTextBox_CertificateFee.SelectionStart = 0;
|
||||
this.metroTextBox_CertificateFee.ShortcutsEnabled = true;
|
||||
this.metroTextBox_CertificateFee.Size = new System.Drawing.Size(100, 23);
|
||||
this.metroTextBox_CertificateFee.TabIndex = 6;
|
||||
this.metroTextBox_CertificateFee.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.metroTextBox_CertificateFee.UseSelectable = true;
|
||||
this.metroTextBox_CertificateFee.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_CertificateFee.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
this.metroTextBox_CargoLargeFee.CustomButton.Image = null;
|
||||
this.metroTextBox_CargoLargeFee.CustomButton.Location = new System.Drawing.Point(78, 1);
|
||||
this.metroTextBox_CargoLargeFee.CustomButton.Name = "";
|
||||
this.metroTextBox_CargoLargeFee.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_CargoLargeFee.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_CargoLargeFee.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_CargoLargeFee.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_CargoLargeFee.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_CargoLargeFee.CustomButton.Visible = false;
|
||||
this.metroTextBox_CargoLargeFee.Lines = new string[0];
|
||||
this.metroTextBox_CargoLargeFee.Location = new System.Drawing.Point(150, 122);
|
||||
this.metroTextBox_CargoLargeFee.MaxLength = 32767;
|
||||
this.metroTextBox_CargoLargeFee.Name = "metroTextBox_CargoLargeFee";
|
||||
this.metroTextBox_CargoLargeFee.PasswordChar = '\0';
|
||||
this.metroTextBox_CargoLargeFee.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_CargoLargeFee.SelectedText = "";
|
||||
this.metroTextBox_CargoLargeFee.SelectionLength = 0;
|
||||
this.metroTextBox_CargoLargeFee.SelectionStart = 0;
|
||||
this.metroTextBox_CargoLargeFee.ShortcutsEnabled = true;
|
||||
this.metroTextBox_CargoLargeFee.Size = new System.Drawing.Size(100, 23);
|
||||
this.metroTextBox_CargoLargeFee.TabIndex = 6;
|
||||
this.metroTextBox_CargoLargeFee.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.metroTextBox_CargoLargeFee.UseSelectable = true;
|
||||
this.metroTextBox_CargoLargeFee.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_CargoLargeFee.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroTextBox_ReCertificateFee
|
||||
// metroTextBox_CargoOversizedFee
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_ReCertificateFee.CustomButton.Image = null;
|
||||
this.metroTextBox_ReCertificateFee.CustomButton.Location = new System.Drawing.Point(78, 1);
|
||||
this.metroTextBox_ReCertificateFee.CustomButton.Name = "";
|
||||
this.metroTextBox_ReCertificateFee.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_ReCertificateFee.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_ReCertificateFee.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_ReCertificateFee.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_ReCertificateFee.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_ReCertificateFee.CustomButton.Visible = false;
|
||||
this.metroTextBox_ReCertificateFee.Lines = new string[0];
|
||||
this.metroTextBox_ReCertificateFee.Location = new System.Drawing.Point(150, 106);
|
||||
this.metroTextBox_ReCertificateFee.MaxLength = 32767;
|
||||
this.metroTextBox_ReCertificateFee.Name = "metroTextBox_ReCertificateFee";
|
||||
this.metroTextBox_ReCertificateFee.PasswordChar = '\0';
|
||||
this.metroTextBox_ReCertificateFee.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_ReCertificateFee.SelectedText = "";
|
||||
this.metroTextBox_ReCertificateFee.SelectionLength = 0;
|
||||
this.metroTextBox_ReCertificateFee.SelectionStart = 0;
|
||||
this.metroTextBox_ReCertificateFee.ShortcutsEnabled = true;
|
||||
this.metroTextBox_ReCertificateFee.Size = new System.Drawing.Size(100, 23);
|
||||
this.metroTextBox_ReCertificateFee.TabIndex = 7;
|
||||
this.metroTextBox_ReCertificateFee.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.metroTextBox_ReCertificateFee.UseSelectable = true;
|
||||
this.metroTextBox_ReCertificateFee.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_ReCertificateFee.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
this.metroTextBox_CargoOversizedFee.CustomButton.Image = null;
|
||||
this.metroTextBox_CargoOversizedFee.CustomButton.Location = new System.Drawing.Point(78, 1);
|
||||
this.metroTextBox_CargoOversizedFee.CustomButton.Name = "";
|
||||
this.metroTextBox_CargoOversizedFee.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_CargoOversizedFee.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_CargoOversizedFee.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_CargoOversizedFee.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_CargoOversizedFee.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_CargoOversizedFee.CustomButton.Visible = false;
|
||||
this.metroTextBox_CargoOversizedFee.Lines = new string[0];
|
||||
this.metroTextBox_CargoOversizedFee.Location = new System.Drawing.Point(150, 152);
|
||||
this.metroTextBox_CargoOversizedFee.MaxLength = 32767;
|
||||
this.metroTextBox_CargoOversizedFee.Name = "metroTextBox_CargoOversizedFee";
|
||||
this.metroTextBox_CargoOversizedFee.PasswordChar = '\0';
|
||||
this.metroTextBox_CargoOversizedFee.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_CargoOversizedFee.SelectedText = "";
|
||||
this.metroTextBox_CargoOversizedFee.SelectionLength = 0;
|
||||
this.metroTextBox_CargoOversizedFee.SelectionStart = 0;
|
||||
this.metroTextBox_CargoOversizedFee.ShortcutsEnabled = true;
|
||||
this.metroTextBox_CargoOversizedFee.Size = new System.Drawing.Size(100, 23);
|
||||
this.metroTextBox_CargoOversizedFee.TabIndex = 7;
|
||||
this.metroTextBox_CargoOversizedFee.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.metroTextBox_CargoOversizedFee.UseSelectable = true;
|
||||
this.metroTextBox_CargoOversizedFee.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_CargoOversizedFee.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroButton_Save
|
||||
//
|
||||
this.metroButton_Save.FontSize = MetroFramework.MetroButtonSize.Tall;
|
||||
this.metroButton_Save.Location = new System.Drawing.Point(173, 140);
|
||||
this.metroButton_Save.Location = new System.Drawing.Point(173, 274);
|
||||
this.metroButton_Save.Name = "metroButton_Save";
|
||||
this.metroButton_Save.Size = new System.Drawing.Size(100, 40);
|
||||
this.metroButton_Save.TabIndex = 8;
|
||||
@@ -217,7 +225,7 @@
|
||||
// metroLabel5
|
||||
//
|
||||
this.metroLabel5.AutoSize = true;
|
||||
this.metroLabel5.Location = new System.Drawing.Point(250, 20);
|
||||
this.metroLabel5.Location = new System.Drawing.Point(250, 66);
|
||||
this.metroLabel5.Name = "metroLabel5";
|
||||
this.metroLabel5.Size = new System.Drawing.Size(23, 19);
|
||||
this.metroLabel5.TabIndex = 9;
|
||||
@@ -226,7 +234,7 @@
|
||||
// metroLabel6
|
||||
//
|
||||
this.metroLabel6.AutoSize = true;
|
||||
this.metroLabel6.Location = new System.Drawing.Point(250, 50);
|
||||
this.metroLabel6.Location = new System.Drawing.Point(250, 96);
|
||||
this.metroLabel6.Name = "metroLabel6";
|
||||
this.metroLabel6.Size = new System.Drawing.Size(23, 19);
|
||||
this.metroLabel6.TabIndex = 9;
|
||||
@@ -235,7 +243,7 @@
|
||||
// metroLabel7
|
||||
//
|
||||
this.metroLabel7.AutoSize = true;
|
||||
this.metroLabel7.Location = new System.Drawing.Point(250, 80);
|
||||
this.metroLabel7.Location = new System.Drawing.Point(250, 126);
|
||||
this.metroLabel7.Name = "metroLabel7";
|
||||
this.metroLabel7.Size = new System.Drawing.Size(23, 19);
|
||||
this.metroLabel7.TabIndex = 9;
|
||||
@@ -244,32 +252,178 @@
|
||||
// metroLabel8
|
||||
//
|
||||
this.metroLabel8.AutoSize = true;
|
||||
this.metroLabel8.Location = new System.Drawing.Point(250, 110);
|
||||
this.metroLabel8.Location = new System.Drawing.Point(250, 156);
|
||||
this.metroLabel8.Name = "metroLabel8";
|
||||
this.metroLabel8.Size = new System.Drawing.Size(23, 19);
|
||||
this.metroLabel8.TabIndex = 9;
|
||||
this.metroLabel8.Text = "원";
|
||||
//
|
||||
// metroLabel9
|
||||
//
|
||||
this.metroLabel9.AutoSize = true;
|
||||
this.metroLabel9.Location = new System.Drawing.Point(20, 21);
|
||||
this.metroLabel9.Name = "metroLabel9";
|
||||
this.metroLabel9.Size = new System.Drawing.Size(96, 19);
|
||||
this.metroLabel9.TabIndex = 10;
|
||||
this.metroLabel9.Text = "이용 금액(1년)";
|
||||
//
|
||||
// metroTextBox_GarageName
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_GarageName.CustomButton.Image = null;
|
||||
this.metroTextBox_GarageName.CustomButton.Location = new System.Drawing.Point(78, 1);
|
||||
this.metroTextBox_GarageName.CustomButton.Name = "";
|
||||
this.metroTextBox_GarageName.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_GarageName.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_GarageName.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_GarageName.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_GarageName.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_GarageName.CustomButton.Visible = false;
|
||||
this.metroTextBox_GarageName.Lines = new string[0];
|
||||
this.metroTextBox_GarageName.Location = new System.Drawing.Point(141, 17);
|
||||
this.metroTextBox_GarageName.MaxLength = 32767;
|
||||
this.metroTextBox_GarageName.Name = "metroTextBox_GarageName";
|
||||
this.metroTextBox_GarageName.PasswordChar = '\0';
|
||||
this.metroTextBox_GarageName.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_GarageName.SelectedText = "";
|
||||
this.metroTextBox_GarageName.SelectionLength = 0;
|
||||
this.metroTextBox_GarageName.SelectionStart = 0;
|
||||
this.metroTextBox_GarageName.ShortcutsEnabled = true;
|
||||
this.metroTextBox_GarageName.Size = new System.Drawing.Size(100, 23);
|
||||
this.metroTextBox_GarageName.TabIndex = 11;
|
||||
this.metroTextBox_GarageName.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.metroTextBox_GarageName.UseSelectable = true;
|
||||
this.metroTextBox_GarageName.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_GarageName.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroLabel10
|
||||
//
|
||||
this.metroLabel10.AutoSize = true;
|
||||
this.metroLabel10.Location = new System.Drawing.Point(250, 222);
|
||||
this.metroLabel10.Name = "metroLabel10";
|
||||
this.metroLabel10.Size = new System.Drawing.Size(23, 19);
|
||||
this.metroLabel10.TabIndex = 16;
|
||||
this.metroLabel10.Text = "원";
|
||||
//
|
||||
// metroLabel11
|
||||
//
|
||||
this.metroLabel11.AutoSize = true;
|
||||
this.metroLabel11.Location = new System.Drawing.Point(250, 192);
|
||||
this.metroLabel11.Name = "metroLabel11";
|
||||
this.metroLabel11.Size = new System.Drawing.Size(23, 19);
|
||||
this.metroLabel11.TabIndex = 17;
|
||||
this.metroLabel11.Text = "원";
|
||||
//
|
||||
// metroTextBox_CargoOversizedCertificateFee
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_CargoOversizedCertificateFee.CustomButton.Image = null;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.CustomButton.Location = new System.Drawing.Point(78, 1);
|
||||
this.metroTextBox_CargoOversizedCertificateFee.CustomButton.Name = "";
|
||||
this.metroTextBox_CargoOversizedCertificateFee.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_CargoOversizedCertificateFee.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.CustomButton.Visible = false;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.Lines = new string[0];
|
||||
this.metroTextBox_CargoOversizedCertificateFee.Location = new System.Drawing.Point(150, 218);
|
||||
this.metroTextBox_CargoOversizedCertificateFee.MaxLength = 32767;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.Name = "metroTextBox_CargoOversizedCertificateFee";
|
||||
this.metroTextBox_CargoOversizedCertificateFee.PasswordChar = '\0';
|
||||
this.metroTextBox_CargoOversizedCertificateFee.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.SelectedText = "";
|
||||
this.metroTextBox_CargoOversizedCertificateFee.SelectionLength = 0;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.SelectionStart = 0;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.ShortcutsEnabled = true;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.Size = new System.Drawing.Size(100, 23);
|
||||
this.metroTextBox_CargoOversizedCertificateFee.TabIndex = 15;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.UseSelectable = true;
|
||||
this.metroTextBox_CargoOversizedCertificateFee.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_CargoOversizedCertificateFee.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroTextBox_CargoLargeCertificateFee
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.metroTextBox_CargoLargeCertificateFee.CustomButton.Image = null;
|
||||
this.metroTextBox_CargoLargeCertificateFee.CustomButton.Location = new System.Drawing.Point(78, 1);
|
||||
this.metroTextBox_CargoLargeCertificateFee.CustomButton.Name = "";
|
||||
this.metroTextBox_CargoLargeCertificateFee.CustomButton.Size = new System.Drawing.Size(21, 21);
|
||||
this.metroTextBox_CargoLargeCertificateFee.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
|
||||
this.metroTextBox_CargoLargeCertificateFee.CustomButton.TabIndex = 1;
|
||||
this.metroTextBox_CargoLargeCertificateFee.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
|
||||
this.metroTextBox_CargoLargeCertificateFee.CustomButton.UseSelectable = true;
|
||||
this.metroTextBox_CargoLargeCertificateFee.CustomButton.Visible = false;
|
||||
this.metroTextBox_CargoLargeCertificateFee.Lines = new string[0];
|
||||
this.metroTextBox_CargoLargeCertificateFee.Location = new System.Drawing.Point(150, 188);
|
||||
this.metroTextBox_CargoLargeCertificateFee.MaxLength = 32767;
|
||||
this.metroTextBox_CargoLargeCertificateFee.Name = "metroTextBox_CargoLargeCertificateFee";
|
||||
this.metroTextBox_CargoLargeCertificateFee.PasswordChar = '\0';
|
||||
this.metroTextBox_CargoLargeCertificateFee.ScrollBars = System.Windows.Forms.ScrollBars.None;
|
||||
this.metroTextBox_CargoLargeCertificateFee.SelectedText = "";
|
||||
this.metroTextBox_CargoLargeCertificateFee.SelectionLength = 0;
|
||||
this.metroTextBox_CargoLargeCertificateFee.SelectionStart = 0;
|
||||
this.metroTextBox_CargoLargeCertificateFee.ShortcutsEnabled = true;
|
||||
this.metroTextBox_CargoLargeCertificateFee.Size = new System.Drawing.Size(100, 23);
|
||||
this.metroTextBox_CargoLargeCertificateFee.TabIndex = 14;
|
||||
this.metroTextBox_CargoLargeCertificateFee.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
||||
this.metroTextBox_CargoLargeCertificateFee.UseSelectable = true;
|
||||
this.metroTextBox_CargoLargeCertificateFee.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
|
||||
this.metroTextBox_CargoLargeCertificateFee.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
|
||||
//
|
||||
// metroLabel12
|
||||
//
|
||||
this.metroLabel12.AutoSize = true;
|
||||
this.metroLabel12.Location = new System.Drawing.Point(20, 222);
|
||||
this.metroLabel12.Name = "metroLabel12";
|
||||
this.metroLabel12.Size = new System.Drawing.Size(129, 19);
|
||||
this.metroLabel12.TabIndex = 13;
|
||||
this.metroLabel12.Text = "증명서 재발급 금액";
|
||||
//
|
||||
// metroLabel13
|
||||
//
|
||||
this.metroLabel13.AutoSize = true;
|
||||
this.metroLabel13.Location = new System.Drawing.Point(20, 192);
|
||||
this.metroLabel13.Name = "metroLabel13";
|
||||
this.metroLabel13.Size = new System.Drawing.Size(115, 19);
|
||||
this.metroLabel13.TabIndex = 12;
|
||||
this.metroLabel13.Text = "증명서 발급 금액";
|
||||
//
|
||||
// SettingControl
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackColor = System.Drawing.Color.White;
|
||||
this.Controls.Add(this.metroLabel10);
|
||||
this.Controls.Add(this.metroLabel11);
|
||||
this.Controls.Add(this.metroTextBox_CargoOversizedCertificateFee);
|
||||
this.Controls.Add(this.metroTextBox_CargoLargeCertificateFee);
|
||||
this.Controls.Add(this.metroLabel12);
|
||||
this.Controls.Add(this.metroLabel13);
|
||||
this.Controls.Add(this.metroTextBox_GarageName);
|
||||
this.Controls.Add(this.metroLabel9);
|
||||
this.Controls.Add(this.metroLabel8);
|
||||
this.Controls.Add(this.metroLabel7);
|
||||
this.Controls.Add(this.metroLabel6);
|
||||
this.Controls.Add(this.metroLabel5);
|
||||
this.Controls.Add(this.metroButton_Save);
|
||||
this.Controls.Add(this.metroTextBox_ReCertificateFee);
|
||||
this.Controls.Add(this.metroTextBox_CertificateFee);
|
||||
this.Controls.Add(this.metroTextBox_ExtendedFee);
|
||||
this.Controls.Add(this.metroTextBox_UsageFee);
|
||||
this.Controls.Add(this.metroTextBox_CargoOversizedFee);
|
||||
this.Controls.Add(this.metroTextBox_CargoLargeFee);
|
||||
this.Controls.Add(this.metroTextBox_CargoOversizedMaxCount);
|
||||
this.Controls.Add(this.metroTextBox_CargoLargeMaxCount);
|
||||
this.Controls.Add(this.metroLabel4);
|
||||
this.Controls.Add(this.metroLabel3);
|
||||
this.Controls.Add(this.metroLabel2);
|
||||
this.Controls.Add(this.metroLabel1);
|
||||
this.Name = "SettingControl";
|
||||
this.Size = new System.Drawing.Size(300, 200);
|
||||
this.Size = new System.Drawing.Size(346, 377);
|
||||
this.Paint += new System.Windows.Forms.PaintEventHandler(this.Settings_Paint);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
@@ -282,14 +436,22 @@
|
||||
private MetroFramework.Controls.MetroLabel metroLabel2;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel3;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel4;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_UsageFee;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_ExtendedFee;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_CertificateFee;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_ReCertificateFee;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_CargoLargeMaxCount;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_CargoOversizedMaxCount;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_CargoLargeFee;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_CargoOversizedFee;
|
||||
private MetroFramework.Controls.MetroButton metroButton_Save;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel5;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel6;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel7;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel8;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel9;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_GarageName;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel10;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel11;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_CargoOversizedCertificateFee;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_CargoLargeCertificateFee;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel12;
|
||||
private MetroFramework.Controls.MetroLabel metroLabel13;
|
||||
}
|
||||
}
|
||||
|
@@ -1,15 +1,5 @@
|
||||
using HSUCO_Cargo_Garage_Operation_Program.Properties;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Diagnostics;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
using System.Windows.Media;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
{
|
||||
@@ -23,11 +13,15 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
|
||||
public void SettingReset()
|
||||
{
|
||||
metroTextBox_GarageName.Text = Global.GlobalSettings.GarageName.ToString();
|
||||
metroTextBox_CargoLargeMaxCount.Text = Global.GlobalSettings.CargoLargeMaxCount.ToString();
|
||||
metroTextBox_CargoOversizedMaxCount.Text = Global.GlobalSettings.CargoOversizedMaxCount.ToString();
|
||||
|
||||
metroTextBox_UsageFee.Text = Global.GlobalSettings.UsageFee.ToString();
|
||||
metroTextBox_ExtendedFee.Text = Global.GlobalSettings.ExtendedFee.ToString();
|
||||
metroTextBox_CertificateFee.Text = Global.GlobalSettings.CertificateFee.ToString();
|
||||
metroTextBox_ReCertificateFee.Text = Global.GlobalSettings.ReCertificateFee.ToString();
|
||||
metroTextBox_CargoLargeFee.Text = Global.GlobalSettings.CargoLargeFee.ToString();
|
||||
metroTextBox_CargoOversizedFee.Text = Global.GlobalSettings.CargoOversizedFee.ToString();
|
||||
|
||||
metroTextBox_CargoLargeCertificateFee.Text = Global.GlobalSettings.CargoLargeCertificateFee.ToString();
|
||||
metroTextBox_CargoOversizedCertificateFee.Text = Global.GlobalSettings.CargoOversizedCertificateFee.ToString();
|
||||
|
||||
}
|
||||
|
||||
@@ -42,17 +36,21 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
int value;
|
||||
Settings settings = new Settings();
|
||||
|
||||
int.TryParse(metroTextBox_UsageFee.Text, out value);
|
||||
settings.UsageFee = value;
|
||||
settings.GarageName = metroTextBox_GarageName.Text.Trim();
|
||||
int.TryParse(metroTextBox_CargoLargeMaxCount.Text, out value);
|
||||
settings.CargoLargeMaxCount = value;
|
||||
|
||||
int.TryParse(metroTextBox_ExtendedFee.Text, out value);
|
||||
settings.ExtendedFee = value;
|
||||
|
||||
int.TryParse(metroTextBox_CertificateFee.Text, out value);
|
||||
settings.CertificateFee = value;
|
||||
int.TryParse(metroTextBox_ReCertificateFee.Text, out value);
|
||||
settings.ReCertificateFee = value;
|
||||
int.TryParse(metroTextBox_CargoOversizedMaxCount.Text, out value);
|
||||
settings.CargoOversizedMaxCount = value;
|
||||
|
||||
int.TryParse(metroTextBox_CargoLargeFee.Text, out value);
|
||||
settings.CargoLargeFee = value;
|
||||
int.TryParse(metroTextBox_CargoOversizedFee.Text, out value);
|
||||
settings.CargoOversizedFee = value;
|
||||
int.TryParse(metroTextBox_CargoLargeCertificateFee.Text, out value);
|
||||
settings.CargoLargeCertificateFee = value;
|
||||
int.TryParse(metroTextBox_CargoOversizedCertificateFee.Text, out value);
|
||||
settings.CargoOversizedCertificateFee = value;
|
||||
Database.SaveSettings(settings);
|
||||
|
||||
|
||||
|
@@ -1,12 +1,11 @@
|
||||
using System;
|
||||
using HSUCO_Cargo_Garage_Operation_Program.Properties;
|
||||
using MetroFramework;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Drawing.Printing;
|
||||
using System.Linq;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Forms;
|
||||
using HSUCO_Cargo_Garage_Operation_Program.Properties;
|
||||
using MetroFramework;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
{
|
||||
@@ -45,12 +44,12 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
{
|
||||
case 0:
|
||||
nowUserList = nowUserList
|
||||
.Where(x => x.RegistrationNumberTruck.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
.Where(x => x.CargoVehicleNumber.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
|
||||
break;
|
||||
case 1:
|
||||
nowUserList = nowUserList
|
||||
.Where(x => x.RegistrationNumberPassenger.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
.Where(x => x.PassengerVehicleNumber.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
break;
|
||||
case 2:
|
||||
nowUserList = nowUserList.Where(x => x.Name.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
@@ -80,8 +79,8 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
dataTable.Rows
|
||||
.Add(
|
||||
nowUserList[i].No,
|
||||
nowUserList[i].RegistrationNumberTruck,
|
||||
nowUserList[i].RegistrationNumberPassenger,
|
||||
nowUserList[i].CargoVehicleNumber,
|
||||
nowUserList[i].PassengerVehicleNumber,
|
||||
nowUserList[i].Name,
|
||||
nowUserList[i].Phone,
|
||||
nowUserList[i].Address,
|
||||
@@ -134,7 +133,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
if (dataGridView_List.SelectedRows[i].Cells[8].Value.ToString() == "N")
|
||||
{
|
||||
var extended = new Extended();
|
||||
extended.RegistrationNumberTruck = dataGridView_List.SelectedRows[i].Cells[0].Value.ToString();
|
||||
extended.CargoVehicleNumber = dataGridView_List.SelectedRows[i].Cells[0].Value.ToString();
|
||||
extended.DateEnd = DateTime.Parse(dataGridView_List.SelectedRows[i].Cells[7].Value.ToString());
|
||||
extendeds.Add(extended);
|
||||
}
|
||||
@@ -183,14 +182,14 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
int code = int.Parse(dataGridView_List.SelectedRows[0].Cells[0].Value.ToString());
|
||||
|
||||
CertificateData certificateData = new CertificateData();
|
||||
certificateData.RegistrationNumberTruck =
|
||||
certificateData.CargoVehicleNumber =
|
||||
dataGridView_List.SelectedRows[0].Cells[1].Value.ToString();
|
||||
certificateData.RegistrationNumberPassenger = dataGridView_List.SelectedRows[0].Cells[2].Value.ToString();
|
||||
certificateData.PassengerVehicleNumber = dataGridView_List.SelectedRows[0].Cells[2].Value.ToString();
|
||||
|
||||
certificateData.Name = dataGridView_List.SelectedRows[0].Cells[3].Value.ToString();
|
||||
certificateData.StartDate =
|
||||
DateTime.Parse(dataGridView_List.SelectedRows[0].Cells[7].Value.ToString());
|
||||
certificateData.EndDate= DateTime.Parse(dataGridView_List.SelectedRows[0].Cells[8].Value.ToString());
|
||||
certificateData.EndDate = DateTime.Parse(dataGridView_List.SelectedRows[0].Cells[8].Value.ToString());
|
||||
certificateData.IssueDate = nowDateTime;
|
||||
|
||||
int lastNo = Database.GetLastCertificate(nowDateTime.Year);
|
||||
@@ -211,10 +210,11 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
setProceedsInfo.No = certificate.No;
|
||||
setProceedsInfo.Date = nowDateTime;
|
||||
setProceedsInfo.Type = ProceedsType.Certificate;
|
||||
setProceedsInfo.Amount = Global.GlobalSettings.CertificateFee;
|
||||
// 요금 상계 부분
|
||||
// setProceedsInfo.Amount = Global.GlobalSettings.CertificateFee;
|
||||
|
||||
dbResult = Database.SetProceeds(setProceedsInfo);
|
||||
// 요금 ?
|
||||
|
||||
|
||||
|
||||
|
||||
|
@@ -29,10 +29,6 @@
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
this.metroRadioButton_InspectionFalse = new MetroFramework.Controls.MetroRadioButton();
|
||||
this.metroRadioButton_InspectionTrue = new MetroFramework.Controls.MetroRadioButton();
|
||||
this.metroRadioButton_InspectionAll = new MetroFramework.Controls.MetroRadioButton();
|
||||
this.metroPanel1 = new MetroFramework.Controls.MetroPanel();
|
||||
this.metroButton_ExportExcel = new MetroFramework.Controls.MetroButton();
|
||||
this.metroButton_Delete = new MetroFramework.Controls.MetroButton();
|
||||
@@ -42,72 +38,21 @@
|
||||
this.metroButton_Search = new MetroFramework.Controls.MetroButton();
|
||||
this.metroTextBox_Search = new MetroFramework.Controls.MetroTextBox();
|
||||
this.metroComboBox_SearchType = new MetroFramework.Controls.MetroComboBox();
|
||||
this.metroButton_InspectionFalse = new MetroFramework.Controls.MetroButton();
|
||||
this.metroButton_InspectionTrue = new MetroFramework.Controls.MetroButton();
|
||||
this.metroButton_UpdateUser = new MetroFramework.Controls.MetroButton();
|
||||
this.dataGridView_List = new System.Windows.Forms.DataGridView();
|
||||
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
|
||||
this.groupBox1.SuspendLayout();
|
||||
this.metroPanel1.SuspendLayout();
|
||||
this.groupBox2.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.dataGridView_List)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// groupBox1
|
||||
//
|
||||
this.groupBox1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.groupBox1.Controls.Add(this.metroRadioButton_InspectionFalse);
|
||||
this.groupBox1.Controls.Add(this.metroRadioButton_InspectionTrue);
|
||||
this.groupBox1.Controls.Add(this.metroRadioButton_InspectionAll);
|
||||
this.groupBox1.Location = new System.Drawing.Point(20, 20);
|
||||
this.groupBox1.Name = "groupBox1";
|
||||
this.groupBox1.Size = new System.Drawing.Size(150, 90);
|
||||
this.groupBox1.TabIndex = 4;
|
||||
this.groupBox1.TabStop = false;
|
||||
this.groupBox1.Text = "그룹 필터";
|
||||
//
|
||||
// metroRadioButton_InspectionFalse
|
||||
//
|
||||
this.metroRadioButton_InspectionFalse.AutoSize = true;
|
||||
this.metroRadioButton_InspectionFalse.Location = new System.Drawing.Point(30, 60);
|
||||
this.metroRadioButton_InspectionFalse.Name = "metroRadioButton_InspectionFalse";
|
||||
this.metroRadioButton_InspectionFalse.Size = new System.Drawing.Size(74, 15);
|
||||
this.metroRadioButton_InspectionFalse.TabIndex = 2;
|
||||
this.metroRadioButton_InspectionFalse.Text = "서류 미비";
|
||||
this.metroRadioButton_InspectionFalse.UseSelectable = true;
|
||||
//
|
||||
// metroRadioButton_InspectionTrue
|
||||
//
|
||||
this.metroRadioButton_InspectionTrue.AutoSize = true;
|
||||
this.metroRadioButton_InspectionTrue.Location = new System.Drawing.Point(30, 40);
|
||||
this.metroRadioButton_InspectionTrue.Name = "metroRadioButton_InspectionTrue";
|
||||
this.metroRadioButton_InspectionTrue.Size = new System.Drawing.Size(74, 15);
|
||||
this.metroRadioButton_InspectionTrue.TabIndex = 1;
|
||||
this.metroRadioButton_InspectionTrue.Text = "서류 완료";
|
||||
this.metroRadioButton_InspectionTrue.UseSelectable = true;
|
||||
//
|
||||
// metroRadioButton_InspectionAll
|
||||
//
|
||||
this.metroRadioButton_InspectionAll.AutoSize = true;
|
||||
this.metroRadioButton_InspectionAll.Checked = true;
|
||||
this.metroRadioButton_InspectionAll.Location = new System.Drawing.Point(30, 20);
|
||||
this.metroRadioButton_InspectionAll.Name = "metroRadioButton_InspectionAll";
|
||||
this.metroRadioButton_InspectionAll.Size = new System.Drawing.Size(47, 15);
|
||||
this.metroRadioButton_InspectionAll.TabIndex = 0;
|
||||
this.metroRadioButton_InspectionAll.TabStop = true;
|
||||
this.metroRadioButton_InspectionAll.Text = "전체";
|
||||
this.metroRadioButton_InspectionAll.UseSelectable = true;
|
||||
//
|
||||
// metroPanel1
|
||||
//
|
||||
this.metroPanel1.Controls.Add(this.metroButton_ExportExcel);
|
||||
this.metroPanel1.Controls.Add(this.metroButton_Delete);
|
||||
this.metroPanel1.Controls.Add(this.groupBox2);
|
||||
this.metroPanel1.Controls.Add(this.metroButton_InspectionFalse);
|
||||
this.metroPanel1.Controls.Add(this.metroButton_InspectionTrue);
|
||||
this.metroPanel1.Controls.Add(this.metroButton_UpdateUser);
|
||||
this.metroPanel1.Controls.Add(this.dataGridView_List);
|
||||
this.metroPanel1.Controls.Add(this.groupBox1);
|
||||
this.metroPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.metroPanel1.HorizontalScrollbarBarColor = true;
|
||||
this.metroPanel1.HorizontalScrollbarHighlightOnWheel = false;
|
||||
@@ -138,11 +83,11 @@
|
||||
//
|
||||
this.metroButton_Delete.Anchor = System.Windows.Forms.AnchorStyles.Right;
|
||||
this.metroButton_Delete.FontSize = MetroFramework.MetroButtonSize.Tall;
|
||||
this.metroButton_Delete.Location = new System.Drawing.Point(626, 276);
|
||||
this.metroButton_Delete.Location = new System.Drawing.Point(626, 184);
|
||||
this.metroButton_Delete.Name = "metroButton_Delete";
|
||||
this.metroButton_Delete.Size = new System.Drawing.Size(121, 40);
|
||||
this.metroButton_Delete.TabIndex = 10;
|
||||
this.metroButton_Delete.Text = "삭제";
|
||||
this.metroButton_Delete.Text = "대기자 삭제";
|
||||
this.metroButton_Delete.UseSelectable = true;
|
||||
this.metroButton_Delete.Click += new System.EventHandler(this.metroButton_Delete_Click);
|
||||
//
|
||||
@@ -154,9 +99,9 @@
|
||||
this.groupBox2.Controls.Add(this.metroButton_Search);
|
||||
this.groupBox2.Controls.Add(this.metroTextBox_Search);
|
||||
this.groupBox2.Controls.Add(this.metroComboBox_SearchType);
|
||||
this.groupBox2.Location = new System.Drawing.Point(200, 20);
|
||||
this.groupBox2.Location = new System.Drawing.Point(20, 20);
|
||||
this.groupBox2.Name = "groupBox2";
|
||||
this.groupBox2.Size = new System.Drawing.Size(530, 90);
|
||||
this.groupBox2.Size = new System.Drawing.Size(710, 90);
|
||||
this.groupBox2.TabIndex = 8;
|
||||
this.groupBox2.TabStop = false;
|
||||
this.groupBox2.Text = "검색";
|
||||
@@ -236,30 +181,6 @@
|
||||
this.metroComboBox_SearchType.TabIndex = 3;
|
||||
this.metroComboBox_SearchType.UseSelectable = true;
|
||||
//
|
||||
// metroButton_InspectionFalse
|
||||
//
|
||||
this.metroButton_InspectionFalse.Anchor = System.Windows.Forms.AnchorStyles.Right;
|
||||
this.metroButton_InspectionFalse.FontSize = MetroFramework.MetroButtonSize.Tall;
|
||||
this.metroButton_InspectionFalse.Location = new System.Drawing.Point(626, 230);
|
||||
this.metroButton_InspectionFalse.Name = "metroButton_InspectionFalse";
|
||||
this.metroButton_InspectionFalse.Size = new System.Drawing.Size(121, 40);
|
||||
this.metroButton_InspectionFalse.TabIndex = 9;
|
||||
this.metroButton_InspectionFalse.Text = "서류 미비 전환";
|
||||
this.metroButton_InspectionFalse.UseSelectable = true;
|
||||
this.metroButton_InspectionFalse.Click += new System.EventHandler(this.metroButton_InspectionFalse_Click);
|
||||
//
|
||||
// metroButton_InspectionTrue
|
||||
//
|
||||
this.metroButton_InspectionTrue.Anchor = System.Windows.Forms.AnchorStyles.Right;
|
||||
this.metroButton_InspectionTrue.FontSize = MetroFramework.MetroButtonSize.Tall;
|
||||
this.metroButton_InspectionTrue.Location = new System.Drawing.Point(626, 184);
|
||||
this.metroButton_InspectionTrue.Name = "metroButton_InspectionTrue";
|
||||
this.metroButton_InspectionTrue.Size = new System.Drawing.Size(121, 40);
|
||||
this.metroButton_InspectionTrue.TabIndex = 8;
|
||||
this.metroButton_InspectionTrue.Text = "서류 완료 전환";
|
||||
this.metroButton_InspectionTrue.UseSelectable = true;
|
||||
this.metroButton_InspectionTrue.Click += new System.EventHandler(this.metroButton_InspectionTrue_Click);
|
||||
//
|
||||
// metroButton_UpdateUser
|
||||
//
|
||||
this.metroButton_UpdateUser.Anchor = System.Windows.Forms.AnchorStyles.Right;
|
||||
@@ -304,8 +225,6 @@
|
||||
this.Name = "WaitingList";
|
||||
this.Size = new System.Drawing.Size(750, 470);
|
||||
this.Load += new System.EventHandler(this.ApplicantList_Load);
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
this.groupBox1.PerformLayout();
|
||||
this.metroPanel1.ResumeLayout(false);
|
||||
this.groupBox2.ResumeLayout(false);
|
||||
this.groupBox2.PerformLayout();
|
||||
@@ -315,18 +234,11 @@
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.GroupBox groupBox1;
|
||||
private MetroFramework.Controls.MetroRadioButton metroRadioButton_InspectionFalse;
|
||||
private MetroFramework.Controls.MetroRadioButton metroRadioButton_InspectionTrue;
|
||||
private MetroFramework.Controls.MetroRadioButton metroRadioButton_InspectionAll;
|
||||
private MetroFramework.Controls.MetroPanel metroPanel1;
|
||||
private System.Windows.Forms.GroupBox groupBox2;
|
||||
private MetroFramework.Controls.MetroButton metroButton_Search;
|
||||
private MetroFramework.Controls.MetroTextBox metroTextBox_Search;
|
||||
private MetroFramework.Controls.MetroComboBox metroComboBox_SearchType;
|
||||
private MetroFramework.Controls.MetroButton metroButton_InspectionFalse;
|
||||
private MetroFramework.Controls.MetroButton metroButton_InspectionTrue;
|
||||
private MetroFramework.Controls.MetroButton metroButton_UpdateUser;
|
||||
private System.Windows.Forms.DataGridView dataGridView_List;
|
||||
private MetroFramework.Controls.MetroButton metroButton_Delete;
|
||||
|
@@ -17,76 +17,54 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
metroComboBox_SearchType.SelectedIndex = 0;
|
||||
}
|
||||
|
||||
List<Applicant> InspectionType()
|
||||
{
|
||||
// 순위?
|
||||
var applicants = Database.GetApplicantWiat();
|
||||
List<Applicant> nowApplicants;
|
||||
|
||||
if (metroRadioButton_InspectionTrue.Checked)
|
||||
{
|
||||
nowApplicants = applicants.Where(x => x.Inspection).ToList();
|
||||
}
|
||||
else if (metroRadioButton_InspectionFalse.Checked)
|
||||
{
|
||||
nowApplicants = applicants.Where(x => !x.Inspection).ToList();
|
||||
}
|
||||
else
|
||||
{
|
||||
nowApplicants = applicants;
|
||||
}
|
||||
|
||||
return nowApplicants;
|
||||
}
|
||||
|
||||
void DataChange()
|
||||
{
|
||||
var nowApplicants = InspectionType();
|
||||
|
||||
var applicants = Database.GetApplicantWiat();
|
||||
//TODO: 정렬 하여 순위 결정
|
||||
switch (metroComboBox_SearchType.SelectedIndex)
|
||||
{
|
||||
case 0:
|
||||
nowApplicants = nowApplicants.Where(x => x.RegistrationNumberTruck.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
applicants = applicants.Where(x => x.CargoVehicleNumber.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
|
||||
break;
|
||||
case 1:
|
||||
nowApplicants = nowApplicants.Where(x => x.RegistrationNumberPassenger.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
applicants = applicants.Where(x => x.PassengerVehicleNumber.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
break;
|
||||
case 2:
|
||||
nowApplicants = nowApplicants.Where(x => x.Name.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
applicants = applicants.Where(x => x.Name.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
break;
|
||||
case 3:
|
||||
nowApplicants = nowApplicants.Where(x => x.Phone.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
applicants = applicants.Where(x => x.Phone.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
break;
|
||||
case 4:
|
||||
nowApplicants = nowApplicants.Where(x => x.Address.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
applicants = applicants.Where(x => x.Address.Contains(metroTextBox_Search.Text.Trim())).ToList();
|
||||
break;
|
||||
|
||||
}
|
||||
// 소팅
|
||||
// 가져올때?
|
||||
|
||||
var dataTable = new DataTable();
|
||||
dataTable.Columns.Add("순위");
|
||||
//dataTable.Columns.Add("순위");
|
||||
dataTable.Columns.Add("차량번호(화물)");
|
||||
dataTable.Columns.Add("차량번호(승용)");
|
||||
dataTable.Columns.Add("이름");
|
||||
dataTable.Columns.Add("연락처");
|
||||
dataTable.Columns.Add("주소");
|
||||
dataTable.Columns.Add("신청일");
|
||||
dataTable.Columns.Add("서류 검토");
|
||||
|
||||
for (int i = 0; i < nowApplicants.Count; i++)
|
||||
for (int i = 0; i < applicants.Count; i++)
|
||||
{
|
||||
dataTable.Rows
|
||||
.Add(
|
||||
(nowApplicants[i].Inspection ? i + 1 : 0),
|
||||
nowApplicants[i].RegistrationNumberTruck,
|
||||
nowApplicants[i].RegistrationNumberPassenger,
|
||||
nowApplicants[i].Name,
|
||||
nowApplicants[i].Phone,
|
||||
nowApplicants[i].Address,
|
||||
nowApplicants[i].DateOfApplication,
|
||||
nowApplicants[i].Inspection ? "Y" : "N"
|
||||
|
||||
applicants[i].CargoVehicleNumber,
|
||||
applicants[i].PassengerVehicleNumber,
|
||||
applicants[i].Name,
|
||||
applicants[i].Phone,
|
||||
applicants[i].Address,
|
||||
applicants[i].DateOfApplication
|
||||
|
||||
|
||||
);
|
||||
}
|
||||
@@ -104,80 +82,16 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
|
||||
void metroButton_Search_Click(object sender, EventArgs e) => DataChange();
|
||||
|
||||
void metroButton_InspectionTrue_Click(object sender, EventArgs e)
|
||||
{
|
||||
var allCount = dataGridView_List.SelectedRows.Count;
|
||||
if (allCount == 0) return;
|
||||
|
||||
var RegistrationNumberTruck = new List<string>();
|
||||
|
||||
for (int i = 0; i < dataGridView_List.SelectedRows.Count; i++)
|
||||
{
|
||||
if (dataGridView_List.SelectedRows[i].Cells[6].Value.ToString() == "N")
|
||||
{
|
||||
RegistrationNumberTruck.Add(dataGridView_List.SelectedRows[i].Cells[0].Value.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
if (RegistrationNumberTruck.Count == 0)
|
||||
{
|
||||
MetroMessageBox.Show(this, "선택하신 건수 중에 전환할수 있는 건수가 없습니다.", "서류 완료 전환", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
else
|
||||
{
|
||||
var message = "선태하신 전체 건수(" + allCount + ")중 서류 미비 상태인 건수(" + RegistrationNumberTruck.Count + ")를 서류 완료 상태로 전환합니다.";
|
||||
|
||||
if (MetroMessageBox.Show(this, message, "서류 완료 전환", MessageBoxButtons.OKCancel, MessageBoxIcon.Information) == DialogResult.OK)
|
||||
{
|
||||
Database.ChangeInspection(RegistrationNumberTruck, true);
|
||||
}
|
||||
}
|
||||
|
||||
DataChange();
|
||||
}
|
||||
|
||||
void metroButton_InspectionFalse_Click(object sender, EventArgs e)
|
||||
{
|
||||
var allCount = dataGridView_List.SelectedRows.Count;
|
||||
if (allCount == 0) return;
|
||||
|
||||
var RegistrationNumberTruck = new List<string>();
|
||||
|
||||
for (int i = 0; i < dataGridView_List.SelectedRows.Count; i++)
|
||||
{
|
||||
if (dataGridView_List.SelectedRows[i].Cells[6].Value.ToString() == "Y")
|
||||
{
|
||||
RegistrationNumberTruck.Add(dataGridView_List.SelectedRows[i].Cells[0].Value.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
if (RegistrationNumberTruck.Count == 0)
|
||||
{
|
||||
MetroMessageBox.Show(this, "선택하신 건수 중에 전환할수 있는 건수가 없습니다.", "서류 미비 전환", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
else
|
||||
{
|
||||
var message = "선태하신 전체 건수(" + allCount + ")중 서류 완료 상태인 건수(" + RegistrationNumberTruck.Count + ")를 서류 미비 상태로 전환합니다.";
|
||||
|
||||
if (MetroMessageBox.Show(this, message, "서류 미비 전환", MessageBoxButtons.OKCancel, MessageBoxIcon.Information) == DialogResult.OK)
|
||||
{
|
||||
Database.ChangeInspection(RegistrationNumberTruck, false);
|
||||
}
|
||||
}
|
||||
|
||||
DataChange();
|
||||
}
|
||||
|
||||
void metroButton_Delete_Click(object sender, EventArgs e)
|
||||
{
|
||||
var allCount = dataGridView_List.SelectedRows.Count;
|
||||
if (allCount == 0) return;
|
||||
|
||||
var RegistrationNumberTruck = new List<string>();
|
||||
var CargoVehicleNumber = new List<string>();
|
||||
|
||||
for (int i = 0; i < dataGridView_List.SelectedRows.Count; i++)
|
||||
{
|
||||
RegistrationNumberTruck.Add(dataGridView_List.SelectedRows[i].Cells[0].Value.ToString());
|
||||
CargoVehicleNumber.Add(dataGridView_List.SelectedRows[i].Cells[0].Value.ToString());
|
||||
}
|
||||
|
||||
var message = "선태하신 " + allCount + "건을 삭제 하시겠습니까?";
|
||||
@@ -188,7 +102,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
|
||||
if (deleteReason.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
Database.DeleteInspection(RegistrationNumberTruck, deleteReason.ResultName, deleteReason.ResultReason);
|
||||
Database.DeleteInspection(CargoVehicleNumber, deleteReason.ResultName, deleteReason.ResultReason);
|
||||
DataChange();
|
||||
}
|
||||
}
|
||||
@@ -199,26 +113,26 @@ namespace HSUCO_Cargo_Garage_Operation_Program.CustomUserControl
|
||||
var allCount = dataGridView_List.Rows.Count - 1;
|
||||
if (allCount == 0) return;
|
||||
|
||||
var RegistrationNumberTruck = new List<string>();
|
||||
var CargoVehicleNumber = new List<string>();
|
||||
|
||||
for (int i = 0; i < allCount; i++)
|
||||
{
|
||||
if (dataGridView_List.Rows[i].Cells[7].Value.ToString() == "Y")
|
||||
{
|
||||
RegistrationNumberTruck.Add(dataGridView_List.Rows[i].Cells[1].Value.ToString());
|
||||
CargoVehicleNumber.Add(dataGridView_List.Rows[i].Cells[1].Value.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
if (RegistrationNumberTruck.Count == 0)
|
||||
if (CargoVehicleNumber.Count == 0)
|
||||
{
|
||||
MetroMessageBox.Show(this, "당첨 처리 할수 있는 건이 없습니다.", "당첨 처리", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
var waitingCount = new WaitingCount(allCount, RegistrationNumberTruck.Count);
|
||||
var waitingCount = new WaitingCount(allCount, CargoVehicleNumber.Count);
|
||||
|
||||
if (waitingCount.ShowDialog() != DialogResult.OK) return;
|
||||
var list = RegistrationNumberTruck.GetRange(0, waitingCount.ResultCount);
|
||||
var list = CargoVehicleNumber.GetRange(0, waitingCount.ResultCount);
|
||||
//TODO: 업데이트 필요함
|
||||
Database.AddUserList(list, waitingCount.StartDate, waitingCount.EndDate, waitingCount.TotalCost);
|
||||
DataChange();
|
||||
|
@@ -2,24 +2,36 @@
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
{
|
||||
public struct Applicant
|
||||
public struct ApplicantInformation
|
||||
{
|
||||
public bool ApplicantType { get; set; }
|
||||
public string RegistrationNumberTruck { get; set; }
|
||||
public string RegistrationNumberPassenger { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string CargoVehicleNumber { get; set; }
|
||||
public string CargoVehicleName { get; set; }
|
||||
public string PassengerVehicleNumber { get; set; }
|
||||
public string PassengerVehicleName { get; set; }
|
||||
public EVehicleType VehicleType { get; set; }
|
||||
public string Name { get; set; } // 성명 혹은 법인명
|
||||
public string PersonalNumber { get; set; } // 생년월일 및 법인등록변호
|
||||
public string Phone { get; set; }
|
||||
public string Address { get; set; }
|
||||
public DateTime DateOfApplication { get; set; }
|
||||
public bool Inspection { get; set; }
|
||||
}
|
||||
|
||||
public struct ResultApplicantInsertInformation
|
||||
{
|
||||
public bool Result { get; set; }
|
||||
public string No { get; set; }
|
||||
public int WaitingOrder { get; set; }
|
||||
}
|
||||
public struct User
|
||||
{
|
||||
public int No;
|
||||
public string RegistrationNumberTruck { get; set; }
|
||||
public string RegistrationNumberPassenger { get; set; }
|
||||
public string CargoVehicleNumber { get; set; }
|
||||
public string CargoVehicleName { get; set; }
|
||||
public string PassengerVehicleNumber { get; set; }
|
||||
public string PassengerVehicleName { get; set; }
|
||||
public EVehicleType VehicleType { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string PersonalNumber { get; set; }
|
||||
public string Phone { get; set; }
|
||||
public string Address { get; set; }
|
||||
public DateTime DateOfApplicant { get; set; }
|
||||
@@ -31,14 +43,14 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
|
||||
public struct Extended
|
||||
{
|
||||
public string RegistrationNumberTruck { get; set; }
|
||||
public string CargoVehicleNumber { get; set; }
|
||||
public DateTime DateEnd { get; set; }
|
||||
}
|
||||
|
||||
public struct ProceedsData
|
||||
{
|
||||
public string RegistrationNumberTruck { get; set; }
|
||||
public string RegistrationNumberPassenger { get; set; }
|
||||
public string CargoVehicleNumber { get; set; }
|
||||
public string PassengerVehicleNumber { get; set; }
|
||||
public string Name { get; set; }
|
||||
public ProceedsType Type { get; set; }
|
||||
public int Amount { get; set; }
|
||||
@@ -64,8 +76,8 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
|
||||
public struct CertificateData
|
||||
{
|
||||
public string RegistrationNumberTruck { get; set; }
|
||||
public string RegistrationNumberPassenger { get; set; }
|
||||
public string CargoVehicleNumber { get; set; }
|
||||
public string PassengerVehicleNumber { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string IssueNumber { get; set; }
|
||||
public DateTime IssueDate { get; set; }
|
||||
@@ -73,18 +85,30 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
public DateTime EndDate { get; set; }
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// 인쇄용
|
||||
/// </summary>
|
||||
public struct PrintFilingReceiptInformation
|
||||
{
|
||||
public string No { get; set; }
|
||||
public DateTime DateReception { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string PersonalNumber { get; set; }
|
||||
public string Address { get; set; }
|
||||
public string CargoVehicleNumber { get; set; }
|
||||
public string PassengerVehicleNumber { get; set; }
|
||||
public int WaitingOrder { get; set; }
|
||||
}
|
||||
|
||||
public struct Settings
|
||||
{
|
||||
public int UsageFee { get; set; }
|
||||
public int ExtendedFee { get; set; }
|
||||
public int CertificateFee { get; set; }
|
||||
public int ReCertificateFee { get; set; }
|
||||
|
||||
// 현재 세팅값은 네임/밸류/Date 로 저장하게 되어있는데 이게 필요할까? 고정으로 바꾸는 방법이 더 좋지 않을까?
|
||||
// 이용금액 Usage Fee
|
||||
// 연장금액 Extended Fee
|
||||
// 증명서발급 비용 Certificate Fee
|
||||
// 재발급 비용 ReCertificate Fee
|
||||
public string GarageName { get; set; }
|
||||
public int CargoLargeMaxCount { get; set; }
|
||||
public int CargoOversizedMaxCount { get; set; }
|
||||
public int CargoLargeFee { get; set; }
|
||||
public int CargoOversizedFee { get; set; }
|
||||
public int CargoLargeCertificateFee { get; set; }
|
||||
public int CargoOversizedCertificateFee { get; set; }
|
||||
}
|
||||
|
||||
public enum ProceedsType
|
||||
@@ -92,7 +116,12 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
Fees,
|
||||
ExtensionFees,
|
||||
Certificate,
|
||||
ReCertificate,
|
||||
Refunds
|
||||
}
|
||||
|
||||
public enum EVehicleType
|
||||
{
|
||||
Large,
|
||||
Oversized
|
||||
}
|
||||
}
|
@@ -2,6 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Data.SQLite;
|
||||
using System.IO;
|
||||
using System.Windows.Controls;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
{
|
||||
@@ -28,35 +29,38 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
var createKeyTable = @"
|
||||
CREATE TABLE ""ApplicantList"" (
|
||||
""ApplicantType"" INTEGER NOT NULL,
|
||||
""No"" TEXT NOT NULL,
|
||||
""CargoVehicleNumber"" TEXT NOT NULL,
|
||||
""CargoVehicleName"" TEXT NOT NULL,
|
||||
""PassengerVehicleNumber"" TEXT NOT NULL,
|
||||
""PassengerVehicleName"" INTEGER NOT NULL,
|
||||
""PassengerVehicleName"" TEXT NOT NULL,
|
||||
""VehicleType"" INTEGER NOT NULL,
|
||||
""Name"" TEXT NOT NULL,
|
||||
""PersonalNumber"" TEXT NOT NULL,
|
||||
""Phone"" TEXT NOT NULL,
|
||||
""Address"" TEXT NOT NULL,
|
||||
""DateOfApplicant"" TEXT NOT NULL
|
||||
""DateOfApplicant"" TEXT NOT NULL,
|
||||
PRIMARY KEY(""No"")
|
||||
);
|
||||
|
||||
CREATE TABLE ""DeleteList"" (
|
||||
""ApplicantType"" INTEGER NOT NULL,
|
||||
""CargoVehicleNumber"" TEXT NOT NULL,
|
||||
""CargoVehicleName"" TEXT NOT NULL,
|
||||
""PassengerVehicleNumber"" TEXT NOT NULL,
|
||||
""PassengerVehicleName"" TEXT NOT NULL,
|
||||
""VehicleType"" INTEGER NOT NULL,
|
||||
""Name"" TEXT NOT NULL,
|
||||
""PersonalNumber"" TEXT NOT NULL,
|
||||
""Phone"" TEXT NOT NULL,
|
||||
""Address"" TEXT NOT NULL,
|
||||
""DateOfApplicant"" TEXT NOT NULL,
|
||||
""Inspection"" INTEGER NOT NULL,
|
||||
""DeleteDate"" TEXT NOT NULL,
|
||||
""DeleterName"" TEXT NOT NULL,
|
||||
""DeleteReason"" TEXT NOT NULL
|
||||
);
|
||||
CREATE TABLE ""DeleteList"" (
|
||||
""No"" TEXT NOT NULL,
|
||||
""ApplicantType"" INTEGER NOT NULL,
|
||||
""CargoVehicleNumber"" TEXT NOT NULL,
|
||||
""CargoVehicleName"" TEXT NOT NULL,
|
||||
""PassengerVehicleNumber"" TEXT NOT NULL,
|
||||
""PassengerVehicleName"" TEXT NOT NULL,
|
||||
""VehicleType"" INTEGER NOT NULL,
|
||||
""Name"" TEXT NOT NULL,
|
||||
""PersonalNumber"" TEXT NOT NULL,
|
||||
""Phone"" TEXT NOT NULL,
|
||||
""Address"" TEXT NOT NULL,
|
||||
""DateOfApplicant"" TEXT NOT NULL,
|
||||
""DeleteDate"" TEXT NOT NULL,
|
||||
""DeleterName"" TEXT NOT NULL,
|
||||
""DeleteReason"" TEXT NOT NULL,
|
||||
PRIMARY KEY(""No"")
|
||||
);
|
||||
|
||||
CREATE TABLE ""LedgerCertificate"" (
|
||||
""No"" INTEGER NOT NULL,
|
||||
@@ -64,6 +68,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
""IssueDate"" TEXT NOT NULL,
|
||||
""StartDate"" TEXT NOT NULL,
|
||||
""EndDate"" TEXT NOT NULL
|
||||
PRIMARY KEY(""No"")
|
||||
);
|
||||
|
||||
CREATE TABLE ""LedgerProceeds"" (
|
||||
@@ -130,13 +135,13 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
/// <summary>
|
||||
/// 신청자 리스트에서 화물차 번호로 중복자 조회
|
||||
/// </summary>
|
||||
/// <param name="RegistrationNumberTruck">화물차 번호</param>
|
||||
/// <param name="CargoVehicleNumber">화물차 번호</param>
|
||||
/// <returns></returns>
|
||||
public static bool ApplicantCheckAlready(string RegistrationNumberTruck)
|
||||
public static bool ApplicantCheckAlready(string CargoVehicleNumber)
|
||||
{
|
||||
var count = 0;
|
||||
var query = string.Format("SELECT COUNT(*) From ApplicantList Where RegistrationNumberTruck = '{0}';",
|
||||
RegistrationNumberTruck.Trim());
|
||||
var query = string.Format("SELECT COUNT(*) From ApplicantList Where CargoVehicleNumber = '{0}';",
|
||||
CargoVehicleNumber.Trim());
|
||||
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
@@ -152,11 +157,11 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
return count > 0;
|
||||
}
|
||||
|
||||
public static bool UserListCheckAlready(string RegistrationNumberTruck)
|
||||
public static bool UserListCheckAlready(string CargoVehicleNumber)
|
||||
{
|
||||
var count = 0;
|
||||
var query = "SELECT COUNT(*) From UserList WHERE DateEnd >= \"" + DateTime.Now +
|
||||
"\" And RegistrationNumberTruck = \"" + RegistrationNumberTruck + "\"";
|
||||
"\" And CargoVehicleNumber = \"" + CargoVehicleNumber + "\"";
|
||||
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
@@ -172,25 +177,57 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
return count > 0;
|
||||
}
|
||||
|
||||
public static bool ApplicantInsert(Applicant applicant)
|
||||
public static ResultApplicantInsertInformation SetApplicant(ApplicantInformation applicant)
|
||||
{
|
||||
var result = 0;
|
||||
|
||||
var query =
|
||||
$"INSERT INTO ApplicantList VALUES('{applicant.ApplicantType.BoolToInt()}','{applicant.RegistrationNumberTruck}','{applicant.RegistrationNumberPassenger}','{applicant.Name}','{applicant.Phone}','{applicant.Address}','{applicant.DateOfApplication.DateTimeDatabase()}','{applicant.Inspection.BoolToInt()}') ";
|
||||
string year = DateTime.Now.Year.ToString();
|
||||
string suffix = applicant.ApplicantType ? Global.SuffixApplicantLot : Global.SuffixApplicantWait;
|
||||
int lastNo = GetLastApplicant(year, suffix);
|
||||
lastNo++;
|
||||
string no = $"{year}-{suffix}{lastNo.ToString("D4")}";
|
||||
int waitOrder = 0;
|
||||
string query;
|
||||
if (!applicant.ApplicantType)
|
||||
{
|
||||
query = $"SELECT COUNT(*) From ApplicantList Where No Like '{year}-{suffix}%'";
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
command.CommandText = query;
|
||||
|
||||
using (var reader = command.ExecuteReader())
|
||||
{
|
||||
while (reader.Read())
|
||||
{
|
||||
string data = reader[0].ToString();
|
||||
|
||||
waitOrder = int.Parse(data);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
query =
|
||||
$"INSERT INTO ApplicantList VALUES('{applicant.ApplicantType.BoolToInt()}','{no}','{applicant.CargoVehicleNumber}','{applicant.CargoVehicleName}','{applicant.PassengerVehicleNumber}','{applicant.PassengerVehicleName}','{applicant.VehicleType}','{applicant.Name}','{applicant.PersonalNumber}','{applicant.Phone}','{applicant.Address}','{applicant.DateOfApplication.DateTimeDatabase()}') ";
|
||||
|
||||
int insertResult;
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
command.CommandText = query;
|
||||
result = command.ExecuteNonQuery();
|
||||
insertResult = command.ExecuteNonQuery();
|
||||
}
|
||||
if (insertResult > 0)
|
||||
{
|
||||
|
||||
return result > 0;
|
||||
return new ResultApplicantInsertInformation { Result = true, No = no, WaitingOrder = waitOrder };
|
||||
}
|
||||
else
|
||||
{
|
||||
return new ResultApplicantInsertInformation { Result = false };
|
||||
}
|
||||
}
|
||||
|
||||
public static List<Applicant> GetApplicant()
|
||||
public static List<ApplicantInformation> GetApplicant()
|
||||
{
|
||||
var applicants = new List<Applicant>();
|
||||
var applicants = new List<ApplicantInformation>();
|
||||
var query = "SELECT * From ApplicantList Where ApplicantType=1";
|
||||
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
@@ -201,15 +238,18 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
{
|
||||
while (reader.Read())
|
||||
{
|
||||
var applicant = new Applicant();
|
||||
var applicant = new ApplicantInformation();
|
||||
applicant.ApplicantType = reader["ApplicantType"].ToString() == "1";
|
||||
applicant.RegistrationNumberTruck = reader["RegistrationNumberTruck"].ToString();
|
||||
applicant.RegistrationNumberPassenger = reader["RegistrationNumberPassenger"].ToString();
|
||||
applicant.CargoVehicleNumber = reader["CargoVehicleNumber"].ToString();
|
||||
applicant.CargoVehicleName = reader["CargoVehicleName"].ToString();
|
||||
applicant.PassengerVehicleNumber = reader["PassengerVehicleNumber"].ToString();
|
||||
applicant.PassengerVehicleName = reader["PassengerVehicleName"].ToString();
|
||||
applicant.VehicleType = (EVehicleType)int.Parse(reader["VehicleType"].ToString());
|
||||
applicant.Name = reader["Name"].ToString();
|
||||
applicant.PersonalNumber = reader["PersonalNumber"].ToString();
|
||||
applicant.Phone = reader["Phone"].ToString();
|
||||
applicant.Address = reader["Address"].ToString();
|
||||
applicant.DateOfApplication = DateTime.Parse(reader["DateOfApplicant"].ToString());
|
||||
applicant.Inspection = reader["Inspection"].ToString() == "1";
|
||||
|
||||
applicants.Add(applicant);
|
||||
}
|
||||
@@ -219,9 +259,9 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
return applicants;
|
||||
}
|
||||
|
||||
public static List<Applicant> GetApplicantWiat()
|
||||
public static List<ApplicantInformation> GetApplicantWiat()
|
||||
{
|
||||
var applicants = new List<Applicant>();
|
||||
var applicants = new List<ApplicantInformation>();
|
||||
var query = "SELECT * From ApplicantList Where ApplicantType=0 Order By Inspection DESC, DateOfApplicant";
|
||||
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
@@ -232,15 +272,19 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
{
|
||||
while (reader.Read())
|
||||
{
|
||||
var applicant = new Applicant();
|
||||
var applicant = new ApplicantInformation();
|
||||
applicant.ApplicantType = reader["ApplicantType"].ToString() == "1";
|
||||
applicant.RegistrationNumberTruck = reader["RegistrationNumberTruck"].ToString();
|
||||
applicant.RegistrationNumberPassenger = reader["RegistrationNumberPassenger"].ToString();
|
||||
applicant.CargoVehicleNumber = reader["CargoVehicleNumber"].ToString();
|
||||
applicant.CargoVehicleName = reader["CargoVehicleName"].ToString();
|
||||
applicant.PassengerVehicleNumber = reader["PassengerVehicleNumber"].ToString();
|
||||
applicant.PassengerVehicleName = reader["PassengerVehicleName"].ToString();
|
||||
applicant.VehicleType = (EVehicleType)int.Parse(reader["VehicleType"].ToString());
|
||||
applicant.Name = reader["Name"].ToString();
|
||||
applicant.PersonalNumber = reader["PersonalNumber"].ToString();
|
||||
applicant.Phone = reader["Phone"].ToString();
|
||||
applicant.Address = reader["Address"].ToString();
|
||||
applicant.DateOfApplication = DateTime.Parse(reader["DateOfApplicant"].ToString());
|
||||
applicant.Inspection = reader["Inspection"].ToString() == "1";
|
||||
|
||||
|
||||
applicants.Add(applicant);
|
||||
}
|
||||
@@ -266,8 +310,8 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
var user = new User
|
||||
{
|
||||
No = int.Parse(reader["No"].ToString()),
|
||||
RegistrationNumberTruck = reader["RegistrationNumberTruck"].ToString(),
|
||||
RegistrationNumberPassenger = reader["RegistrationNumberPassenger"].ToString(),
|
||||
CargoVehicleNumber = reader["CargoVehicleNumber"].ToString(),
|
||||
PassengerVehicleNumber = reader["PassengerVehicleNumber"].ToString(),
|
||||
Name = reader["Name"].ToString(),
|
||||
Phone = reader["Phone"].ToString(),
|
||||
Address = reader["Address"].ToString(),
|
||||
@@ -286,28 +330,14 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
return userList;
|
||||
}
|
||||
|
||||
public static void ChangeInspection(List<string> RegistrationNumberTruck, bool result)
|
||||
{
|
||||
for (var i = 0; i < RegistrationNumberTruck.Count; i++)
|
||||
{
|
||||
var query = "UPDATE ApplicantList SET Inspection=" + result.BoolToInt() + ", DateOfApplicant=\"" +
|
||||
DateTime.Now.DateTimeDatabase() + "\" Where RegistrationNumberTruck=\"" + RegistrationNumberTruck[i] + "\"";
|
||||
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
command.CommandText = query;
|
||||
command.ExecuteNonQuery();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static void UpdateExtended(List<Extended> extendeds)
|
||||
{
|
||||
for (var i = 0; i < extendeds.Count; i++)
|
||||
{
|
||||
var query = "UPDATE UserList Set DateEnd=\"" + extendeds[i].DateEnd.AddYears(1).EndDateTime() + "\" Extended=\"" +
|
||||
true.BoolToInt() + "\" Where RegistrationNumberTruck=\"" +
|
||||
extendeds[i].RegistrationNumberTruck + "\"";
|
||||
true.BoolToInt() + "\" Where CargoVehicleNumber=\"" +
|
||||
extendeds[i].CargoVehicleNumber + "\"";
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
command.CommandText = query;
|
||||
@@ -316,13 +346,13 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
}
|
||||
}
|
||||
|
||||
public static List<Applicant> GetApplicantList(List<string> RegistrationNumberTruck)
|
||||
public static List<ApplicantInformation> GetApplicantList(List<string> CargoVehicleNumber)
|
||||
{
|
||||
var applicants = new List<Applicant>();
|
||||
var applicants = new List<ApplicantInformation>();
|
||||
|
||||
for (var i = 0; i < RegistrationNumberTruck.Count; i++)
|
||||
for (var i = 0; i < CargoVehicleNumber.Count; i++)
|
||||
{
|
||||
var query = $"SELECT * From ApplicantList Where RegistrationNumberTruck='{RegistrationNumberTruck[i]}'";
|
||||
var query = $"SELECT * From ApplicantList Where CargoVehicleNumber='{CargoVehicleNumber[i]}'";
|
||||
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
@@ -332,15 +362,15 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
{
|
||||
while (reader.Read())
|
||||
{
|
||||
var applicant = new Applicant();
|
||||
var applicant = new ApplicantInformation();
|
||||
applicant.ApplicantType = reader["ApplicantType"].ToString() == "1";
|
||||
applicant.RegistrationNumberTruck = reader["RegistrationNumberTruck"].ToString();
|
||||
applicant.RegistrationNumberPassenger = reader["RegistrationNumberPassenger"].ToString();
|
||||
applicant.CargoVehicleNumber = reader["CargoVehicleNumber"].ToString();
|
||||
applicant.PassengerVehicleNumber = reader["PassengerVehicleNumber"].ToString();
|
||||
applicant.Name = reader["Name"].ToString();
|
||||
applicant.Phone = reader["Phone"].ToString();
|
||||
applicant.Address = reader["Address"].ToString();
|
||||
applicant.DateOfApplication = DateTime.Parse(reader["DateOfApplicant"].ToString());
|
||||
applicant.Inspection = reader["Inspection"].ToString() == "1";
|
||||
|
||||
applicants.Add(applicant);
|
||||
}
|
||||
}
|
||||
@@ -350,15 +380,15 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
return applicants;
|
||||
}
|
||||
|
||||
public static void AddUserList(List<string> registrationNumberTruck, DateTime start, DateTime end,
|
||||
public static void AddUserList(List<string> CargoVehicleNumber, DateTime start, DateTime end,
|
||||
int totalCost)
|
||||
{
|
||||
var applicants = GetApplicantList(registrationNumberTruck);
|
||||
var applicants = GetApplicantList(CargoVehicleNumber);
|
||||
|
||||
for (var i = 0; i < applicants.Count; i++)
|
||||
{
|
||||
var query =
|
||||
$"INSERT INTO UserList (RegistrationNumberTruck,RegistrationNumberPassenger,Name,Phone,Address,DateOfApplicant,DateStart,DateEnd,Extended,RefundCheck) VALUES('{applicants[i].RegistrationNumberTruck}','{applicants[i].RegistrationNumberPassenger}','{applicants[i].Name}','{applicants[i].Phone}','{applicants[i].Address}','{applicants[i].DateOfApplication.DateTimeDatabase()}','{start.StartDateTime()}','{end.EndDateTime()}','0','0') ";
|
||||
$"INSERT INTO UserList (CargoVehicleNumber,PassengerVehicleNumber,Name,Phone,Address,DateOfApplicant,DateStart,DateEnd,Extended,RefundCheck) VALUES('{applicants[i].CargoVehicleNumber}','{applicants[i].PassengerVehicleNumber}','{applicants[i].Name}','{applicants[i].Phone}','{applicants[i].Address}','{applicants[i].DateOfApplication.DateTimeDatabase()}','{start.StartDateTime()}','{end.EndDateTime()}','0','0') ";
|
||||
using (var insertCommand = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
insertCommand.CommandText = query;
|
||||
@@ -375,7 +405,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
}
|
||||
|
||||
query =
|
||||
$"DELETE FROM ApplicantList Where RegistrationNumberTruck=\"{applicants[i].RegistrationNumberTruck}\"";
|
||||
$"DELETE FROM ApplicantList Where CargoVehicleNumber=\"{applicants[i].CargoVehicleNumber}\"";
|
||||
|
||||
using (var deleteCommand = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
@@ -385,14 +415,14 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
}
|
||||
}
|
||||
|
||||
public static void DeleteInspection(List<string> RegistrationNumberTruck, string DeleterName, string Reason)
|
||||
public static void DeleteInspection(List<string> CargoVehicleNumber, string DeleterName, string Reason)
|
||||
{
|
||||
var applicants = GetApplicantList(RegistrationNumberTruck);
|
||||
var applicants = GetApplicantList(CargoVehicleNumber);
|
||||
|
||||
for (var i = 0; i < applicants.Count; i++)
|
||||
{
|
||||
var query =
|
||||
$"INSERT INTO DeleteList VALUES('{applicants[i].ApplicantType.BoolToInt()}','{applicants[i].RegistrationNumberTruck}','{applicants[i].RegistrationNumberPassenger}','{applicants[i].Name}','{applicants[i].Phone}','{applicants[i].Address}','{applicants[i].DateOfApplication.DateTimeDatabase()}','{applicants[i].Inspection.BoolToInt()}','{DateTime.Now.DateTimeDatabase()}','{DeleterName}','{Reason}') ";
|
||||
$"INSERT INTO DeleteList VALUES(''{applicants[i].ApplicantType.BoolToInt()}','{applicants[i].CargoVehicleNumber}','{applicants[i].CargoVehicleName}','{applicants[i].PassengerVehicleNumber}','{applicants[i].PassengerVehicleName}','{applicants[i].VehicleType}','{applicants[i].Name}','{applicants[i].PersonalNumber}','{applicants[i].Phone}','{applicants[i].Address}','{applicants[i].DateOfApplication.DateTimeDatabase()}','{DateTime.Now.DateTimeDatabase()}','{DeleterName}','{Reason}') ";
|
||||
|
||||
using (var insertCommand = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
@@ -401,7 +431,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
}
|
||||
|
||||
query =
|
||||
$"DELETE FROM ApplicantList Where RegistrationNumberTruck=\"{applicants[i].RegistrationNumberTruck}\"";
|
||||
$"DELETE FROM ApplicantList Where CargoVehicleNumber=\"{applicants[i].CargoVehicleNumber}\"";
|
||||
|
||||
using (var deleteCommand = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
@@ -416,7 +446,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
var proceedsDatas = new List<ProceedsData>();
|
||||
|
||||
var query =
|
||||
$"SELECT UserList.RegistrationNumberTruck, UserList.RegistrationNumberPassenger, UserList.Name, LedgerProceeds.Type, LedgerProceeds.Amount, LedgerProceeds.Date From LedgerProceeds INNER JOIN UserList ON LedgerProceeds.No = UserList.No Where LedgerProceeds.Date >='{startDateTime.StartDateTime()}' And LedgerProceeds.Date <='{endDateTime.EndDateTime()}'";
|
||||
$"SELECT UserList.CargoVehicleNumber, UserList.PassengerVehicleNumber, UserList.Name, LedgerProceeds.Type, LedgerProceeds.Amount, LedgerProceeds.Date From LedgerProceeds INNER JOIN UserList ON LedgerProceeds.No = UserList.No Where LedgerProceeds.Date >='{startDateTime.StartDateTime()}' And LedgerProceeds.Date <='{endDateTime.EndDateTime()}'";
|
||||
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
@@ -427,8 +457,8 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
while (reader.Read())
|
||||
{
|
||||
var proceedsData = new ProceedsData();
|
||||
proceedsData.RegistrationNumberTruck = reader["RegistrationNumberTruck"].ToString();
|
||||
proceedsData.RegistrationNumberPassenger = reader["RegistrationNumberPassenger"].ToString();
|
||||
proceedsData.CargoVehicleNumber = reader["CargoVehicleNumber"].ToString();
|
||||
proceedsData.PassengerVehicleNumber = reader["PassengerVehicleNumber"].ToString();
|
||||
proceedsData.Name = reader["Name"].ToString();
|
||||
proceedsData.Amount = int.Parse(reader["Amount"].ToString());
|
||||
proceedsData.Date = DateTime.Parse(reader["Date"].ToString());
|
||||
@@ -445,7 +475,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
{
|
||||
var certificateDatas = new List<CertificateData>();
|
||||
var query =
|
||||
$"SELECT UserList.RegistrationNumberTruck, UserList.RegistrationNumberPassenger, UserList.Name, LedgerCertificate.IssueNumber, LedgerCertificate.IssueDate, LedgerCertificate.StartDate, LedgerCertificate.EndDate From LedgerCertificate INNER JOIN UserList ON LedgerCertificate.No = UserList.No Where LedgerCertificate.IssueDate >='{startDateTime.StartDateTime()}' And LedgerCertificate.IssueDate <='{endDateTime.EndDateTime()}'";
|
||||
$"SELECT UserList.CargoVehicleNumber, UserList.PassengerVehicleNumber, UserList.Name, LedgerCertificate.IssueNumber, LedgerCertificate.IssueDate, LedgerCertificate.StartDate, LedgerCertificate.EndDate From LedgerCertificate INNER JOIN UserList ON LedgerCertificate.No = UserList.No Where LedgerCertificate.IssueDate >='{startDateTime.StartDateTime()}' And LedgerCertificate.IssueDate <='{endDateTime.EndDateTime()}'";
|
||||
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
@@ -456,8 +486,8 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
while (reader.Read())
|
||||
{
|
||||
var certificateData = new CertificateData();
|
||||
certificateData.RegistrationNumberTruck = reader["RegistrationNumberTruck"].ToString();
|
||||
certificateData.RegistrationNumberPassenger = reader["RegistrationNumberPassenger"].ToString();
|
||||
certificateData.CargoVehicleNumber = reader["CargoVehicleNumber"].ToString();
|
||||
certificateData.PassengerVehicleNumber = reader["PassengerVehicleNumber"].ToString();
|
||||
certificateData.Name = reader["Name"].ToString();
|
||||
certificateData.IssueNumber = reader["IssueNumber"].ToString();
|
||||
certificateData.IssueDate = DateTime.Parse(reader["IssueDate"].ToString());
|
||||
@@ -474,7 +504,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
public static CertificateData GetCertificate(string issueNumber)
|
||||
{
|
||||
var certificateData = new CertificateData();
|
||||
var query = $"SELECT UserList.RegistrationNumberTruck, UserList.RegistrationNumberPassenger, UserList.Name, LedgerCertificate.IssueNumber, LedgerCertificate.IssueDate, LedgerCertificate.StartDate, LedgerCertificate.EndDate From LedgerCertificate INNER JOIN UserList ON LedgerCertificate.No = UserList.No Where IssueNumber='{issueNumber}'";
|
||||
var query = $"SELECT UserList.CargoVehicleNumber, UserList.PassengerVehicleNumber, UserList.Name, LedgerCertificate.IssueNumber, LedgerCertificate.IssueDate, LedgerCertificate.StartDate, LedgerCertificate.EndDate From LedgerCertificate INNER JOIN UserList ON LedgerCertificate.No = UserList.No Where IssueNumber='{issueNumber}'";
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
command.CommandText = query;
|
||||
@@ -483,8 +513,8 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
{
|
||||
while (reader.Read())
|
||||
{
|
||||
certificateData.RegistrationNumberTruck = reader["RegistrationNumberTruck"].ToString();
|
||||
certificateData.RegistrationNumberPassenger = reader["RegistrationNumberPassenger"].ToString();
|
||||
certificateData.CargoVehicleNumber = reader["CargoVehicleNumber"].ToString();
|
||||
certificateData.PassengerVehicleNumber = reader["PassengerVehicleNumber"].ToString();
|
||||
certificateData.Name = reader["Name"].ToString();
|
||||
certificateData.IssueNumber = reader["IssueNumber"].ToString();
|
||||
certificateData.IssueDate = DateTime.Parse(reader["IssueDate"].ToString());
|
||||
@@ -497,6 +527,26 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
return certificateData;
|
||||
|
||||
}
|
||||
public static int GetLastApplicant(string year, string suffix)
|
||||
{
|
||||
var query = $"SELECT No From ApplicantList Where No Like '{year}-{suffix}%' Order By No DESC LIMIT 1";
|
||||
int lastNo = 0;
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
command.CommandText = query;
|
||||
|
||||
using (var reader = command.ExecuteReader())
|
||||
{
|
||||
while (reader.Read())
|
||||
{
|
||||
var no = reader[0].ToString();
|
||||
no = no.Substring(7, no.Length - 7);
|
||||
lastNo = int.Parse(no);
|
||||
}
|
||||
}
|
||||
}
|
||||
return lastNo;
|
||||
}
|
||||
public static int GetLastCertificate(int year)
|
||||
{
|
||||
var certificateDatas = new List<CertificateData>();
|
||||
@@ -548,6 +598,7 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
public static Settings LoadSettings()
|
||||
{
|
||||
var settings = new Settings();
|
||||
settings.GarageName = string.Empty; // Null 방지;
|
||||
var query =
|
||||
"SELECT * FROM(SELECT * From Settings Where (SettingName, SettingDate) in (Select SettingName, MAX(SettingDate) as SettingDate From Settings Group by SettingName) Order by SettingDate desc) t Group By t.SettingName";
|
||||
using (var command = _sqLiteConnection.CreateCommand())
|
||||
@@ -562,27 +613,41 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
var value = reader["SettingValue"].ToString();
|
||||
var date = reader["SettingDate"].ToString();
|
||||
int intValue;
|
||||
|
||||
switch (name)
|
||||
{
|
||||
case "UsageFee":
|
||||
case "GarageName":
|
||||
settings.GarageName = value;
|
||||
break;
|
||||
case "CargoLargeMaxCount":
|
||||
int.TryParse(value, out intValue);
|
||||
settings.UsageFee = intValue;
|
||||
settings.CargoLargeMaxCount = intValue;
|
||||
break;
|
||||
|
||||
case "ExtendedFee":
|
||||
|
||||
case "CargoOversizedMaxCount":
|
||||
int.TryParse(value, out intValue);
|
||||
settings.ExtendedFee = intValue;
|
||||
settings.CargoOversizedMaxCount = intValue;
|
||||
break;
|
||||
|
||||
case "CertificateFee":
|
||||
case "CargoLargeFee":
|
||||
int.TryParse(value, out intValue);
|
||||
settings.CertificateFee = intValue;
|
||||
settings.CargoLargeFee = intValue;
|
||||
break;
|
||||
|
||||
case "ReCertificateFee":
|
||||
case "CargoOversizedFee":
|
||||
|
||||
int.TryParse(value, out intValue);
|
||||
settings.ReCertificateFee = intValue;
|
||||
settings.CargoOversizedFee = intValue;
|
||||
break;
|
||||
|
||||
case "CargoLargeCertificateFee":
|
||||
int.TryParse(value, out intValue);
|
||||
settings.CargoLargeCertificateFee = intValue;
|
||||
break;
|
||||
|
||||
case "CargoOversizedCertificateFee":
|
||||
int.TryParse(value, out intValue);
|
||||
settings.CargoOversizedCertificateFee = intValue;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -596,10 +661,10 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
{
|
||||
var originalSettings = LoadSettings();
|
||||
|
||||
if (settings.UsageFee != originalSettings.UsageFee)
|
||||
if (settings.GarageName != originalSettings.GarageName)
|
||||
{
|
||||
var query =
|
||||
$"INSERT INTO Settings VALUES('UsageFee','{settings.UsageFee}','{DateTime.Now.ToString()}') ";
|
||||
$"INSERT INTO Settings VALUES('GarageName','{settings.GarageName}','{DateTime.Now.ToString()}') ";
|
||||
using (var insertCommand = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
insertCommand.CommandText = query;
|
||||
@@ -607,10 +672,10 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
}
|
||||
}
|
||||
|
||||
if (settings.ExtendedFee != originalSettings.ExtendedFee)
|
||||
if (settings.CargoLargeMaxCount != originalSettings.CargoLargeMaxCount)
|
||||
{
|
||||
var query =
|
||||
$"INSERT INTO Settings VALUES('ExtendedFee','{settings.ExtendedFee}','{DateTime.Now.ToString()}') ";
|
||||
$"INSERT INTO Settings VALUES('CargoLargeMaxCount','{settings.CargoLargeMaxCount}','{DateTime.Now.ToString()}') ";
|
||||
using (var insertCommand = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
insertCommand.CommandText = query;
|
||||
@@ -618,10 +683,30 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
}
|
||||
}
|
||||
|
||||
if (settings.CertificateFee != originalSettings.CertificateFee)
|
||||
if (settings.CargoOversizedMaxCount != originalSettings.CargoOversizedMaxCount)
|
||||
{
|
||||
var query =
|
||||
$"INSERT INTO Settings VALUES('CertificateFee','{settings.CertificateFee}','{DateTime.Now.ToString()}') ";
|
||||
$"INSERT INTO Settings VALUES('CargoOversizedMaxCount','{settings.CargoOversizedMaxCount}','{DateTime.Now.ToString()}') ";
|
||||
using (var insertCommand = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
insertCommand.CommandText = query;
|
||||
insertCommand.ExecuteNonQuery();
|
||||
}
|
||||
}
|
||||
if (settings.CargoLargeFee != originalSettings.CargoLargeFee)
|
||||
{
|
||||
var query =
|
||||
$"INSERT INTO Settings VALUES('CargoLargeFee','{settings.CargoLargeFee}','{DateTime.Now.ToString()}') ";
|
||||
using (var insertCommand = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
insertCommand.CommandText = query;
|
||||
insertCommand.ExecuteNonQuery();
|
||||
}
|
||||
}
|
||||
if (settings.CargoOversizedFee != originalSettings.CargoOversizedFee)
|
||||
{
|
||||
var query =
|
||||
$"INSERT INTO Settings VALUES('CargoOversizedFee','{settings.CargoOversizedFee}','{DateTime.Now.ToString()}') ";
|
||||
using (var insertCommand = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
insertCommand.CommandText = query;
|
||||
@@ -629,10 +714,21 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
}
|
||||
}
|
||||
|
||||
if (settings.ReCertificateFee != originalSettings.ReCertificateFee)
|
||||
if (settings.CargoLargeCertificateFee != originalSettings.CargoLargeCertificateFee)
|
||||
{
|
||||
var query =
|
||||
$"INSERT INTO Settings VALUES('ReCertificateFee','{settings.ReCertificateFee}','{DateTime.Now.ToString()}') ";
|
||||
$"INSERT INTO Settings VALUES('CargoLargeCertificateFee','{settings.CargoLargeCertificateFee}','{DateTime.Now.ToString()}') ";
|
||||
using (var insertCommand = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
insertCommand.CommandText = query;
|
||||
insertCommand.ExecuteNonQuery();
|
||||
}
|
||||
}
|
||||
|
||||
if (settings.CargoOversizedCertificateFee != originalSettings.CargoOversizedCertificateFee)
|
||||
{
|
||||
var query =
|
||||
$"INSERT INTO Settings VALUES('CargoOversizedCertificateFee','{settings.CargoOversizedCertificateFee}','{DateTime.Now.ToString()}') ";
|
||||
using (var insertCommand = _sqLiteConnection.CreateCommand())
|
||||
{
|
||||
insertCommand.CommandText = query;
|
||||
|
@@ -9,6 +9,11 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
public static class Global
|
||||
{
|
||||
public static Settings GlobalSettings { get; set; }
|
||||
public static readonly string AreaLarge = "13m × 3.25m";
|
||||
public static readonly string AreaOversized = "17m × 3.5m";
|
||||
|
||||
public static readonly string SuffixApplicantLot = "FL";
|
||||
public static readonly string SuffixApplicantWait = "FW";
|
||||
public static readonly string SuffixCertificate = "C";
|
||||
}
|
||||
}
|
||||
|
@@ -104,12 +104,6 @@
|
||||
<Compile Include="CustomForm\WaitingCount.Designer.cs">
|
||||
<DependentUpon>WaitingCount.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="CustomUserControl\AboutBox1.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="CustomUserControl\AboutBox1.Designer.cs">
|
||||
<DependentUpon>AboutBox1.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="CustomUserControl\ApplicantControl.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
@@ -163,6 +157,7 @@
|
||||
<Compile Include="Master.Designer.cs">
|
||||
<DependentUpon>Master.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="PrintFilingReceipt.cs" />
|
||||
<Compile Include="PrintCertificate.cs" />
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
@@ -175,9 +170,6 @@
|
||||
<EmbeddedResource Include="CustomForm\WaitingCount.resx">
|
||||
<DependentUpon>WaitingCount.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="CustomUserControl\AboutBox1.resx">
|
||||
<DependentUpon>AboutBox1.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="CustomUserControl\ApplicantControl.resx">
|
||||
<DependentUpon>ApplicantControl.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
|
@@ -1,4 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
{
|
||||
@@ -17,7 +19,6 @@ namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
Global.GlobalSettings = Database.LoadSettings();
|
||||
settings1.SettingReset();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@@ -2,66 +2,59 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
using System.Drawing.Printing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Office.Interop.Excel;
|
||||
using Font = System.Drawing.Font;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
{
|
||||
|
||||
|
||||
internal class PrintCertificate
|
||||
{
|
||||
private List<CertificateData> _certificateDatas;
|
||||
private int _count;
|
||||
public PrintDocument printDocument;
|
||||
public PrintCertificate(List<CertificateData> certificateDatas)
|
||||
{
|
||||
_certificateDatas = certificateDatas;
|
||||
_count = 0;
|
||||
printDocument = new PrintDocument();
|
||||
printDocument.DocumentName = "차고지 이용 증명서";
|
||||
printDocument.PrintPage += PrintPage;
|
||||
printDocument.DefaultPageSettings.Margins.Top = Convert.ToInt32(50); printDocument.DefaultPageSettings.Margins.Left = Convert.ToInt32(50);
|
||||
printDocument.DefaultPageSettings.Margins.Left = Convert.ToInt32(30);
|
||||
printDocument.DefaultPageSettings.Margins.Right = Convert.ToInt32(30);
|
||||
|
||||
}
|
||||
public void PrintPage(object sender, PrintPageEventArgs e)
|
||||
{
|
||||
|
||||
e.Graphics.DrawRectangle(new Pen(Brushes.Black, 3), e.MarginBounds.Top, e.MarginBounds.Left, e.MarginBounds.Width, e.MarginBounds.Height);
|
||||
|
||||
string text = "화물차고지 사용신고확인서";
|
||||
Font font = new Font("맑은 고딕", 30, FontStyle.Bold);
|
||||
|
||||
e.Graphics.DrawRectangle(new Pen(Brushes.Black, 3), e.MarginBounds.Left, e.MarginBounds.Top,
|
||||
e.MarginBounds.Width, e.MarginBounds.Height);
|
||||
int totalWidth = (int)e.PageBounds.Width;
|
||||
int totalHeight = (int)e.PageBounds.Height;
|
||||
|
||||
CenterTextWriter($"화물자동차 공영차고지 이용 증명서", new Font("맑은 고딕", 30, FontStyle.Bold), e.Graphics, totalWidth, e.MarginBounds.Top + 100);
|
||||
|
||||
e.Graphics.DrawString($"제 {_certificateDatas[_count].IssueNumber}호", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 10, e.MarginBounds.Top + 10);
|
||||
|
||||
SizeF textSize = e.Graphics.MeasureString(text, font);
|
||||
float textX = (totalWidth - textSize.Width) / 2;
|
||||
e.Graphics.DrawString($"■ 성 명 : {_certificateDatas[_count].Name}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 250);
|
||||
e.Graphics.DrawString($"■ 생년월일 : {string.Empty}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 300);
|
||||
e.Graphics.DrawString($"■ 주 소 : {string.Empty}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 350);
|
||||
e.Graphics.DrawString($"■ 차량번호 : {_certificateDatas[_count].CargoVehicleNumber}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 400);
|
||||
e.Graphics.DrawString($"■ 이용요금 : {string.Empty}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 450);
|
||||
e.Graphics.DrawString($"■ 이용면적 : {string.Empty}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 500);
|
||||
e.Graphics.DrawString($"■ 이용기한 : {_certificateDatas[_count].StartDate.ToString("yyyy-MM-dd")} ~ {_certificateDatas[_count].EndDate.ToString("yyyy-MM-dd")}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 550);
|
||||
e.Graphics.DrawString($"■ 차 고 지 : {string.Empty}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 600);
|
||||
|
||||
e.Graphics.DrawString(text, font, Brushes.Black, textX, e.MarginBounds.Top + 150);
|
||||
|
||||
e.Graphics.DrawString($"사용자 성명 : {_certificateDatas[_count].Name}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 300);
|
||||
e.Graphics.DrawString($"주소 : {_certificateDatas[_count].Name}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 350);
|
||||
e.Graphics.DrawString($"차량번호(화물) : {_certificateDatas[_count].RegistrationNumberTruck}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 400);
|
||||
e.Graphics.DrawString($"차량번호(승용) : {_certificateDatas[_count].RegistrationNumberPassenger}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 450);
|
||||
e.Graphics.DrawString($"사용기한 : {_certificateDatas[_count].StartDate.ToString("yyyy-MM-dd")} ~ {_certificateDatas[_count].EndDate.ToString("yyyy-MM-dd")}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 500);
|
||||
|
||||
e.Graphics.DrawString("상기 차량은 위 사용기한에 차고지 사용을 승인합니다.", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 600);
|
||||
|
||||
text = $"{_certificateDatas[_count].IssueDate.ToString("yyyy년 MM월 dd일")}";
|
||||
font = new Font("맑은 고딕", 15);
|
||||
textSize = e.Graphics.MeasureString(text, font);
|
||||
textX = (totalWidth - textSize.Width) / 2;
|
||||
e.Graphics.DrawString(text, font, Brushes.Black, textX, e.MarginBounds.Top + 700);
|
||||
|
||||
text = "화성도시공사 화물차주차장 담당자";
|
||||
font = new Font("맑은 고딕", 20);
|
||||
textSize = e.Graphics.MeasureString(text, font);
|
||||
textX = (totalWidth - textSize.Width) / 2;
|
||||
e.Graphics.DrawString(text, font, Brushes.Black, textX, e.MarginBounds.Top + 800);
|
||||
CenterTextWriter($"위 차량에 대하여 {string.Empty} 화물자동차 공영차고지 이용을 증명합니다.", new Font("맑은 고딕", 12, FontStyle.Bold), e.Graphics, totalWidth, e.MarginBounds.Top + 700);
|
||||
CenterTextWriter($"{_certificateDatas[_count].IssueDate.ToString("yyyy년 MM월 dd일")}", new Font("맑은 고딕", 15), e.Graphics, totalWidth, e.MarginBounds.Top + 800);
|
||||
CenterTextWriter("화성도시공사 사장", new Font("맑은 고딕", 20, FontStyle.Bold), e.Graphics, totalWidth, e.MarginBounds.Top + 900);
|
||||
_count++;
|
||||
e.HasMorePages = _certificateDatas.Count > _count;
|
||||
|
||||
}
|
||||
|
||||
private void CenterTextWriter(string text, Font font, Graphics g, int totalWidth, int posY)
|
||||
{
|
||||
SizeF textSize = g.MeasureString(text, font);
|
||||
float textPosX = (totalWidth - textSize.Width) / 2;
|
||||
g.DrawString(text, font, Brushes.Black, textPosX, posY);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
79
HSUCO_Cargo_Garage_Operation_Program/PrintFilingReceipt.cs
Normal file
79
HSUCO_Cargo_Garage_Operation_Program/PrintFilingReceipt.cs
Normal file
@@ -0,0 +1,79 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
using System.Drawing.Printing;
|
||||
using Font = System.Drawing.Font;
|
||||
|
||||
namespace HSUCO_Cargo_Garage_Operation_Program
|
||||
{
|
||||
|
||||
|
||||
internal class PrintFilingReceipt
|
||||
{
|
||||
private List<PrintFilingReceiptInformation> _printFilingReceiptInformation;
|
||||
private int _count;
|
||||
public PrintDocument printDocument;
|
||||
public PrintFilingReceipt(List<PrintFilingReceiptInformation> printFilingReceiptInformation)
|
||||
{
|
||||
_printFilingReceiptInformation = printFilingReceiptInformation;
|
||||
_count = 0;
|
||||
printDocument = new PrintDocument();
|
||||
printDocument.DocumentName = "접수증";
|
||||
printDocument.PrintPage += PrintPage;
|
||||
printDocument.DefaultPageSettings.Margins.Top = Convert.ToInt32(50); printDocument.DefaultPageSettings.Margins.Left = Convert.ToInt32(50);
|
||||
printDocument.DefaultPageSettings.Margins.Left = Convert.ToInt32(30);
|
||||
printDocument.DefaultPageSettings.Margins.Right = Convert.ToInt32(30);
|
||||
|
||||
}
|
||||
public void PrintPage(object sender, PrintPageEventArgs e)
|
||||
{
|
||||
e.Graphics.DrawRectangle(new Pen(Brushes.Black, 3), e.MarginBounds.Left, e.MarginBounds.Top,
|
||||
e.MarginBounds.Width, e.MarginBounds.Height);
|
||||
|
||||
e.Graphics.DrawLine(new Pen(Brushes.Black, 1), new Point(e.MarginBounds.Left, e.MarginBounds.Top + 290), new Point(e.MarginBounds.Right, e.MarginBounds.Top + 290));
|
||||
e.Graphics.DrawLine(new Pen(Brushes.Black, 1), new Point(e.MarginBounds.Left, e.MarginBounds.Top + 340), new Point(e.MarginBounds.Right, e.MarginBounds.Top + 340));
|
||||
e.Graphics.DrawLine(new Pen(Brushes.Black, 1), new Point(e.MarginBounds.Left, e.MarginBounds.Top + 390), new Point(e.MarginBounds.Right, e.MarginBounds.Top + 390));
|
||||
e.Graphics.DrawLine(new Pen(Brushes.Black, 1), new Point(e.MarginBounds.Left, e.MarginBounds.Top + 440), new Point(e.MarginBounds.Right, e.MarginBounds.Top + 440));
|
||||
e.Graphics.DrawLine(new Pen(Brushes.Black, 1), new Point(e.MarginBounds.Left, e.MarginBounds.Top + 490), new Point(e.MarginBounds.Right, e.MarginBounds.Top + 490));
|
||||
e.Graphics.DrawLine(new Pen(Brushes.Black, 1), new Point(e.MarginBounds.Left, e.MarginBounds.Top + 540), new Point(e.MarginBounds.Right, e.MarginBounds.Top + 540));
|
||||
|
||||
e.Graphics.DrawLine(new Pen(Brushes.Black, 1), new Point(e.MarginBounds.Left+280, e.MarginBounds.Top + 290), new Point(e.MarginBounds.Left + 280, e.MarginBounds.Top + 540));
|
||||
e.Graphics.DrawLine(new Pen(Brushes.Black, 1), new Point(e.MarginBounds.Left + 520, e.MarginBounds.Top + 440), new Point(e.MarginBounds.Left + 520, e.MarginBounds.Top + 490));
|
||||
|
||||
|
||||
int totalWidth = (int)e.PageBounds.Width;
|
||||
int totalHeight = (int)e.PageBounds.Height;
|
||||
|
||||
CenterTextWriter($"접 수 증", new Font("맑은 고딕", 30, FontStyle.Bold), e.Graphics, totalWidth, e.MarginBounds.Top + 100);
|
||||
|
||||
|
||||
e.Graphics.DrawString($"제 {_printFilingReceiptInformation[_count].No}호", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 100, e.MarginBounds.Top + 250);
|
||||
e.Graphics.DrawString($"접수일 : {_printFilingReceiptInformation[_count].DateReception.ToString("yyyy-MM-dd")}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 500, e.MarginBounds.Top + 250);
|
||||
|
||||
e.Graphics.DrawString($"① 신청인", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 300);
|
||||
e.Graphics.DrawString($"{_printFilingReceiptInformation[_count].Name}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 300, e.MarginBounds.Top + 300);
|
||||
e.Graphics.DrawString($"② 생년월일(법인등록번호)", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 350);
|
||||
e.Graphics.DrawString($"{_printFilingReceiptInformation[_count].PersonalNumber}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 300, e.MarginBounds.Top + 350);
|
||||
e.Graphics.DrawString($"③ 주소", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 400);
|
||||
e.Graphics.DrawString($"{_printFilingReceiptInformation[_count].Address}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 300, e.MarginBounds.Top + 400);
|
||||
e.Graphics.DrawString($"④ 차량번호", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 450);
|
||||
e.Graphics.DrawString($"화물차량", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 289, e.MarginBounds.Top + 440);
|
||||
e.Graphics.DrawString($"{_printFilingReceiptInformation[_count].CargoVehicleNumber}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 310, e.MarginBounds.Top + 460);
|
||||
e.Graphics.DrawString($"일반차량", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 528, e.MarginBounds.Top + 440);
|
||||
e.Graphics.DrawString($"{_printFilingReceiptInformation[_count].PassengerVehicleNumber}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 550, e.MarginBounds.Top + 460);
|
||||
e.Graphics.DrawString($"⑤ 대기순번", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 50, e.MarginBounds.Top + 500);
|
||||
e.Graphics.DrawString($"{_printFilingReceiptInformation[_count].WaitingOrder}", new Font("맑은 고딕", 12), Brushes.Black, e.MarginBounds.Left + 300, e.MarginBounds.Top + 500);
|
||||
CenterTextWriter("화성도시공사 사장", new Font("맑은 고딕", 20, FontStyle.Bold), e.Graphics, totalWidth, e.MarginBounds.Top + 800);
|
||||
_count++;
|
||||
e.HasMorePages = _printFilingReceiptInformation.Count > _count;
|
||||
}
|
||||
|
||||
private void CenterTextWriter(string text, Font font, Graphics g, int totalWidth, int posY)
|
||||
{
|
||||
SizeF textSize = g.MeasureString(text, font);
|
||||
float textPosX = (totalWidth - textSize.Width) / 2;
|
||||
g.DrawString(text, font, Brushes.Black, textPosX, posY);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user