From e7ff0db5b67dd287bc6a0c2253f44b84a8e3bb72 Mon Sep 17 00:00:00 2001 From: wanghaomei <86whm@163.com> Date: Wed, 3 Jul 2024 18:21:04 +0800 Subject: [PATCH] bug --- .../BookingCustomerOrder/BookingCustomerOrderService.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Myshipping.Application/Service/BookingCustomerOrder/BookingCustomerOrderService.cs b/Myshipping.Application/Service/BookingCustomerOrder/BookingCustomerOrderService.cs index 24b51760..0069a03c 100644 --- a/Myshipping.Application/Service/BookingCustomerOrder/BookingCustomerOrderService.cs +++ b/Myshipping.Application/Service/BookingCustomerOrder/BookingCustomerOrderService.cs @@ -3176,7 +3176,10 @@ namespace Myshipping.Application custOrder.DESTINATION = destination.EnName; custOrder.DESTINATIONID = destination.EdiCode; custOrder.BLFRT = frt.EnName; - custOrder.SERVICE = service.Name; + if (custOrder.CARRIERID == "COSCO") + { + custOrder.SERVICE = service.Name; + } //2024年4月19日,将分拆的收发通拼接到大文本的收发通中 ContactSFT(custOrder);