프로젝트 스케쥴 오류 수정

This commit is contained in:
chi
2025-04-08 08:23:48 +09:00
parent 8ac3600ec1
commit 8e76ee9692
10 changed files with 796 additions and 259 deletions

View File

@@ -369,21 +369,21 @@ namespace Project.Dialog
newdr.wdate = DateTime.Now;
newdr.pdate = nd;
newdr.import = false;
newdr.hrs = dr.hrs;
newdr.type = dr.type;//210305 누락분 추가
newdr.ot = dr.ot;
newdr.process = dr.process;
newdr.projectName = dr.projectName;
newdr.pidx = dr.pidx;
newdr.package = dr.package;
newdr.autoinput = true;
newdr.description = dr.description;
newdr.description2 = dr.description2;
newdr.remark = dr.remark;
newdr.requestpart = dr.requestpart;
newdr.status = dr.status;
newdr.tag = dr.tag;
newdr.uid = dr.uid;
if (dr.IshrsNull() == false) newdr.hrs = dr.hrs;
if (dr.IstypeNull() == false) newdr.type = dr.type;//210305 누락분 추가
if (dr.IsotNull() == false) newdr.ot = dr.ot;
if (dr.IsprocessNull() == false) newdr.process = dr.process;
if (dr.IsprojectNameNull() == false) newdr.projectName = dr.projectName;
if (dr.IspidxNull() == false) newdr.pidx = dr.pidx;
if (dr.IspackageNull() == false) newdr.package = dr.package;
newdr.autoinput = true;
if (dr.IsdescriptionNull() == false) newdr.description = dr.description;
if (dr.Isdescription2Null() == false) newdr.description2 = dr.description2;
if (dr.IsremarkNull() == false) newdr.remark = dr.remark;
if (dr.IsrequestpartNull() == false) newdr.requestpart = dr.requestpart;
if (dr.IsstatusNull() == false) newdr.status = dr.status;
if (dr.IstagNull() == false) newdr.tag = dr.tag;
if (dr.IsuidNull() == false) newdr.uid = dr.uid;
newjob.AddJobReportRow(newdr);
}