|
@@ -773,17 +773,16 @@ namespace JLHHJSvr.Helper
|
|
|
{
|
|
|
if (mx.formulakind == 999)
|
|
|
{
|
|
|
- this.ProcessChuangWangPz(mx, interfaceList, mx.chastr, countDict[key]);
|
|
|
+ this.ProcessChuangWangPz(mx, interfaceList, mx.chastr, ++countDict[key]);
|
|
|
}
|
|
|
else if (mx.mtrlid > 0 && mx.formulakind == 1201)
|
|
|
{
|
|
|
- this.ProcessDingbuLianMianPz(mx, interfaceList, mx.chastr, countDict[key]);
|
|
|
+ this.ProcessDingbuLianMianPz(mx, interfaceList, mx.chastr, ++countDict[key]);
|
|
|
}
|
|
|
else if (mx.mtrlid > 0 && new int[] { 32, 12, 13, 14, 29 }.Contains(mx.formulakind.Value))
|
|
|
{
|
|
|
- this.ProcessWangMianBLPz(mx, interfaceList, mx.chastr, kindDict[mx.formulakind.Value], countDict[key]);
|
|
|
+ this.ProcessWangMianBLPz(mx, interfaceList, mx.chastr, kindDict[mx.formulakind.Value], ++countDict[key]);
|
|
|
}
|
|
|
- countDict[key]++;
|
|
|
}
|
|
|
}
|
|
|
|