11
This commit is contained in:
@@ -145,8 +145,26 @@ namespace FineUIPro.Web.HJGL.JoinMarking
|
|||||||
}
|
}
|
||||||
if (tb1 != null)
|
if (tb1 != null)
|
||||||
{
|
{
|
||||||
|
int i = 0;
|
||||||
foreach (DataRow row in tb1.Rows)
|
foreach (DataRow row in tb1.Rows)
|
||||||
{
|
{
|
||||||
|
i++;
|
||||||
|
if (i%4 == 1)
|
||||||
|
{
|
||||||
|
row["JOT_JointStatus"] = "正常";
|
||||||
|
}
|
||||||
|
else if (i % 4 == 2)
|
||||||
|
{
|
||||||
|
row["JOT_JointStatus"] = "扩透";
|
||||||
|
}
|
||||||
|
else if (i % 4 == 3)
|
||||||
|
{
|
||||||
|
row["JOT_JointStatus"] = "点口";
|
||||||
|
}
|
||||||
|
else if (i % 4 == 0)
|
||||||
|
{
|
||||||
|
row["JOT_JointStatus"] = "已切除";
|
||||||
|
}
|
||||||
string JOT_ID = row["JOT_ID"].ToString();
|
string JOT_ID = row["JOT_ID"].ToString();
|
||||||
if (DetectionTypeDic.ContainsKey(JOT_ID))
|
if (DetectionTypeDic.ContainsKey(JOT_ID))
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user