|
|
|
@ -892,8 +892,8 @@ namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
BusinessId = BusinessId,
|
|
|
|
|
MBLNO = MBLNO,
|
|
|
|
|
YARD = YARD==""?null: YARD,
|
|
|
|
|
YardCode = YARDID == ""? null: YARDID,
|
|
|
|
|
YARD = YARD == "" ? null : YARD,
|
|
|
|
|
YardCode = YARDID == "" ? null : YARDID,
|
|
|
|
|
CARRIER = CARRIER == "" ? null : CARRIER,
|
|
|
|
|
CARRIERID = CARRIERID == "" ? null : CARRIERID,
|
|
|
|
|
isBook = isbook
|
|
|
|
@ -2806,9 +2806,10 @@ namespace Myshipping.Application
|
|
|
|
|
/// 上传ocr文件
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="file"></param>
|
|
|
|
|
/// <param name="bookingId">订舱id</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[HttpPost("/BookingOrder/OcrUpFile")]
|
|
|
|
|
public async Task<string> OcrUpFile(IFormFile file)
|
|
|
|
|
public async Task<string> OcrUpFile(IFormFile file, long bookingId)
|
|
|
|
|
{
|
|
|
|
|
//未上传文件
|
|
|
|
|
if (file == null || file.Length == 0)
|
|
|
|
@ -2816,6 +2817,14 @@ namespace Myshipping.Application
|
|
|
|
|
throw Oops.Bah("未上传文件");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//保存到订舱
|
|
|
|
|
await AddFile(file, new BookingFileDto()
|
|
|
|
|
{
|
|
|
|
|
BookingId = bookingId,
|
|
|
|
|
TypeCode = "other",
|
|
|
|
|
TypeName = "其他"
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var originalFilename = file.FileName; // 文件原始名称
|
|
|
|
|
var fileSuffix = Path.GetExtension(file.FileName).ToLower(); // 文件后缀
|
|
|
|
|
|
|
|
|
|