FnaInvoiceCheckFailInner.jsp
19.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
<%@page import="weaver.workflow.field.BrowserComInfo"%>
<%@page import="weaver.fna.general.FnaCommon"%>
<%@page import="weaver.systeminfo.label.LabelComInfo"%>
<%@page import="org.apache.commons.lang.StringEscapeUtils"%>
<%@ taglib uri="/WEB-INF/weaver.tld" prefix="wea"%>
<%@ taglib uri="/WEB-INF/tld/browser.tld" prefix="brow"%>
<%@page import="weaver.hrm.HrmUserVarify"%>
<%@page import="weaver.hrm.User"%>
<%@ page import="weaver.general.Util" %>
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ include file="/systeminfo/init_wev8.jsp" %>
<jsp:useBean id="rs" class="weaver.conn.RecordSet" scope="page" />
<jsp:useBean id="UserDefaultManager" class="weaver.docs.tools.UserDefaultManager" scope="session" />
<jsp:useBean id="WorkflowComInfo" class="weaver.workflow.workflow.WorkflowComInfo" scope="page" />
<jsp:useBean id="ResourceComInfo" class="weaver.hrm.resource.ResourceComInfo" scope="page" />
<%
if(!HrmUserVarify.checkUserRight("FnaInvoiceFail:Check", user)){
response.sendRedirect("/notice/noright.jsp") ;
return ;
}
String imagefilename = "/images/hdMaintenance_wev8.gif";
String titlename = "";
String needfav ="1";
String needhelp ="";
int detachable=Util.getIntValue(String.valueOf(session.getAttribute("detachable")),0);
int parentid=Util.getIntValue(request.getParameter("paraid"),0);
String nameQuery = Util.null2String(request.getParameter("nameQuery")).trim();
String advQry_requestname = Util.null2String(request.getParameter("advQry_requestname")).trim();
String advQry_interfaceUrl = Util.null2String(request.getParameter("advQry_interfaceUrl")).trim();
int advQry_handleStatus = Util.getIntValue(request.getParameter("advQry_handleStatus"),-1);
int advQry_interfaceType = Util.getIntValue(request.getParameter("advQry_interfaceType"),0);
String datecondition = Util.null2String(request.getParameter("createdateselect"));
String createdatefrom = Util.null2String(request.getParameter("createdatefrom")).trim();
String createdateto = Util.null2String(request.getParameter("createdateto")).trim();
String advQry_hrmIds = Util.null2String(request.getParameter("advQry_hrmIds"));
StringBuffer advQry_hrmnames = new StringBuffer();
if(!"".equals(advQry_hrmIds)){
String[] hrm = advQry_hrmIds.split(",");
int hrmLen = hrm.length;
for(int i = 0;i<hrmLen;i++){
String name = ResourceComInfo.getLastname(hrm[i]);
if(advQry_hrmnames.length()>0){
advQry_hrmnames.append(",");
}
advQry_hrmnames.append(name);
}
}
String workflowids = Util.null2String(request.getParameter("workflowids"));
StringBuffer workflowidname = new StringBuffer();
if(!"".equals(workflowids)){
String[] wfk = workflowids.split(",");
int wfkLen = wfk.length;
for(int i = 0;i<wfkLen;i++){
String name = WorkflowComInfo.getWorkflowname(wfk[i]);
if(workflowidname.length()>0){
workflowidname.append(",");
}
workflowidname.append(name);
}
}
%>
<html>
<head>
<LINK href="/css/Weaver_wev8.css" type=text/css rel=STYLESHEET>
<script language="javascript" src="/wui/theme/ecology8/jquery/js/zDialog_wev8.js"></script>
<script language="javascript" src="/wui/theme/ecology8/jquery/js/zDrag_wev8.js"></script>
<script language="javascript" src="/js/weaver_wev8.js"></script>
<script language="javascript" src="/fna/js/e8Common_wev8.js?r=3"></script>
</head>
<body style="overflow:hidden;">
<%@ include file="/systeminfo/TopTitle_wev8.jsp" %>
<%@ include file="/systeminfo/RightClickMenuConent_wev8.jsp" %>
<%
RCMenu += "{"+SystemEnv.getHtmlLabelName(384904,user.getLanguage())+",javascript:processedBatch(),_TOP} ";//标记已处理
RCMenuHeight += RCMenuHeightStep ;
RCMenu += "{"+SystemEnv.getHtmlLabelName(384905,user.getLanguage())+",javascript:notprocessedBatch(),_self} ";//标记未处理
RCMenuHeight += RCMenuHeightStep ;
%>
<%@ include file="/systeminfo/RightClickMenu_wev8.jsp" %>
<form id="form2" name="form2" method="post" action="/fna/invoice/invoiceWf/FnaInvoiceCheckFailInner.jsp">
<table id="topTitle" cellpadding="0" cellspacing="0">
<tr>
<td>
</td>
<td class="rightSearchSpan" style="text-align:right; width:500px!important">
<input type="button" value="<%=SystemEnv.getHtmlLabelName(384904,user.getLanguage()) %>"
class="e8_btn_top" onclick="processedBatch();"/><!-- 标记已处理 -->
<input type="button" value="<%=SystemEnv.getHtmlLabelName(384905,user.getLanguage()) %>"
class="e8_btn_top" onclick="notprocessedBatch();"/><!-- 标记未处理 -->
<input type="text" class="searchInput" id="nameQuery" name="nameQuery" value="<%=FnaCommon.escapeHtml(nameQuery) %>" /><!-- 快速搜索 -->
<span id="advancedSearch" class="advancedSearch"><%=SystemEnv.getHtmlLabelName(21995,user.getLanguage()) %></span><!-- 高级搜索 -->
<span title="<%=SystemEnv.getHtmlLabelName(23036,user.getLanguage()) %>" class="cornerMenu"></span><!-- 菜单 -->
</td>
</tr>
</table>
<div class="advancedSearchDiv" id="advancedSearchDiv">
<wea:layout type="4Col">
<wea:group context='<%=SystemEnv.getHtmlLabelName(15774, user.getLanguage()) %>'><!-- 搜索条件 -->
<wea:item><%=SystemEnv.getHtmlLabelName(1044,user.getLanguage())%></wea:item><!-- 相关流程 -->
<wea:item>
<input type=text class="inputstyle" id="advQry_requestname" name="advQry_requestname" style="width: 80%;" maxlength="500"
value="<%=FnaCommon.escapeHtmlNull(advQry_requestname) %>" />
</wea:item>
<wea:item><%=SystemEnv.getHtmlLabelName(99,user.getLanguage())%></wea:item><!-- 操作者 -->
<wea:item>
<brow:browser viewType="0" id="advQry_hrmIds" name="advQry_hrmIds" browserValue='<%=advQry_hrmIds %>'
browserUrl='<%=new BrowserComInfo().getBrowserurl("17")+"%3Fshow_virtual_org=-1%26resourceids=#id#" %>'
hasInput="true" isSingle="false" hasBrowser = "true" isMustInput="1"
completeUrl="/data.jsp?show_virtual_org=-1&type=17" temptitle='<%= SystemEnv.getHtmlLabelName(99,user.getLanguage())%>'
browserSpanValue='<%=FnaCommon.escapeHtml(advQry_hrmnames.toString()) %>'>
</brow:browser>
</wea:item>
<wea:item><%=SystemEnv.getHtmlLabelName(125749,user.getLanguage())%></wea:item><!-- 所属路径 -->
<wea:item>
<brow:browser viewType="0" name="workflowids"
browserValue='<%=workflowids %>'
getBrowserUrlFn="getFlowWindowUrl" hasInput="true"
isSingle="true" hasBrowser="true" isMustInput="1"
completeUrl="/data.jsp?type=workflowBrowser"
browserSpanValue='<%=FnaCommon.escapeHtml(workflowidname.toString())%>'>
</brow:browser>
</wea:item>
<wea:item><%=SystemEnv.getHtmlLabelName(383093,user.getLanguage())%></wea:item><!-- 接口类型 -->
<wea:item>
<select id="advQry_interfaceType" name="advQry_interfaceType">
<option value="0" <%=advQry_interfaceType==0?"selected=\"selected\"":"" %>><%=SystemEnv.getHtmlLabelName(332,user.getLanguage())%></option><!-- 全部 -->
<option value="1" <%=advQry_interfaceType==1?"selected=\"selected\"":"" %>><%=SystemEnv.getHtmlLabelName(384556,user.getLanguage())%></option><!-- 百望 -->
</select>
</wea:item>
<wea:item><%=SystemEnv.getHtmlLabelName(130838,user.getLanguage())%></wea:item><!-- 接口地址 -->
<wea:item>
<input type=text class="inputstyle" id="advQry_interfaceUrl" name="advQry_interfaceUrl" style="width: 80%;" maxlength="500"
value="<%=FnaCommon.escapeHtmlNull(advQry_interfaceUrl) %>" />
</wea:item>
<wea:item><%=SystemEnv.getHtmlLabelName(33326,user.getLanguage())%></wea:item><!-- 处理情况 -->
<wea:item>
<select id="advQry_handleStatus" name="advQry_handleStatus">
<option value="-1" <%=advQry_handleStatus==-1?"selected=\"selected\"":"" %>><%=SystemEnv.getHtmlLabelName(332,user.getLanguage())%></option><!-- 全部 -->
<option value="0" <%=advQry_handleStatus==0?"selected=\"selected\"":"" %>><%=SystemEnv.getHtmlLabelName(15746,user.getLanguage())%></option><!-- 未处理 -->
<option value="1" <%=advQry_handleStatus==1?"selected=\"selected\"":"" %>><%=SystemEnv.getHtmlLabelName(1454,user.getLanguage())%></option><!-- 已处理 -->
</select>
</wea:item>
<wea:item><%=SystemEnv.getHtmlLabelName(384906,user.getLanguage())%></wea:item><!-- 识别时间 -->
<wea:item>
<span style='float:left;display:inline-block;'>
<select name="createdateselect" id="createdateselect" onchange="changeDate(this,'createdate2');" class="inputstyle" size=1>
<option value="0" <% if(datecondition.equals("0")) {%>selected<%}%>><%=SystemEnv.getHtmlLabelName(332, user.getLanguage()) %></option>
<option value="1" <% if(datecondition.equals("1")) {%>selected<%}%>><%=SystemEnv.getHtmlLabelName(15537, user.getLanguage()) %></option>
<option value="2" <% if(datecondition.equals("2")) {%>selected<%}%>><%=SystemEnv.getHtmlLabelName(15539, user.getLanguage()) %></option>
<option value="3" <% if(datecondition.equals("3")) {%>selected<%}%>><%=SystemEnv.getHtmlLabelName(15541, user.getLanguage()) %></option>
<option value="4" <% if(datecondition.equals("4")) {%>selected<%}%>><%=SystemEnv.getHtmlLabelName(21904, user.getLanguage()) %></option>
<option value="5" <% if(datecondition.equals("5")) {%>selected<%}%>><%=SystemEnv.getHtmlLabelName(15384, user.getLanguage()) %></option>
<option value="6" <% if(datecondition.equals("6")) {%>selected<%}%>><%=SystemEnv.getHtmlLabelName(32530, user.getLanguage()) %></option>
</select>
</span>
<span style='float:left;margin-left: 10px;padding-top: 5px;'>
<span id="createdate2" style="display:<%if(!datecondition.equals("6")) {%>none<%} %>" >
<button type="button" class="calendar" id="SelectDate" onclick="getDate(createdatefromspan,createdatefrom)"></button>
<span id="createdatefromspan"><%=createdatefrom %></span>
- <button type="button" class="calendar" id="SelectDate2" onclick="getDate(createdatetospan,createdateto)"></button>
<span id="createdatetospan"><%=createdateto %></span>
</span>
<input type="hidden" name="createdatefrom" value="<%=createdatefrom %>">
<input type="hidden" name="createdateto" value="<%=createdateto %>">
</span>
</wea:item>
</wea:group>
<wea:group context="">
<wea:item type="toolbar">
<input class="e8_btn_submit" type="button" id="advSubmit" onclick="onBtnSearchClick('from_advSubmit');"
value="<%=SystemEnv.getHtmlLabelName(527,user.getLanguage())%>"/><!-- 查询 -->
<input class="e8_btn_submit" type="button" id="advReset" onclick="resetCondtion();"
value="<%=SystemEnv.getHtmlLabelName(2022,user.getLanguage())%>"/><!-- 重置 -->
<input class="e8_btn_cancel" type="button" id="cancel"
value="<%=SystemEnv.getHtmlLabelName(201,user.getLanguage())%>"/><!-- 取消 -->
</wea:item>
</wea:group>
</wea:layout>
</div>
<%
//设置好搜索条件
String backFields = " a.id,a.checktime,a.checkdate,a.requestid,a.userid,a.interfaceType,a.interfaceUrl,a.failMsg,a.handleStatus ";
String fromSql = " from FnaInvoiceCheckFailLog a "+
" left join hrmdepartment c on c.id = a.userid "+
" left join hrmresourcemanager d on d.id = a.userid ";
String sqlWhere = " where 1=1 ";
if(!"".equals(nameQuery)){
sqlWhere += " and b.requestname like '%"+StringEscapeUtils.escapeSql(nameQuery)+"%' ";
}
if(!"".equals(advQry_requestname)){
sqlWhere += " and b.requestname like '%"+StringEscapeUtils.escapeSql(advQry_requestname)+"%' ";
}
if(!"".equals(advQry_hrmIds)){
sqlWhere += " and a.userid in ("+StringEscapeUtils.escapeSql(advQry_hrmIds)+")";
}
if(!"".equals(workflowids)){
sqlWhere += " and b.workflowid in ("+StringEscapeUtils.escapeSql(workflowids)+")";
}
if(advQry_interfaceType == 1){
sqlWhere += " and a.interfaceType = '百望'";
}else if(advQry_interfaceType == 2){
sqlWhere += " and a.interfaceType = '国信'";
}
if(!"".equals(advQry_interfaceUrl)){
sqlWhere += " and a.interfaceUrl like '%"+StringEscapeUtils.escapeSql(advQry_interfaceUrl)+"%' ";
}
if(advQry_handleStatus != -1){
sqlWhere += " and a.handleStatus = "+advQry_handleStatus;
}
if(datecondition.equals("1")){
String date = TimeUtil.getDateByOption(""+datecondition,"0");
sqlWhere += " and a.checkdate = '"+StringEscapeUtils.escapeSql(date)+"' ";
}else if(datecondition.equals("6")){
if(!"".equals(createdatefrom)){
sqlWhere += " and a.checkdate >= '"+StringEscapeUtils.escapeSql(createdatefrom)+"' ";
}
if(!"".equals(createdateto)){
sqlWhere += " and a.checkdate <= '"+StringEscapeUtils.escapeSql(createdateto)+"' ";
}
}else if(datecondition.equals("2") || datecondition.equals("3") || datecondition.equals("4") || datecondition.equals("5")){
createdatefrom = TimeUtil.getDateByOption(""+datecondition,"0");
createdateto = TimeUtil.getDateByOption(""+datecondition,"1");
sqlWhere = sqlWhere + " and a.checkdate >= '"+createdatefrom+"' and a.checkdate <= '"+createdateto+"'";
}
String orderBy = " a.id ";
String sqlprimarykey = "a.id";
// out.println("select "+backFields+" "+fromSql+" "+sqlWhere+" order by "+orderBy);
String tableString=""+
"<table instanceid=\"FNA_INVOICE_CHECKFIAL_INNER_LIST\" pageId=\""+PageIdConst.FNA_INVOICE_CHECKFIAL_INNER_LIST+"\" "+
" pagesize=\""+PageIdConst.getPageSize(PageIdConst.FNA_INVOICE_CHECKFIAL_INNER_LIST,user.getUID(),PageIdConst.FNA)+"\" tabletype=\"checkbox\">"+
"<sql backfields=\""+Util.toHtmlForSplitPage(backFields)+"\" sqlform=\""+Util.toHtmlForSplitPage(fromSql)+"\" sqlwhere=\""+Util.toHtmlForSplitPage(sqlWhere)+"\" sqlorderby=\""+Util.toHtmlForSplitPage(orderBy)+"\" "+
" sqlprimarykey=\""+Util.toHtmlForSplitPage(sqlprimarykey)+"\" sqlsortway=\"desc\" />"+
"<head>"+
"<col width=\"10%\" text=\""+SystemEnv.getHtmlLabelName(384906,user.getLanguage())+"\" column=\"checktime\" orderkey=\"checktime\" />"+//识别时间
"<col width=\"20%\" text=\""+SystemEnv.getHtmlLabelName(1044,user.getLanguage())+"\" column=\"requestid\" orderkey=\"requestid\" "+//相关流程
" transmethod=\"weaver.fna.invoice.common.FnaInvoiceCommon.getWfNewLink\" otherpara=\""+user.getLanguage()+"\" />"+
"<col width=\"10%\" text=\""+SystemEnv.getHtmlLabelName(99,user.getLanguage())+"\" column=\"userid\" orderkey=\"userid\" "+//操作者
" transmethod=\"weaver.fna.invoice.common.FnaInvoiceCommon.getHrmresourceName\" otherpara=\"column:requestid\" />"+
"<col width=\"10%\" text=\""+SystemEnv.getHtmlLabelName(383093,user.getLanguage())+"\" column=\"interfaceType\" orderkey=\"interfaceType\" />"+//接口类型
"<col width=\"20%\" text=\""+SystemEnv.getHtmlLabelName(130838,user.getLanguage())+"\" column=\"interfaceUrl\" orderkey=\"interfaceUrl\" />"+//接口地址
"<col width=\"20%\" text=\""+SystemEnv.getHtmlLabelName(25700,user.getLanguage())+"\" column=\"failMsg\" orderkey=\"failMsg\" />"+//错误信息
"<col width=\"10%\" text=\""+SystemEnv.getHtmlLabelName(33326,user.getLanguage())+"\" column=\"handleStatus\" orderkey=\"handleStatus\" "+//处理情况
" transmethod=\"weaver.fna.invoice.common.FnaInvoiceCommon.getHandleStatus\" otherpara=\"column:requestid\" />"+
"</head>"+
" <operates>"+
" <popedom transmethod=\"weaver.fna.invoice.common.FnaInvoiceCommon.getHandleStatus_popedom\" otherpara=\"column:requestid\" ></popedom> "+
" <operate href=\"javascript:processed();\" text=\""+SystemEnv.getHtmlLabelName(384904,user.getLanguage())+"\" index=\"0\"/>"+//标记已处理
" <operate href=\"javascript:notprocessed();\" text=\""+SystemEnv.getHtmlLabelName(384905,user.getLanguage())+"\" index=\"1\"/>"+//标记未处理
" </operates>"+
"</table>";
%>
<wea:layout type="1col">
<wea:group context="" attributes="{'groupDisplay':'none'}">
<wea:item attributes="{'isTableList':'true'}">
<input type="hidden" name="pageId" id="pageId" value="<%=PageIdConst.FNA_INVOICE_CHECKFIAL_INNER_LIST %>" />
<wea:SplitPageTag tableString='<%=tableString%>' mode="run" />
</wea:item>
</wea:group>
</wea:layout>
</form>
<script type="text/javascript">
var _Label33574 = "<%=SystemEnv.getHtmlLabelName(33574,user.getLanguage()) %>";//正在处理数据,请不要离开该页面,请稍等...
function getFlowWindowUrl(){
return "/systeminfo/BrowserMain.jsp?url=/workflow/workflow/WorkflowTypeBrowser.jsp";
}
function query(){
document.getElementById("form2").submit();
}
function onBtnSearchClick(from_advSubmit){
if(from_advSubmit=="from_advSubmit"){
jQuery("#nameQuery").val(jQuery("#advQry_requestname").val());
}else{
jQuery("#advQry_requestname").val(jQuery("#nameQuery").val());
}
form2.submit();
}
function processed(ids){
var _data = "operation=processed&id="+ids;
//确认要标记已处理吗
top.Dialog.confirm("<%=SystemEnv.getHtmlLabelName(384932,user.getLanguage()) %>",
function(){
openNewDiv_FnaBudgetViewInner1(_Label33574);
jQuery.ajax({
url : "/fna/invoice/invoiceWf/FnaInvoiceWfSetOp.jsp",
type : "post",
cache : false,
processData : false,
data : _data,
dataType : "json",
success: function do4Success(_json){
try{
try{closeNewDiv_FnaBudgetViewInner1();}catch(ex1){}
top.Dialog.alert(_json.msg);
if(_json.flag){
window._table.reLoad();
}
}catch(e1){
}
}
});
},
function(){}
);
}
function notprocessed(ids){
var _data = "operation=notprocessed&id="+ids;
//确认要标记未处理吗
top.Dialog.confirm("<%=SystemEnv.getHtmlLabelName(384933,user.getLanguage()) %>",
function(){
openNewDiv_FnaBudgetViewInner1(_Label33574);
jQuery.ajax({
url : "/fna/invoice/invoiceWf/FnaInvoiceWfSetOp.jsp",
type : "post",
cache : false,
processData : false,
data : _data,
dataType : "json",
success: function do4Success(_json){
try{
try{closeNewDiv_FnaBudgetViewInner1();}catch(ex1){}
top.Dialog.alert(_json.msg);
if(_json.flag){
window._table.reLoad();
}
}catch(e1){
}
}
});
},
function(){}
);
}
function processedBatch(){
var ids = _xtable_CheckedCheckboxId();
if(ids==""){
top.Dialog.alert("<%=SystemEnv.getHtmlLabelName(384931,user.getLanguage()) %>");//请先选择需要标记的数据
return;
}
var _data = "operation=processedBatch&ids="+ids;
//确认要标记未处理吗
top.Dialog.confirm("<%=SystemEnv.getHtmlLabelName(384933,user.getLanguage()) %>",
function(){
openNewDiv_FnaBudgetViewInner1(_Label33574);
jQuery.ajax({
url : "/fna/invoice/invoiceWf/FnaInvoiceWfSetOp.jsp",
type : "post",
cache : false,
processData : false,
data : _data,
dataType : "json",
success: function do4Success(_json){
try{
try{closeNewDiv_FnaBudgetViewInner1();}catch(ex1){}
top.Dialog.alert(_json.msg);
if(_json.flag){
window._table.reLoad();
}
}catch(e1){
}
}
});
},
function(){}
);
}
function notprocessedBatch(){
var ids = _xtable_CheckedCheckboxId();
if(ids==""){
top.Dialog.alert("<%=SystemEnv.getHtmlLabelName(384931,user.getLanguage()) %>");//请先选择需要标记的数据
return;
}
var _data = "operation=notprocessedBatch&ids="+ids;
//确认要标记未处理吗
top.Dialog.confirm("<%=SystemEnv.getHtmlLabelName(384933,user.getLanguage()) %>",
function(){
openNewDiv_FnaBudgetViewInner1(_Label33574);
jQuery.ajax({
url : "/fna/invoice/invoiceWf/FnaInvoiceWfSetOp.jsp",
type : "post",
cache : false,
processData : false,
data : _data,
dataType : "json",
success: function do4Success(_json){
try{
try{closeNewDiv_FnaBudgetViewInner1();}catch(ex1){}
top.Dialog.alert(_json.msg);
if(_json.flag){
window._table.reLoad();
}
}catch(e1){
}
}
});
},
function(){}
);
}
</script>
<script language="javascript" src="/js/datetime_wev8.js"></script>
<script language="javascript" src="/js/JSDateTime/WdatePicker_wev8.js"></script>
</body>
</html>