0
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -35,5 +36,10 @@ namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
|
|||||||
/// 入库总数量
|
/// 入库总数量
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public decimal InStockQty { get; set; }
|
public decimal InStockQty { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 下单时间
|
||||||
|
/// </summary>
|
||||||
|
public DateTime FCreateDate { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -82,6 +82,7 @@ FROM
|
|||||||
t1.FID Fid,
|
t1.FID Fid,
|
||||||
t1.FBILLNO FBillNo,
|
t1.FBILLNO FBillNo,
|
||||||
t1.FDATE FDate,
|
t1.FDATE FDate,
|
||||||
|
t1.FCREATEDATE FCreateDate,
|
||||||
SUM(t1e.FQTY) Qty,
|
SUM(t1e.FQTY) Qty,
|
||||||
SUM(
|
SUM(
|
||||||
t1e_a.FSTOCKINFAILAUXQTY + t1e_a.FSTOCKINQUAAUXQTY
|
t1e_a.FSTOCKINFAILAUXQTY + t1e_a.FSTOCKINQUAAUXQTY
|
||||||
@@ -96,7 +97,8 @@ FROM
|
|||||||
GROUP BY
|
GROUP BY
|
||||||
t1.FID,
|
t1.FID,
|
||||||
t1.FBILLNO,
|
t1.FBILLNO,
|
||||||
t1.FDATE
|
t1.FDATE,
|
||||||
|
t1.FCREATEDATE
|
||||||
) t1Temp
|
) t1Temp
|
||||||
|
|
||||||
";
|
";
|
||||||
|
|||||||
Reference in New Issue
Block a user