Compare commits

..

No commits in common. "925244edb37f7360e62de49acf657e97a3c5b018" and "d916910db9522c6b528c744c44fdac1d900f1aef" have entirely different histories.

2 changed files with 0 additions and 10 deletions

Binary file not shown.

View File

@ -314,11 +314,6 @@ namespace BLL
} }
return isoRate; return isoRate;
} }
/// <summary>
/// 获取基础焊口数量
/// </summary>
/// <param name="pipelineId"></param>
/// <returns></returns>
public static int countBaseWeldJointCode(string pipelineId) public static int countBaseWeldJointCode(string pipelineId)
{ {
string sql = "select count(1) from Pipeline_WeldJoint where PipelineId=@PipelineId"; string sql = "select count(1) from Pipeline_WeldJoint where PipelineId=@PipelineId";
@ -328,11 +323,6 @@ namespace BLL
int count = SQLHelper.getIntValue(sql, parameters); int count = SQLHelper.getIntValue(sql, parameters);
return count; return count;
} }
/// <summary>
/// 获取试压包明细表焊口数量
/// </summary>
/// <param name="pipelineId"></param>
/// <returns></returns>
public static int countWeldJointCode(string pipelineId) public static int countWeldJointCode(string pipelineId)
{ {
string sql = @"select WeldJointCode=(stuff((select ','+ WeldJonintCode from PTP_PipelineList where PipelineId=@PipelineId and isALL=0 for xml path('')),1,1,''))"; string sql = @"select WeldJointCode=(stuff((select ','+ WeldJonintCode from PTP_PipelineList where PipelineId=@PipelineId and isALL=0 for xml path('')),1,1,''))";