|
|
|
|
|
|
102
|
string Result = HttpUtility.UrlDecode(RequestString.GetQueryString("Result"));
|
102
|
string Result = HttpUtility.UrlDecode(RequestString.GetQueryString("Result"));
|
|
103
|
int isopen = RequestString.GetInt("isopen", -1);//是否公开
|
103
|
int isopen = RequestString.GetInt("isopen", -1);//是否公开
|
|
104
|
int jianhang = RequestString.GetInt("jianhang", -1);//省平台工单
|
104
|
int jianhang = RequestString.GetInt("jianhang", -1);//省平台工单
|
|
|
|
105
|
+ int orderSign = RequestString.GetInt("orderSign ", -1);
|
|
105
|
if (jianhang==4)
|
106
|
if (jianhang==4)
|
|
106
|
{
|
107
|
{
|
|
107
|
sql += " and F_InfoSource = '2580'";
|
108
|
sql += " and F_InfoSource = '2580'";
|
|
|
|
|
|
|
109
|
|
110
|
|
|
110
|
if (isopen > -1)
|
111
|
if (isopen > -1)
|
|
111
|
sql += " and isnull(F_IsOpen,0) =" + isopen;
|
112
|
sql += " and isnull(F_IsOpen,0) =" + isopen;
|
|
|
|
113
|
+ if (orderSign >= -1)
|
|
|
|
114
|
+ sql += " and F_OrderSign =" + orderSign;
|
|
112
|
|
115
|
|
|
113
|
string strworkorderid = HttpUtility.UrlDecode(RequestString.GetQueryString("strworkorderid"));
|
116
|
string strworkorderid = HttpUtility.UrlDecode(RequestString.GetQueryString("strworkorderid"));
|
|
114
|
if (strworkorderid.Trim() != "" && strworkorderid != "undefined")
|
117
|
if (strworkorderid.Trim() != "" && strworkorderid != "undefined")
|