海运出口列表修改

dev
cjy 2 weeks ago
parent f4598236ba
commit e8f49ff065

@ -107,7 +107,7 @@ namespace DS.WMS.Core.Op.Dtos
/// <summary>
/// 列表数据
/// </summary>
public List<SeaExportShortListRes> List { get; set; }
public List<SeaExportRes> List { get; set; }
/// <summary>
/// 合计数

@ -1570,4 +1570,8 @@ public class SeaExportRes
/// 服务项目
/// </summary>
public string? ServiceItem { get; set; }
/// <summary>
/// 分单数
/// </summary>
public int PartCount { get; set; }
}

@ -76,7 +76,7 @@ namespace DS.WMS.Core.Op.Method
.InnerJoin<BusinessFeeStatus>((a, b) => a.Id == b.BusinessId)
//.LeftJoin<SysOrg>((a, b, c) => a.SaleOrgId == c.Id, "shippingweb8_dev.sys_org")
//.LeftJoin<SysOrg>((a, b, c) => a.SaleDeptId == c.Id, "shippingweb8_dev.sys_org")
.Select((a, b) => new SeaExportShortListRes()
.Select((a, b) => new SeaExportRes()
{
//SaleDeptName = c.OrgName,
},

@ -145,7 +145,7 @@ public partial class SeaExportService : ISeaExportService
.InnerJoin<BusinessFeeStatus>((a, b) => a.Id == b.BusinessId)
//.LeftJoin<SysOrg>((a, b, c) => a.SaleOrgId == c.Id, "shippingweb8_dev.sys_org")
//.LeftJoin<SysOrg>((a, b, c) => a.SaleDeptId == c.Id, "shippingweb8_dev.sys_org")
.Select((a, b) => new SeaExportShortListRes()
.Select((a, b) => new SeaExportRes()
{
//SaleDeptName = c.OrgName,
QuotePrice = SqlFunc.Subqueryable<BusinessCtnPrice>()

Loading…
Cancel
Save