|
|
@ -1866,7 +1866,7 @@ namespace AMESCoreStudio.Web.Controllers |
|
|
|
|
|
|
|
FQC010Master = new FQC010VIiew() |
|
|
|
{ |
|
|
|
DefectDescription = FqcQuery.QaMeno, |
|
|
|
DefectDescription = string.IsNullOrWhiteSpace(FqcQuery.QaMeno) ? "N/A" : FqcQuery.QaMeno, |
|
|
|
InspectionDate = FqcQuery.EndTime, |
|
|
|
AC = FqcQuery.AcQty.ToString(), |
|
|
|
Approved = FqcQuery.Supervisor_Name, |
|
|
@ -1874,30 +1874,30 @@ namespace AMESCoreStudio.Web.Controllers |
|
|
|
SpeciallyAdoption = FqcQuery.SpecialPo, |
|
|
|
BIOSVer = FqcQuery.BIOS, |
|
|
|
ECN = FqcQuery.PLMECN, |
|
|
|
ECNMemo = FqcQuery.ECN_Memo, |
|
|
|
ECNMemo = string.IsNullOrWhiteSpace(FqcQuery.ECN_Memo) ? "N/A" : FqcQuery.ECN_Memo, |
|
|
|
Factory = FqcQuery.Werk.Split('-')[0], |
|
|
|
FactoryRemark = FqcQuery.Werk.Split('-')[1], |
|
|
|
InspectionInstrumentNumber = FqcQuery.OutfitNo, |
|
|
|
InspectionInstrumentNumber = string.IsNullOrWhiteSpace(FqcQuery.OutfitNo) ? "N/A" : FqcQuery.OutfitNo, |
|
|
|
InspectionItems = $"OS:[{FqcQuery.OS}] CPU test:[{FqcQuery.CPU}] RAM test:[{FqcQuery.RAM}]", |
|
|
|
InspectionNumber = FqcQuery.InhouseNo, |
|
|
|
InspectionStatus = FqcQuery.InspectionStatus, |
|
|
|
InspectionType = FqcQuery.InspectionTypeName, |
|
|
|
Inspector = FqcQuery.UpdateUser_Name, |
|
|
|
Judgment = "Defect Quantity", |
|
|
|
Line = FqcQuery.InhouseMemo, |
|
|
|
Line = string.IsNullOrWhiteSpace(FqcQuery.InhouseMemo) ? "N/A" : FqcQuery.InhouseMemo, |
|
|
|
LotSize = FqcQuery.InhouseQty.ToString(), |
|
|
|
Major = FqcQuery.MajorQty.ToString(), |
|
|
|
MedicalModel = FqcQuery.CustomerMedical, |
|
|
|
Minor = FqcQuery.MinorQty.ToString(), |
|
|
|
Model = FqcQuery.ItemNo, |
|
|
|
ModelName = FqcQuery.ModelNo, |
|
|
|
NOTE = FqcQuery.Note, |
|
|
|
NOTE = string.IsNullOrWhiteSpace(FqcQuery.Note) ? "N/A" : FqcQuery.Note, |
|
|
|
OrderNumber = FqcQuery.WipNo, |
|
|
|
QuotDescription = FqcQuery.QuotDescription, |
|
|
|
ReMajor = FqcQuery.ReQty.ToString(), |
|
|
|
Sample = FqcQuery.QcQty.ToString(), |
|
|
|
QuotName = FqcQuery.QuotName, |
|
|
|
//StorageLocation = "9000",
|
|
|
|
StorageLocation = FqcQuery.LocationNo, |
|
|
|
Avalue = "AVALUE", |
|
|
|
VIP = FqcQuery.CustomerVIP, |
|
|
|
WaiveRequisition = FqcQuery.StatusName, |
|
|
|