This commit is contained in:
18942506660
2024-11-05 09:34:06 +08:00
parent 94040ba63d
commit 5416303056
4 changed files with 11 additions and 1 deletions

View File

@@ -125,7 +125,7 @@ namespace WMS.Web.Api.Controllers
//string codes = "AD"; //string codes = "AD";
//var b = await _erpInventoryService.GetInventory(new List<string>() { "111"}); //var b = await _erpInventoryService.GetInventory(new List<string>() { "111"});
//int count = 10 / 5; //int count = 10 / 5;
var bcd=await _productInventoryService.JuShuiTan(); var bcd=await _productInventoryService.LingXing();
//LingXingResponse<LingXingStockResponse> r = new LingXingResponse<LingXingStockResponse>(); //LingXingResponse<LingXingStockResponse> r = new LingXingResponse<LingXingStockResponse>();

View File

@@ -4140,6 +4140,11 @@
页条数 页条数
</summary> </summary>
</member> </member>
<member name="P:WMS.Web.Core.Dto.LingXing.LingXingRequest.type">
<summary>
海外仓
</summary>
</member>
<member name="T:WMS.Web.Core.Dto.LingXing.LingXingSellerResponse"> <member name="T:WMS.Web.Core.Dto.LingXing.LingXingSellerResponse">
<summary> <summary>
店铺信息 店铺信息

View File

@@ -239,6 +239,11 @@ namespace WMS.Web.Domain.Services
_logger.LogInformation($"拉取领星数据结果:{resInventory.IsSuccess} {resInventory.Message}"); _logger.LogInformation($"拉取领星数据结果:{resInventory.IsSuccess} {resInventory.Message}");
if (!resInventory.IsSuccess) return resStock; if (!resInventory.IsSuccess) return resStock;
foreach(var i in ids)
{
_logger.LogInformation($"拉取领星数据{i} 数据总数:{resInventory.Data.Where(w=>w.StockId==i).Count()}");
}
//物料 //物料
var materials_result = await _erpService.BillQueryForMaterial(); var materials_result = await _erpService.BillQueryForMaterial();
List<ErpMaterialDto> materials = new List<ErpMaterialDto>(); List<ErpMaterialDto> materials = new List<ErpMaterialDto>();