|
|
@ -2071,6 +2071,7 @@ namespace AMESCoreStudio.Web.Controllers |
|
|
|
{ |
|
|
|
item.WipNo = model.wipInfo.WipNO; |
|
|
|
item.ItemNo = model.wipAtt.ItemNO; |
|
|
|
item.OutfitNo = "."; |
|
|
|
if (item.WipOutfitID == 0) |
|
|
|
await _pcsApi.PostWipOutfit(JsonConvert.SerializeObject(item)); |
|
|
|
else |
|
|
@ -3476,6 +3477,7 @@ namespace AMESCoreStudio.Web.Controllers |
|
|
|
{ |
|
|
|
OutfitNo = item.OutfitNo, |
|
|
|
PartNo = item.PartNo, |
|
|
|
PartNoName = item.PartNoName, |
|
|
|
StationName = item.StationName, |
|
|
|
UnitNoName = item.UnitNoName |
|
|
|
} |
|
|
@ -3501,6 +3503,9 @@ namespace AMESCoreStudio.Web.Controllers |
|
|
|
string Msg = string.Empty; |
|
|
|
bool Success = true; |
|
|
|
string Data = model.Input; |
|
|
|
// 刷入條碼+異常欄位
|
|
|
|
if (!string.IsNullOrWhiteSpace(model.InputNo)) |
|
|
|
Data += "@" + model.InputNo; |
|
|
|
|
|
|
|
string ExtNo = string.Empty; |
|
|
|
|
|
|
@ -3909,7 +3914,7 @@ namespace AMESCoreStudio.Web.Controllers |
|
|
|
// await _pcsApi.CheckWipNoBarCodeAllClost(model.WipNO, model.UnitNO, model.RuleStation);
|
|
|
|
} |
|
|
|
|
|
|
|
return Json(new Result() { success = Success, msg = Msg, data = Data + "@" + model.InputNo }); // 刷入條碼+異常欄位
|
|
|
|
return Json(new Result() { success = Success, msg = Msg, data = Data }); |
|
|
|
} |
|
|
|
#endregion
|
|
|
|
|
|
|
|