This commit is contained in:
2025-07-22 15:14:10 +08:00
parent 81c63c1fc9
commit 7f31d9664f
3 changed files with 6 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ namespace MyCode.Project.Repositories.ZHMD
public List<WMStoJackyunInventoryMovementView1> GetList(DateTime now)
{
now = now.Date;
string sql = $@"select TOP 100 * from [WMStoJackyun_InventoryMovement_View]
string sql = $@"select 0 Status , * from [WMStoJackyun_InventoryMovement_View]
where [过账日期]>='{now}'
ORDER BY [单据号],[单据行号]";
var list = this.SelectList<WMStoJackyunInventoryMovementView1>(sql);