구매현황에서 pr/po 일괄 변경 가능ㅎ ㅏ게 함
This commit is contained in:
@@ -253,6 +253,9 @@ namespace FPJ0000.JobReport_
|
||||
var item = baseData.Where(t => t.process == prcitem.memo); //해당 프로세스에 해당하는 아이템을 가져온다
|
||||
//}
|
||||
|
||||
if(prcitem.memo.StartsWith("ASM Feeder Center"))
|
||||
Console.WriteLine("sdf");
|
||||
|
||||
//foreach (var item in orProcess)
|
||||
//{
|
||||
var processName = prcitem.memo; // item.FirstOrDefault().process;
|
||||
@@ -271,12 +274,14 @@ namespace FPJ0000.JobReport_
|
||||
}
|
||||
else
|
||||
{
|
||||
var colName = fpSpread1.Sheets[0].Cells[6, i].Value.ToString();
|
||||
var colData = fpSpread1.Sheets[0].Cells[6, i].Value;
|
||||
var colName = string.Empty;// fpSpread1.Sheets[0].Cells[6, i].Value.ToString();
|
||||
if (colData != null) colName = colData.ToString();
|
||||
|
||||
//이 이름에 해당하는 데이터의 시간을 가져온다
|
||||
double ot = 0.0;
|
||||
double hrs = 0.0;
|
||||
if (colName != "*")
|
||||
if (colName != "*" && colName.isEmpty()==false)
|
||||
{
|
||||
//double holytime = 0.0;
|
||||
var timeList = item.Where(t => t.svalue == colName);
|
||||
|
||||
Reference in New Issue
Block a user