using AngleSharp.Io;
|
using Masuit.Tools;
|
using Newtonsoft.Json;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core;
|
using WIDESEA_Core.BaseServices;
|
using WIDESEA_Core.Helper;
|
using WIDESEA_ISquareCabinRepository;
|
using WIDESEA_ISquareCabinServices;
|
using WIDESEA_Model.Models;
|
using WIDESEA_Model.Models.SquareCabin;
|
using WIDESEA_SquareCabinRepository;
|
using static WIDESEA_DTO.SquareCabin.OrderDto;
|
|
namespace WIDESEA_SquareCabinServices
|
{
|
public class InventoryServices : ServiceBase<Dt_Inventory, IInventoryRepository>, IInventoryServices
|
{
|
public InventoryServices(IInventoryRepository BaseDal) : base(BaseDal)
|
{
|
}
|
|
/// <summary>
|
/// 获取上游库存信息
|
/// </summary>
|
/// <param name="goods_no">商品编码</param>
|
/// <param name="batch_num">批号</param>
|
/// <returns></returns>
|
/// <exception cref="NotImplementedException"></exception>
|
public WebResponseContent GetInventoryList(string goods_no, string batch_num)
|
{
|
var responseContent = new WebResponseContent();
|
try
|
{
|
var url = "http://127.0.0.1:9090/GYZ2/95fck/repositoryInfo";
|
// 发起请求
|
var result = HttpHelper.Post(url, new { goods_no,batch_num}.ToJsonString());
|
|
// 反序列化
|
var response = JsonConvert.DeserializeObject<UpstreamResponse<InventoryInfo>>(result);
|
|
if (response.resultCode!="0")
|
{
|
// 调用异常接口
|
SendErrorToUpstream(8, "", response.resultMsg ?? "上游接口返回失败", "");
|
return responseContent.Error(response.resultMsg ?? "上游接口返回失败");
|
}
|
if (response.data == null || !response.data.Any())
|
{
|
return responseContent.OK("无新库存数据");
|
}
|
foreach (var item in response.data)
|
{
|
var Inver = new Dt_Inventory
|
{
|
Goods_no = item.goods_no,
|
Batch_num = item.batch_num,
|
Exp_date=item.exp_date,
|
Business_qty = item.business_qty,
|
Actual_qty = item.actural_qty,
|
};
|
AddData(Inver);
|
}
|
return responseContent.OK("库存信息同步完成");
|
}
|
catch (Exception ex)
|
{
|
|
SendErrorToUpstream(8, "", ex.Message, "");
|
return responseContent.Error("同步失败: " + ex.Message);
|
}
|
}
|
|
/// <summary>
|
/// 推送异常信息给上游系统1.入库单接口;2.入库单报完成接口;3.出库单接口;4.出库报完成接口;5.药品基础信息同步接口;6.供应商信息接口;7.客户信息接口;8.库存
|
/// </summary>
|
public void SendErrorToUpstream(int type, string code, string message, string remark)
|
{
|
try
|
{
|
var url = "http://127.0.0.1:9090/GYZ2/95fck/exceptionLog";
|
|
var requestData = new
|
{
|
type = type.ToString(),
|
code = code,
|
message = message,
|
remark = remark
|
};
|
|
var result = HttpHelper.Post(url, requestData.ToJsonString());
|
// 可以反序列化检查 resultCode 是否为0
|
}
|
catch (Exception e)
|
{
|
// 这里不要再抛异常了,避免死循环
|
Console.WriteLine("异常接口推送失败:" + e.Message);
|
}
|
}
|
|
|
}
|
}
|