This commit is contained in:
liqionghai 2025-08-15 17:08:45 +08:00
parent acf50fa155
commit bb11423721

View File

@ -143,14 +143,16 @@ namespace Pilot_KD_Parino.Common
#region
Row newRowfour = table.InsertRow(previousRowfour, 1);
newRowfour.Cells[1].ReplaceText("{9}", Convert.ToString(Rows[0][11]));
int j = 0;
foreach (var Row in Rows)
{
Row newRowthree = table.InsertRow(previousRowthree, 1);
Row newRowthree = table.InsertRow(previousRowthree, 1+j);
for (int i = 0; i < 9; i++)
{
newRowthree.Cells[i].ReplaceText("{" + i.ToString() + "}", Convert.ToString(Row[i]));
}
document.ReplaceText("{10}", Convert.ToString(Row[10]));
j++;
}
Row newRow = table.InsertRow(previousRow, 1);
newRow.Cells[0].ReplaceText("{0}", string.Format("{0}、{1}", ConvertToChineseUppercase(Index), Convert.ToString(item)));