프로젝트 정보에 COSTSAVE/HIGHTLIGHT/FANOUT 체크박스 추가

This commit is contained in:
chi
2023-06-22 23:19:49 +09:00
parent b04b79b5f5
commit 819b9264d0
11 changed files with 784 additions and 667 deletions

View File

@@ -20,6 +20,9 @@ namespace FPJ0000
this.dr = pidx_;
this.dsPRJ.ProjectsHistory.TableNewRow += ProjectsHistory_TableNewRow;
this.EditMode = editmode_;
this.chkCostSave.Checked = pidx_.bCost;
this.chkFanout.Checked = pidx_.bFanOut;
this.chkHigh.Checked = pidx_.bHighlight;
}
void ProjectsHistory_TableNewRow(object sender, DataTableNewRowEventArgs e)
@@ -253,6 +256,11 @@ namespace FPJ0000
this.dr.ReqPackage = cmbReqPackage.Text;
this.dr.ReqPlant = cmbReqPlant.Text;
this.dr.bCost = chkCostSave.Checked;
this.dr.bHighlight = chkHigh.Checked;
this.dr.bFanOut = chkFanout.Checked;
if (tbSFI.Text.isEmpty() == false)
{
if (float.TryParse(tbSFI.Text, out float sfi))