프로젝트 정보에 COSTSAVE/HIGHTLIGHT/FANOUT 체크박스 추가
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user