|
|
@ -2679,7 +2679,7 @@ namespace AMESCoreStudio.Web.Controllers |
|
|
|
Station = barcodestation.GetRuleStation.StationDesc, |
|
|
|
RuleStation = barcodestation.RuleStatus, |
|
|
|
SysType = barcodestation.Systype, |
|
|
|
User = barcodestation.CreateUserID.ToString(), |
|
|
|
User = barcodestation.UserName, |
|
|
|
InputDate = barcodestation.CreateDate.ToString() |
|
|
|
}); |
|
|
|
} |
|
|
@ -2696,6 +2696,16 @@ namespace AMESCoreStudio.Web.Controllers |
|
|
|
InputDate = barcodeitem.CreateDate.ToString() |
|
|
|
}); |
|
|
|
} |
|
|
|
var wipKp = await _pcsApi.GetWipKpByWipNo(result.WinInfos.FirstOrDefault().WipNo); |
|
|
|
wipKp = wipKp.OrderBy(o => o.KpSeq).ToList(); |
|
|
|
int i = 0; |
|
|
|
foreach(var item in result.BarCodeKPs.OrderBy(o => o.InputDate)) |
|
|
|
{ |
|
|
|
item.KPItemNo = wipKp[i].KpName; |
|
|
|
item.No = wipKp[i].KpNoName; |
|
|
|
i++; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// 治具清單
|
|
|
|
var barcodeoutfits = await _pcsApi.GetBarcodeOutfitByBarcodeNo(model.BarCodeNo); |
|
|
|