来源主表拖拽时判断是否为快速拖拽
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user