업무일지 등록시 분류가 1개라면 자동 선택, 업무형태 글자 짤림으로 인해 늘리기

This commit is contained in:
chi
2023-10-26 20:17:02 +09:00
parent c18b72ede6
commit a95b26c55d
26 changed files with 2916 additions and 1571 deletions

View File

@@ -13,7 +13,7 @@ namespace FCOMMON
{
public partial class fSFI : Form
{
public fSFI(string sfi_type, float time, float cnt, double shiftcount, int itemcnt)
public fSFI(string sfi_type, double time, double cnt, double shiftcount, int itemcnt)
{
InitializeComponent();
if (sfi_type == "M")
@@ -107,14 +107,14 @@ namespace FCOMMON
{
//offcie update
var sfi = (double)nudSFIOffice.Value;
numericUpDown3.Value = (decimal)(sfi * 1.25);
//numericUpDown3.Value = (decimal)(sfi * 1.25);
}
private void numericUpDown4_ValueChanged(object sender, EventArgs e)
{
//mfg update
var sfi = (double)nudSFIMFG.Value;
numericUpDown1.Value = (decimal)(sfi * 1.25);
//numericUpDown1.Value = (decimal)(sfi * 1.25);
}
}
}