来源主表拖拽时判断是否为快速拖拽

This commit is contained in:
cyf
2026-07-14 13:37:31 +08:00
parent 326fccf8fe
commit 43ae774164
2 changed files with 19 additions and 7 deletions
+12 -1
View File
@@ -4764,7 +4764,18 @@ namespace Lskj.PubBill
}
else
{
this.AddRowsToGridView(table, unionModel);
if (!this.BillModel.IsFastDragAddDetail)
{
this.AddRowsToGridView(table, unionModel);
}
else
{
// 全部行转数组
DataRow[] dragRows = table.Select();
this.AddRowsToGridViewFast(dragRows);
}
}