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

@@ -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
";