From e1c326da0a9337463d09d384ebdbf925676c772c Mon Sep 17 00:00:00 2001 From: jianghaiqing Date: Mon, 15 Apr 2024 11:18:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A9=AC=E5=A3=AB=E5=9F=BAAP?= =?UTF-8?q?I=E8=AE=A2=E8=88=B1=E7=9A=84=E6=89=B9=E9=87=8F=E5=A4=8D?= =?UTF-8?q?=E5=88=B6=E5=92=8C=E6=89=B9=E9=87=8F=E5=8F=91=E9=80=81=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/BookingOrder/BookingMSKAPIService.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Myshipping.Application/Service/BookingOrder/BookingMSKAPIService.cs b/Myshipping.Application/Service/BookingOrder/BookingMSKAPIService.cs index 836f98f7..62e05dd4 100644 --- a/Myshipping.Application/Service/BookingOrder/BookingMSKAPIService.cs +++ b/Myshipping.Application/Service/BookingOrder/BookingMSKAPIService.cs @@ -1612,7 +1612,7 @@ namespace Myshipping.Application.Service.BookingOrder { List msgList = new List(); - if (entity.IS_BOOKING_PART_OWN_PRICE || (model.bookingDto != null && model.bookingDto.isBookingPartOwnPrice)) + if (entity.IS_SHIPPER_OWNED || (model.bookingDto != null && model.bookingDto.isShipperOwned)) { msgList.Add("含有指定托运人自己的集装箱"); } @@ -1624,7 +1624,7 @@ namespace Myshipping.Application.Service.BookingOrder if (entity.IS_REEFER || (model.bookingDto != null && model.bookingDto.isReefer)) { - msgList.Add("含有是否冷冻处理"); + msgList.Add("含有是冷冻处理"); } if (model.bookingDto != null && model.bookingDto.cargoType != entity.CARGO_TYPE) @@ -1659,7 +1659,7 @@ namespace Myshipping.Application.Service.BookingOrder { List msgList = new List(); - if (list.Any(a => a.IS_BOOKING_PART_OWN_PRICE)) + if (list.Any(a => a.IS_SHIPPER_OWNED)) { msgList.Add("含有指定托运人自己的集装箱"); } @@ -1671,7 +1671,7 @@ namespace Myshipping.Application.Service.BookingOrder if (list.Any(a => a.IS_REEFER)) { - msgList.Add("含有指定进口退货集装箱或者其他三角集运"); + msgList.Add("含有是冷冻处理"); } if (msgList.Count > 0)