1
This commit is contained in:
parent
acf50fa155
commit
bb11423721
@ -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)));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user