20240911 VGM返回值处理 微调

JinHanShengHang
dengyu 3 months ago
parent 78ff5523a6
commit 87c0264d41

@ -705,7 +705,26 @@ namespace DSWeb.MvcShipping.DAL.MsOpVgmSendDAL
cdc.op_seae_vgm_send.AddOrUpdate(updrec); cdc.op_seae_vgm_send.AddOrUpdate(updrec);
//cdc.SaveChanges(); //cdc.SaveChanges();
result.OK("上传成功",updrec); //result.OK("上传成功",updrec);
if (_r.data.carrierSendFlag < 0 || _r.data.ygtSendFlag < 0)
{
result.OK("上传成功,但存在以下问题:" + _r.data.sendRltMsg, updrec);
}
else
{
if (string.IsNullOrWhiteSpace(_r.data.sendRltMsg))
{
result.OK("上传成功", updrec);
}
else
{
result.OK($"上传成功:{_r.data.sendRltMsg}", updrec);
}
}
//记录日志 //记录日志
@ -716,10 +735,20 @@ namespace DSWeb.MvcShipping.DAL.MsOpVgmSendDAL
newrec.SENDTIME = updrec.SENDTIME; newrec.SENDTIME = updrec.SENDTIME;
newrec.CTNNUM = updrec.CTNNUM; newrec.CTNNUM = updrec.CTNNUM;
newrec.REMARK = updrec.REMARK; newrec.REMARK = updrec.REMARK;
if (!string.IsNullOrEmpty(_r.data.sendRltMsg))
if (_r.data.carrierSendFlag < 0 || _r.data.ygtSendFlag < 0)
{ {
newrec.REMARK += " " + _r.data.sendRltMsg; newrec.REMARK += " 发送失败:"+ _r.data.sendRltMsg;
} }
else
{
newrec.REMARK += " 发送成功:"+ _r.data.sendRltMsg;
}
//if (!string.IsNullOrEmpty(_r.data.sendRltMsg))
//{
// newrec.REMARK += " " + _r.data.sendRltMsg;
//}
newrec.SENDTYPE = updrec.SENDTYPE; newrec.SENDTYPE = updrec.SENDTYPE;

Loading…
Cancel
Save