0
This commit is contained in:
parent
fdf1d59f3e
commit
6f3401179e
@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
@ -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
|
||||
|
||||
";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user