This commit is contained in:
余宇波 2025-05-25 22:20:46 +08:00
parent 27cccae19c
commit c1efb21bf5
2 changed files with 9 additions and 1 deletions

View File

@ -183,7 +183,14 @@ namespace MyCode.Project.Domain.Message.Response.InvoiceOrder
/// <summary>
/// 每包数量
/// </summary>
public decimal CuseQty { get; set; }
public decimal CuseQty { get; set; }
/// <summary>
/// Desc:销售订单号
/// Default:
/// Nullable:True
/// </summary>
public string FDEMANDBILLNO { get; set; }
}
}

View File

@ -86,6 +86,7 @@ namespace MyCode.Project.Repositories
,[PurchaseOrderItemId]
,[FSupplierLot]
,[MSSSupplierLot]
,(select FDEMANDBILLNO from [PurchaseOrderItem] bbb where bbb.id=b.[PurchaseOrderItemId] ) as FDEMANDBILLNO
,[PurchaseEntityId] FROM [InvoiceOrder] a left join [InvoiceOrderItem] b on a.id=b.[InvoiceOrderId] ";
var list= this.SelectListPage<InvoiceOrderPageList>(sql, where, search.Page, search.PageSize, " [CreateTime] desc ,FormId,MaterialCode ");
Guid fid = Guid.Empty;