금일입고 메일 전송 기능 수정

파트리스트 구매등록 오류 수정
구매신청 날짜 칸 더블클릭시 선택창 추가
This commit is contained in:
chi
2021-02-18 10:12:07 +09:00
parent fc25ac4cca
commit f942419d52
30 changed files with 1529 additions and 401 deletions

View File

@@ -1155,5 +1155,21 @@ namespace FEQ0000
Clipboard.SetText(buffer);
//FCOMMON.Util.MsgI("다음 데이터가 클립보드에 저장됨\n\n" + buffer); 190131
}
private void dtSD_DoubleClick(object sender, EventArgs e)
{
var tb = sender as ToolStripTextBox;
var text = tb.Text.Trim();
var dt = DateTime.Parse(text);
var f = new FCOMMON.fSelectDay(dt);
if(f.ShowDialog() == DialogResult.OK)
{
tb.Text = f.dtPick.SelectionStart.ToShortDateString();
var sd = DateTime.Parse(this.dtSD.Text);
var ed = DateTime.Parse(this.dtED.Text);
if (ed < sd) this.dtED.Text = sd.ToShortDateString();
}
}
}
}