|
|
|
@ -3592,8 +3592,8 @@ namespace Myshipping.Application
|
|
|
|
|
}
|
|
|
|
|
catch { }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (App.Configuration["RunType"] is not CommonConst.RUN_TYPE_DJY or CommonConst.RUN_TYPE_CUST)
|
|
|
|
|
// 以后需要把RUN_TYPE_CUST 、 RUN_TYPE_NORMAL放开
|
|
|
|
|
if (App.Configuration["RunType"] is not CommonConst.RUN_TYPE_CUST or CommonConst.RUN_TYPE_DJY or CommonConst.RUN_TYPE_NORMAL)
|
|
|
|
|
{
|
|
|
|
|
await SendLetterYard(input.BookingId);
|
|
|
|
|
}
|
|
|
|
@ -9679,7 +9679,8 @@ namespace Myshipping.Application
|
|
|
|
|
[NonAction]
|
|
|
|
|
public async Task<dynamic> SendBookingOrder(long[] ids)
|
|
|
|
|
{
|
|
|
|
|
if (App.Configuration["RunType"] is CommonConst.RUN_TYPE_CUST or CommonConst.RUN_TYPE_DJY)
|
|
|
|
|
// 以后需要把RUN_TYPE_CUST 、 RUN_TYPE_NORMAL放开
|
|
|
|
|
if (App.Configuration["RunType"] is CommonConst.RUN_TYPE_CUST or CommonConst.RUN_TYPE_DJY or CommonConst.RUN_TYPE_NORMAL)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|