|
|
@ -23,6 +23,7 @@ namespace ICSSoft.WebAPI.Controllers |
|
|
|
HttpResponseMessage result = new HttpResponseMessage(); |
|
|
|
Result res = new Result(); |
|
|
|
string str = string.Empty; |
|
|
|
private static object key = new object(); |
|
|
|
/// <summary>
|
|
|
|
/// 多语言
|
|
|
|
/// </summary>
|
|
|
@ -678,18 +679,21 @@ namespace ICSSoft.WebAPI.Controllers |
|
|
|
{ |
|
|
|
if (JsonData != null && !string.IsNullOrWhiteSpace(JsonData.ToString()) && JsonData.ToString() != "[]") |
|
|
|
{ |
|
|
|
|
|
|
|
List<LOTStockUpCreateIModel> model = new List<LOTStockUpCreateIModel>(); |
|
|
|
model = JsonConvert.DeserializeObject<List<LOTStockUpCreateIModel>>(JsonData.ToString()); |
|
|
|
//WMSBarCoreService action = new WMSBarCoreService();
|
|
|
|
//var resultStr = action.LOTStockCreate(model);
|
|
|
|
var resultStr = ICSSubmitService.LOTStockCreate(model); |
|
|
|
res.Success = true; |
|
|
|
res.Message = LanguageHelper.GetNameSingle("WMSAPI001");// "接口调用成功!";
|
|
|
|
if (resultStr != null && resultStr.Rows.Count > 0 && resultStr.ToString() != "[]") |
|
|
|
lock (key) |
|
|
|
{ |
|
|
|
res.Data = resultStr; |
|
|
|
List<LOTStockUpCreateIModel> model = new List<LOTStockUpCreateIModel>(); |
|
|
|
model = JsonConvert.DeserializeObject<List<LOTStockUpCreateIModel>>(JsonData.ToString()); |
|
|
|
//WMSBarCoreService action = new WMSBarCoreService();
|
|
|
|
//var resultStr = action.LOTStockCreate(model);
|
|
|
|
var resultStr = ICSSubmitService.LOTStockCreate(model); |
|
|
|
res.Success = true; |
|
|
|
res.Message = LanguageHelper.GetNameSingle("WMSAPI001");// "接口调用成功!";
|
|
|
|
if (resultStr != null && resultStr.Rows.Count > 0 && resultStr.ToString() != "[]") |
|
|
|
{ |
|
|
|
res.Data = resultStr; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
catch (Exception ex) |
|
|
@ -721,18 +725,22 @@ namespace ICSSoft.WebAPI.Controllers |
|
|
|
{ |
|
|
|
if (JsonData != null && !string.IsNullOrWhiteSpace(JsonData.ToString()) && JsonData.ToString() != "[]") |
|
|
|
{ |
|
|
|
|
|
|
|
List<LOTStockUpCreateIModel> model = new List<LOTStockUpCreateIModel>(); |
|
|
|
model = JsonConvert.DeserializeObject<List<LOTStockUpCreateIModel>>(JsonData.ToString()); |
|
|
|
//WMSBarCoreService action = new WMSBarCoreService();
|
|
|
|
//var resultStr = action.LOTStockCreate(model);
|
|
|
|
var resultStr = ICSSubmitService.LOTStockCreateAM(model); |
|
|
|
res.Success = true; |
|
|
|
res.Message = LanguageHelper.GetNameSingle("WMSAPI001");// "接口调用成功!";
|
|
|
|
if (resultStr != null && resultStr.Rows.Count > 0 && resultStr.ToString() != "[]") |
|
|
|
lock (key) |
|
|
|
{ |
|
|
|
res.Data = resultStr; |
|
|
|
List<LOTStockUpCreateIModel> model = new List<LOTStockUpCreateIModel>(); |
|
|
|
model = JsonConvert.DeserializeObject<List<LOTStockUpCreateIModel>>(JsonData.ToString()); |
|
|
|
//WMSBarCoreService action = new WMSBarCoreService();
|
|
|
|
//var resultStr = action.LOTStockCreate(model);
|
|
|
|
var resultStr = ICSSubmitService.LOTStockCreateAM(model); |
|
|
|
res.Success = true; |
|
|
|
res.Message = LanguageHelper.GetNameSingle("WMSAPI001");// "接口调用成功!";
|
|
|
|
if (resultStr != null && resultStr.Rows.Count > 0 && resultStr.ToString() != "[]") |
|
|
|
{ |
|
|
|
res.Data = resultStr; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
catch (Exception ex) |
|
|
@ -889,25 +897,30 @@ namespace ICSSoft.WebAPI.Controllers |
|
|
|
{ |
|
|
|
if (JsonData != null && !string.IsNullOrWhiteSpace(JsonData.ToString()) && JsonData.ToString() != "[]") |
|
|
|
{ |
|
|
|
List<LOTStockModel> model = new List<LOTStockModel>(); |
|
|
|
model = JsonConvert.DeserializeObject<List<LOTStockModel>>(JsonData.ToString()); |
|
|
|
//WMSBarCoreService action = new WMSBarCoreService();
|
|
|
|
//var resultStr = action.LOTStockDownCreate(model);
|
|
|
|
var resultStr = ICSSubmitService.LOTStockDownCreate(model); |
|
|
|
res.Success = true; |
|
|
|
//if (resultStr.Columns.Contains("OLDLotNo"))
|
|
|
|
//{
|
|
|
|
// res.PrintStr = DBHelper.ReadFileStream();
|
|
|
|
//}else
|
|
|
|
//{a
|
|
|
|
res.PrintStr = ""; |
|
|
|
//}
|
|
|
|
|
|
|
|
res.Message = LanguageHelper.GetNameSingle("WMSAPI001");// "接口调用成功!";
|
|
|
|
if (resultStr != null && resultStr.Rows.Count > 0 && resultStr.ToString() != "[]") |
|
|
|
lock (key) |
|
|
|
{ |
|
|
|
res.Data = resultStr; |
|
|
|
List<LOTStockModel> model = new List<LOTStockModel>(); |
|
|
|
model = JsonConvert.DeserializeObject<List<LOTStockModel>>(JsonData.ToString()); |
|
|
|
//WMSBarCoreService action = new WMSBarCoreService();
|
|
|
|
//var resultStr = action.LOTStockDownCreate(model);
|
|
|
|
var resultStr = ICSSubmitService.LOTStockDownCreate(model); |
|
|
|
res.Success = true; |
|
|
|
//if (resultStr.Columns.Contains("OLDLotNo"))
|
|
|
|
//{
|
|
|
|
// res.PrintStr = DBHelper.ReadFileStream();
|
|
|
|
//}else
|
|
|
|
//{a
|
|
|
|
res.PrintStr = ""; |
|
|
|
//}
|
|
|
|
|
|
|
|
res.Message = LanguageHelper.GetNameSingle("WMSAPI001");// "接口调用成功!";
|
|
|
|
if (resultStr != null && resultStr.Rows.Count > 0 && resultStr.ToString() != "[]") |
|
|
|
{ |
|
|
|
res.Data = resultStr; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
catch (Exception ex) |
|
|
@ -939,25 +952,30 @@ namespace ICSSoft.WebAPI.Controllers |
|
|
|
{ |
|
|
|
if (JsonData != null && !string.IsNullOrWhiteSpace(JsonData.ToString()) && JsonData.ToString() != "[]") |
|
|
|
{ |
|
|
|
List<LOTStockModel> model = new List<LOTStockModel>(); |
|
|
|
model = JsonConvert.DeserializeObject<List<LOTStockModel>>(JsonData.ToString()); |
|
|
|
//WMSBarCoreService action = new WMSBarCoreService();
|
|
|
|
//var resultStr = action.LOTStockDownCreate(model);
|
|
|
|
var resultStr = ICSSubmitService.LOTStockDownAMCreate(model); |
|
|
|
res.Success = true; |
|
|
|
//if (resultStr.Columns.Contains("OLDLotNo"))
|
|
|
|
//{
|
|
|
|
// res.PrintStr = DBHelper.ReadFileStream();
|
|
|
|
//}else
|
|
|
|
//{a
|
|
|
|
res.PrintStr = ""; |
|
|
|
//}
|
|
|
|
|
|
|
|
res.Message = LanguageHelper.GetNameSingle("WMSAPI001");// "接口调用成功!";
|
|
|
|
if (resultStr != null && resultStr.Rows.Count > 0 && resultStr.ToString() != "[]") |
|
|
|
lock (key) |
|
|
|
{ |
|
|
|
res.Data = resultStr; |
|
|
|
List<LOTStockModel> model = new List<LOTStockModel>(); |
|
|
|
model = JsonConvert.DeserializeObject<List<LOTStockModel>>(JsonData.ToString()); |
|
|
|
//WMSBarCoreService action = new WMSBarCoreService();
|
|
|
|
//var resultStr = action.LOTStockDownCreate(model);
|
|
|
|
var resultStr = ICSSubmitService.LOTStockDownAMCreate(model); |
|
|
|
res.Success = true; |
|
|
|
//if (resultStr.Columns.Contains("OLDLotNo"))
|
|
|
|
//{
|
|
|
|
// res.PrintStr = DBHelper.ReadFileStream();
|
|
|
|
//}else
|
|
|
|
//{a
|
|
|
|
res.PrintStr = ""; |
|
|
|
//}
|
|
|
|
|
|
|
|
res.Message = LanguageHelper.GetNameSingle("WMSAPI001");// "接口调用成功!";
|
|
|
|
if (resultStr != null && resultStr.Rows.Count > 0 && resultStr.ToString() != "[]") |
|
|
|
{ |
|
|
|
res.Data = resultStr; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
catch (Exception ex) |
|
|
|