toshortstring -> tostring
This commit is contained in:
@@ -79,7 +79,7 @@ namespace FCM0000
|
||||
|
||||
|
||||
///입력된 데이터를 적용한다.
|
||||
if (dr.pdate == "") dr.pdate = DateTime.Now.ToShortDateString();
|
||||
if (dr.pdate == "") dr.pdate = DateTime.Now.ToString("yyyy-MM-dd");
|
||||
dtPdate.Value = DateTime.Parse(dr.pdate);
|
||||
dtPdate.Value = DateTime.Parse(dr.pdate);
|
||||
// cmbRequest.Text = dr.userName;
|
||||
@@ -265,7 +265,7 @@ namespace FCM0000
|
||||
if (tbPumIDX.Text == "" || tbPumIDX.Text == "-1") dr.SetitemNull();
|
||||
else dr.item = int.Parse(tbPumIDX.Text);
|
||||
dr.sid = tbSID.Text.Trim();
|
||||
dr.pdate = this.dtPdate.Value.ToShortDateString();
|
||||
dr.pdate = this.dtPdate.Value.ToString("yyyy-MM-dd");
|
||||
dr.gcode = FCOMMON.info.Login.gcode;
|
||||
if (cmbRequest.Text.IndexOf("]") != -1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user