|
|
@ -6,6 +6,7 @@ using System.Threading.Tasks;
|
|
|
|
using DS.Module.Core;
|
|
|
|
using DS.Module.Core;
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
using DS.Module.Core.Helpers;
|
|
|
|
using DS.Module.Core.Helpers;
|
|
|
|
|
|
|
|
using DS.Module.MQ;
|
|
|
|
using DS.Module.SqlSugar;
|
|
|
|
using DS.Module.SqlSugar;
|
|
|
|
using DS.Module.UserModule;
|
|
|
|
using DS.Module.UserModule;
|
|
|
|
using DS.WMS.Core.Fee.Entity;
|
|
|
|
using DS.WMS.Core.Fee.Entity;
|
|
|
@ -126,6 +127,7 @@ namespace DS.WMS.FeeBillRecvService
|
|
|
|
|
|
|
|
|
|
|
|
string msg = string.Empty;
|
|
|
|
string msg = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string gid = string.Empty;
|
|
|
|
try
|
|
|
|
try
|
|
|
|
{
|
|
|
|
{
|
|
|
|
var model = GetInfo(json, out msg);
|
|
|
|
var model = GetInfo(json, out msg);
|
|
|
@ -153,19 +155,33 @@ namespace DS.WMS.FeeBillRecvService
|
|
|
|
|
|
|
|
|
|
|
|
string blno = model.BookingBill?.Trim();
|
|
|
|
string blno = model.BookingBill?.Trim();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
gid = model.GID?.Trim();
|
|
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation($"提取订单信息 GID={model.GID} BookingBill={model.BookingBill}");
|
|
|
|
_logger.LogInformation($"提取订单信息 GID={model.GID} BookingBill={model.BookingBill}");
|
|
|
|
|
|
|
|
|
|
|
|
var booking = tenantDb.Queryable<SeaExport>().ClearFilter(typeof(IOrgId)).First(a => a.MBLNO == blno && a.Deleted == false && (a.IsRefund == null || a.IsRefund.Value == false)
|
|
|
|
var booking = tenantDb.Queryable<SeaExport>().ClearFilter(typeof(IOrgId)).First(a => a.MBLNO == blno && a.Deleted == false && (a.IsRefund == null || a.IsRefund.Value == false)
|
|
|
|
&& (a.IsChangeETD == null || a.IsChangeETD.Value == false));
|
|
|
|
&& (a.IsChangeETD == null || a.IsChangeETD.Value == false));
|
|
|
|
|
|
|
|
|
|
|
|
var ctnList = tenantDb.Queryable<OpCtn>().ClearFilter(typeof(IOrgId)).Where(a => a.BSNO == booking.Id.ToString() && a.Deleted == false).ToList();
|
|
|
|
_logger.LogInformation($"提取订单完成 GID={model.GID} BookingBill={model.BookingBill} Order={JsonConvert.SerializeObject(booking)}");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (booking != null && booking.IsFeeLocking.HasValue && booking.IsFeeLocking.Value)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
SendCallBack(new SingleBillReceiveResult
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ReceiveId = model.GID,
|
|
|
|
|
|
|
|
Success = false,
|
|
|
|
|
|
|
|
Reason = "订单费用已锁定"
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation($"提取订单完成 GID={model.GID} BookingBill={model.BookingBill} Order={JsonConvert.SerializeObject(booking)}");
|
|
|
|
_logger.LogInformation($"提取订单完成 GID={model.GID} BookingBill={model.BookingBill} id={booking.Id}");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (booking != null)
|
|
|
|
if (booking != null)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
var ctnList = tenantDb.Queryable<OpCtn>().ClearFilter(typeof(IOrgId)).Where(a => a.BSNO == booking.Id.ToString() && a.Deleted == false).ToList();
|
|
|
|
|
|
|
|
|
|
|
|
DateTime etd = DateTime.MinValue;
|
|
|
|
DateTime etd = DateTime.MinValue;
|
|
|
|
|
|
|
|
|
|
|
|
if (booking.ETD.HasValue)
|
|
|
|
if (booking.ETD.HasValue)
|
|
|
@ -187,18 +203,66 @@ namespace DS.WMS.FeeBillRecvService
|
|
|
|
|
|
|
|
|
|
|
|
int start = 1;
|
|
|
|
int start = 1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//需要先全部费用跟库匹配,存在不匹配的,终止整个入库
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Dictionary<string, Tuple<string, bool>> doResultDict = new Dictionary<string, Tuple<string, bool>>();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var checkFeeArg = model.DetailList.Select(f=>f.CustSysName).Distinct().ToList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string reason = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool isStop = false;
|
|
|
|
|
|
|
|
bool isNoNotice = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (checkFeeArg.Any(x => string.IsNullOrWhiteSpace(x)))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
isStop = true;
|
|
|
|
|
|
|
|
reason = "费用名称不能为空";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//new EmailNoticeHelper().SendEmailNotice("")
|
|
|
|
|
|
|
|
isNoNotice = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var queryFeeList = tenantDb.Queryable<FeeCode>().Where(x => checkFeeArg.Contains(x.Name) && x.IsSea == true).ToList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(queryFeeList.Count == 0)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
isStop = true;
|
|
|
|
|
|
|
|
reason = $"费用名称不存在,{(string.Join(",", checkFeeArg))}";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
isNoNotice = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
var checkRlt = checkFeeArg.GroupJoin(queryFeeList, l => l, r => r.Name, (l, r) =>
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
var currFee = r.FirstOrDefault();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (currFee == null)
|
|
|
|
|
|
|
|
return new { Succ = false, Obj = l };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return new { Succ = true, Obj = l };
|
|
|
|
|
|
|
|
}).ToList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (checkRlt.Any(b => !b.Succ))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
isStop = true;
|
|
|
|
|
|
|
|
reason = "费用名称不存在," + string.Join(",", checkRlt.Where(b => !b.Succ).Select(b => b.Obj).ToArray());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
isNoNotice = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!isStop)
|
|
|
|
|
|
|
|
{
|
|
|
|
foreach (var fee in model.DetailList)
|
|
|
|
foreach (var fee in model.DetailList)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
string qFee = fee.CustSysName?.Trim();
|
|
|
|
string qFee = fee.CustSysName?.Trim();
|
|
|
|
|
|
|
|
|
|
|
|
//if(string.IsNullOrWhiteSpace(qFee))
|
|
|
|
try
|
|
|
|
//{
|
|
|
|
{
|
|
|
|
// errorMsgList.Add("没有费用名称");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// continue;
|
|
|
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var feecode = tenantDb.Queryable<FeeCode>().First(x => x.Name == qFee);
|
|
|
|
var feecode = tenantDb.Queryable<FeeCode>().First(x => x.Name == qFee && x.IsSea == true);
|
|
|
|
|
|
|
|
|
|
|
|
if (feecode == null)
|
|
|
|
if (feecode == null)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -318,7 +382,7 @@ namespace DS.WMS.FeeBillRecvService
|
|
|
|
.First(x => x.CurrencyCode == newfee.Currency && x.OrgId == booking.OrgId
|
|
|
|
.First(x => x.CurrencyCode == newfee.Currency && x.OrgId == booking.OrgId
|
|
|
|
&& x.StartDate.Value <= etd && x.EndDate.Value >= etd && x.LocalCurrency == "RMB");
|
|
|
|
&& x.StartDate.Value <= etd && x.EndDate.Value >= etd && x.LocalCurrency == "RMB");
|
|
|
|
|
|
|
|
|
|
|
|
if(exchangeInfo == null)
|
|
|
|
if (exchangeInfo == null)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
exchangeInfo = tenantDb.Queryable<FeeCurrencyExchange>().ClearFilter(typeof(IOrgId))
|
|
|
|
exchangeInfo = tenantDb.Queryable<FeeCurrencyExchange>().ClearFilter(typeof(IOrgId))
|
|
|
|
.First(x => x.CurrencyCode == newfee.Currency && x.StartDate.Value <= etd && x.EndDate.Value >= etd && x.LocalCurrency == "RMB");
|
|
|
|
.First(x => x.CurrencyCode == newfee.Currency && x.StartDate.Value <= etd && x.EndDate.Value >= etd && x.LocalCurrency == "RMB");
|
|
|
@ -350,34 +414,167 @@ namespace DS.WMS.FeeBillRecvService
|
|
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation($"写入账单完成 第【{start}】条 GID={model.GID} BookingBill={model.BookingBill} Order={JsonConvert.SerializeObject(newfee)}");
|
|
|
|
_logger.LogInformation($"写入账单完成 第【{start}】条 GID={model.GID} BookingBill={model.BookingBill} Order={JsonConvert.SerializeObject(newfee)}");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//入库成功
|
|
|
|
|
|
|
|
doResultDict.Add(fee.GID, new Tuple<string, bool>(qFee, true));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
doResultDict.Add(fee.GID, new Tuple<string, bool>(qFee, false));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation($"明细写入产生异常,qFee={qFee} 原因:{ex.Message}");
|
|
|
|
|
|
|
|
}
|
|
|
|
//callbackList.Add()
|
|
|
|
//callbackList.Add()
|
|
|
|
start++;
|
|
|
|
start++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<SingleBillReceiveResult> callbackList = new List<SingleBillReceiveResult>();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//如果存在失败情况,回执失败
|
|
|
|
|
|
|
|
if (doResultDict.Count(b => !b.Value.Item2) > 0)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
reason = "入库失败," + string.Join(",", doResultDict.Where(b => !b.Value.Item2).ToArray());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SendCallBack(new SingleBillReceiveResult
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ReceiveId = model.GID,
|
|
|
|
|
|
|
|
Success = false,
|
|
|
|
|
|
|
|
Reason = reason
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
//全部成功,推送成功回执
|
|
|
|
|
|
|
|
SendCallBack(new SingleBillReceiveResult
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ReceiveId = model.GID,
|
|
|
|
|
|
|
|
Success = true,
|
|
|
|
|
|
|
|
Reason = string.Empty
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!isNoNotice)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
SendCallBack(new SingleBillReceiveResult
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ReceiveId = model.GID,
|
|
|
|
|
|
|
|
Success = false,
|
|
|
|
|
|
|
|
Reason = reason
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
SendCallBack(new SingleBillReceiveResult
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ReceiveId = model.GID,
|
|
|
|
|
|
|
|
Success = false,
|
|
|
|
|
|
|
|
Reason = "当前订单不存在"
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
_logger.LogInformation($"产生异常,原因:{ex.Message}");
|
|
|
|
|
|
|
|
|
|
|
|
//发送回执
|
|
|
|
if (!string.IsNullOrWhiteSpace(gid))
|
|
|
|
//var jsonBody = Newtonsoft.Json.JsonConvert.SerializeObject(queryInfo, Formatting.Indented, new JsonSerializerSettings
|
|
|
|
{
|
|
|
|
|
|
|
|
//SendCallBack(new SingleBillReceiveResult
|
|
|
|
//{
|
|
|
|
//{
|
|
|
|
// NullValueHandling = NullValueHandling.Ignore
|
|
|
|
// ReceiveId = gid,
|
|
|
|
|
|
|
|
// Success = false,
|
|
|
|
|
|
|
|
// Reason = "当前订单不存在"
|
|
|
|
//});
|
|
|
|
//});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void SendCallBack(SingleBillReceiveResult dto)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
_logger.LogInformation($"开始准备发送回执MQ json={JsonConvert.SerializeObject(dto)}");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var mqRlt = PublishMessage(new MQPublishMessageReqDto
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
BusinessId = dto.ReceiveId,
|
|
|
|
|
|
|
|
IsZip = false,
|
|
|
|
|
|
|
|
json = JsonConvert.SerializeObject(dto),
|
|
|
|
|
|
|
|
mqUri = AppSetting.app(new string[] { "FeeCallBacSettings", "MQUrl" }),
|
|
|
|
|
|
|
|
mqExchangeName = AppSetting.app(new string[] { "FeeCallBacSettings", "ExchangeName" }),
|
|
|
|
|
|
|
|
mqQueueName = AppSetting.app(new string[] { "FeeCallBacSettings", "QueueName" })
|
|
|
|
|
|
|
|
}).GetAwaiter().GetResult();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation($"发送回执MQ完成,结果 json={JsonConvert.SerializeObject(mqRlt)}");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region 发送MQ报文
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// 发送MQ报文
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
/// <param name="request">请求参数</param>
|
|
|
|
|
|
|
|
/// <returns>true-发送成功 false-发送失败</returns>
|
|
|
|
|
|
|
|
public async Task<string> PublishMessage(MQPublishMessageReqDto request)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
bool isException = false;
|
|
|
|
|
|
|
|
string msg = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ConnectionFactory factory = new ConnectionFactory();
|
|
|
|
|
|
|
|
factory.Uri = new Uri(request.mqUri);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using (IConnection conn = factory.CreateConnection())
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
IModel mqModel = conn.CreateModel();
|
|
|
|
|
|
|
|
mqModel.ExchangeDeclare(request.mqExchangeName, ExchangeType.Direct);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//var queueName = $"{MqActionQueueName}.{(item.SubTenantId.HasValue && item.SubTenantId > 0 ? item.SubTenantId.Value : item.TenantId)}";
|
|
|
|
|
|
|
|
mqModel.QueueDeclare(request.mqQueueName, false, false, false, null);
|
|
|
|
|
|
|
|
mqModel.QueueBind(request.mqQueueName, request.mqExchangeName, request.mqQueueName, null);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
byte[] messageBodyBytes = Encoding.UTF8.GetBytes(request.json);
|
|
|
|
|
|
|
|
|
|
|
|
//_logger.LogInformation($"请求MSK API查询船期请求,{jsonBody}");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//var rlt = RequestHelper.Post(jsonBody, AppSetting.app(new string[] { "FeeSettings", "CallBackUrl" }));
|
|
|
|
IBasicProperties props = mqModel.CreateBasicProperties();
|
|
|
|
////var rlt = await queryUrl.SetBody(jsonBody).PostAsStringAsync();
|
|
|
|
props.DeliveryMode = 2;
|
|
|
|
|
|
|
|
mqModel.BasicPublish(request.mqExchangeName, request.mqQueueName, props, messageBodyBytes);
|
|
|
|
|
|
|
|
|
|
|
|
//_logger.LogInformation($"请求MSK API查询船期请求,{jsonBody}");
|
|
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation($"Id:{request.BusinessId},订舱数据回推,已发送数据到消息队列【{request.mqUri}】,队列名称:【{request.mqQueueName}】");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
catch (Exception inne)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
_logger.LogInformation($"Id:{request.BusinessId},推送MQ时发生异常,原因:{inne.Message}");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg = $"Id:{request.BusinessId},推送MQ时发生异常,原因:{inne.Message}";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
isException = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
finally
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
conn.Close();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
_logger.LogInformation($"产生异常,原因:{ex.Message}");
|
|
|
|
_logger.LogInformation($"Id:{request.BusinessId},启动推送MQ时发生异常,原因:{ex.Message}");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg = $"Id:{request.BusinessId},启动推送MQ时发生异常,原因:{ex.Message}";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
isException = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (isException)
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return string.Empty;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
private FeeBillReadDto GetInfo(string json,out string msg)
|
|
|
|
private FeeBillReadDto GetInfo(string json,out string msg)
|
|
|
|
{
|
|
|
|
{
|
|
|
|