booking_auth_dev
wanghaomei 2 years ago
commit 987e0933bb

@ -18,6 +18,7 @@ namespace Myshipping.Application.Entity
/// <summary>
/// 业务状态
/// </summary>
[Description("业务状态")]
public string BSSTATUS { get; set; }
/// <summary>
/// 业务状态名称

@ -204,12 +204,15 @@ namespace Myshipping.Application
{
JsonUtil.PropToUpper(input, "ORDNO", "BSSTATUS", "YardContract", "YardContractTel", "YardContractEmail");
JsonUtil.TrimFields(input);
//////
if (input.ctnInputs!=null) {
var groupList = input.ctnInputs.Where(x => x.CTNNUM > 0).GroupBy(c => c.CTNALL).Select(g => $"{g.Key}*{g.Sum(gg => gg.CTNNUM)}");
input.CNTRTOTAL = string.Join(" / ", groupList);
}
var entity = input.Adapt<BookingOrder>();
await _rep.InsertAsync(entity);
if (input.ctnInputs != null) {
foreach (var item in input.ctnInputs)
{
var ctnentity = item.Adapt<BookingCtn>();
@ -222,6 +225,8 @@ namespace Myshipping.Application
await _ctndetailrep.InsertAsync(ctndetail);
}
}
}
////添加booking日志
await _bookinglog.InsertAsync(new BookingLog
{
@ -261,14 +266,18 @@ namespace Myshipping.Application
JsonUtil.PropToUpper(input, "ORDNO", "BSSTATUS", "YardContract", "YardContractTel", "YardContractEmail");
JsonUtil.TrimFields(input);
if (input.ctnInputs!=null) {
var groupList = input.ctnInputs.Where(x => x.CTNNUM > 0).GroupBy(c => c.CTNALL).Select(g => $"{g.Key}*{g.Sum(gg => gg.CTNNUM)}");
input.CNTRTOTAL = string.Join(" / ", groupList);
}
var main = await _rep.FirstOrDefaultAsync(u => u.Id == input.Id);
var entity = input.Adapt<BookingOrder>();
await _rep.AsUpdateable(entity).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync();
var ctnlist = await _repCtn.AsQueryable().Where(x => x.BILLID == input.Id).Select(x => x.Id).ToListAsync();
await _repCtn.DeleteAsync(x => x.BILLID == input.Id);
await _ctndetailrep.DeleteAsync(x => ctnlist.Contains((long)x.CTNID));
if (input.ctnInputs != null) {
foreach (var item in input.ctnInputs)
{
var ctnentity = item.Adapt<BookingCtn>();
@ -281,6 +290,8 @@ namespace Myshipping.Application
await _ctndetailrep.InsertAsync(ctndetail);
}
}
}
bool flag = true;
long bid = 0;
foreach (PropertyDescriptor descriptor in TypeDescriptor.GetProperties(entity))
@ -321,7 +332,7 @@ namespace Myshipping.Application
await _bookinglogdetail.InsertReturnSnowflakeIdAsync(new BookingLogDetail
{
PId = bid,
Field = name,
Field = descriptor.Description,
OldValue = _oldvalue,
NewValue = _value,
});

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using Myshipping.Core;
namespace Myshipping.Application
@ -17,6 +18,7 @@ namespace Myshipping.Application
/// <summary>
/// 业务编号
/// </summary>
[Description("业务编号")]
public string BSNO { get; set; }
/// <summary>
/// 业务状态

Loading…
Cancel
Save