|
|
@ -839,7 +839,7 @@ namespace Myshipping.Application
|
|
|
|
if (!string.IsNullOrWhiteSpace(input.HBLNO))
|
|
|
|
if (!string.IsNullOrWhiteSpace(input.HBLNO))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
//查询表中是否有当前输入的分单号
|
|
|
|
//查询表中是否有当前输入的分单号
|
|
|
|
var et = await _rep.AsQueryable().Filter(null, true).Where(x => x.IsDeleted == false && x.HBLNO == input.HBLNO).FirstAsync();
|
|
|
|
var et = await _rep.AsQueryable().Filter(null, true).Where(x => x.IsDeleted == false && x.HBLNO == input.HBLNO && x.Id != input.Id).FirstAsync();
|
|
|
|
if (et != null)
|
|
|
|
if (et != null)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
throw Oops.Bah("当前分提单号已存在,请勿重复录入!");
|
|
|
|
throw Oops.Bah("当前分提单号已存在,请勿重复录入!");
|
|
|
|