去除主单的分单号校验

booking_auth_dev
wanghaomei 2 years ago
parent 1436f86f9a
commit 6ff4b8c8b7

@ -317,10 +317,10 @@ namespace Myshipping.Application
if (input.ParentId == 0) if (input.ParentId == 0)
{ {
if (!string.IsNullOrWhiteSpace(input.HBLNO)) //if (!string.IsNullOrWhiteSpace(input.HBLNO))
{ //{
throw Oops.Bah("主单不需要填写分单号"); // throw Oops.Bah("主单不需要填写分单号");
} //}
if (string.IsNullOrWhiteSpace(input.MBLNO)) if (string.IsNullOrWhiteSpace(input.MBLNO))
{ {
throw Oops.Bah("请填写提单号!"); throw Oops.Bah("请填写提单号!");
@ -427,10 +427,10 @@ namespace Myshipping.Application
{ {
if (input.ParentId == 0) if (input.ParentId == 0)
{ {
if (!string.IsNullOrWhiteSpace(input.HBLNO)) //if (!string.IsNullOrWhiteSpace(input.HBLNO))
{ //{
throw Oops.Bah("主单不需要填写分单号"); // throw Oops.Bah("主单不需要填写分单号");
} //}
if (string.IsNullOrWhiteSpace(input.MBLNO)) if (string.IsNullOrWhiteSpace(input.MBLNO))
{ {
throw Oops.Bah("请填写提单号!"); throw Oops.Bah("请填写提单号!");
@ -1178,8 +1178,6 @@ namespace Myshipping.Application
reportUrl += "/"; reportUrl += "/";
} }
reportUrl = "http://127.0.0.1:8101/"; //test
//订舱数据 //订舱数据
var order = _rep.FirstOrDefault(x => x.Id == bookingId); var order = _rep.FirstOrDefault(x => x.Id == bookingId);
if (order == null) if (order == null)

Loading…
Cancel
Save