This commit is contained in:
chi
2024-01-09 14:49:36 +09:00
parent aef0c375ad
commit d76b40ddf0

View File

@@ -1515,6 +1515,14 @@ namespace FEQ0000
var row = this.dsPurchase.EETGW_PurchaseEB.Where(t => t.idx == rowidx).First(); var row = this.dsPurchase.EETGW_PurchaseEB.Where(t => t.idx == rowidx).First();
rows.Add(row); rows.Add(row);
} }
if (rows.Any() == false)
{
if (this.bs.Count > 0)
{
var drv = this.bs.Current as DataRowView;
rows.Add(drv.Row as dsPurchase.EETGW_PurchaseEBRow);
}
}
return rows; return rows;
} }