toshortstring -> tostring
This commit is contained in:
@@ -66,7 +66,7 @@ namespace FEQ0000
|
||||
if (e.KeyCode != Keys.Enter) return;
|
||||
var tb = sender as ToolStripTextBox;
|
||||
var input = tb.Text.Trim();
|
||||
if (input == "") tb.Text = DateTime.Now.ToShortDateString();
|
||||
if (input == "") tb.Text = DateTime.Now.ToString("yyyy-MM-dd");
|
||||
else
|
||||
{
|
||||
string dt = string.Empty;
|
||||
@@ -540,7 +540,7 @@ namespace FEQ0000
|
||||
var newdr = this.dsPurchase.Purchase.NewPurchaseRow();
|
||||
FCOMMON.Util.CopyData((System.Data.DataRow)dr, (System.Data.DataRow)newdr);
|
||||
newdr.orderno = string.Empty; //CR값 복사 안하게 210823
|
||||
newdr.pdate = DateTime.Now.ToShortDateString();
|
||||
newdr.pdate = DateTime.Now.ToString("yyyy-MM-dd");
|
||||
newdr.wdate = DateTime.Now;
|
||||
newdr.wuid = FCOMMON.info.Login.no;
|
||||
newdr.state = "---";
|
||||
|
||||
Reference in New Issue
Block a user