This commit is contained in:
朱斌 2025-09-02 15:16:29 +08:00
parent fdf1d59f3e
commit 6f3401179e
2 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@ -35,5 +36,10 @@ namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
/// 入库总数量
/// </summary>
public decimal InStockQty { get; set; }
/// <summary>
/// 下单时间
/// </summary>
public DateTime FCreateDate { get; set; }
}
}

View File

@ -82,6 +82,7 @@ FROM
t1.FID Fid,
t1.FBILLNO FBillNo,
t1.FDATE FDate,
t1.FCREATEDATE FCreateDate,
SUM(t1e.FQTY) Qty,
SUM(
t1e_a.FSTOCKINFAILAUXQTY + t1e_a.FSTOCKINQUAAUXQTY
@ -96,7 +97,8 @@ FROM
GROUP BY
t1.FID,
t1.FBILLNO,
t1.FDATE
t1.FDATE,
t1.FCREATEDATE
) t1Temp
";