Index: ssts-web/src/main/webapp/disinfectsystem/touchScreen/recycle/awaitForRecycleList.jsp =================================================================== diff -u -r14975 -r15218 --- ssts-web/src/main/webapp/disinfectsystem/touchScreen/recycle/awaitForRecycleList.jsp (.../awaitForRecycleList.jsp) (revision 14975) +++ ssts-web/src/main/webapp/disinfectsystem/touchScreen/recycle/awaitForRecycleList.jsp (.../awaitForRecycleList.jsp) (revision 15218) @@ -396,6 +396,10 @@ $("#divselect cite").html(groupText); $("#inputselect").val(groupid); } + var appType = CookieManager.getCookie("appType"); + if(appType != null && appType != ''){ + $("#appTypeSelect option[value='" + appType + "']").attr("selected", "selected"); + } refreshPage(); firstPage(); updateHeaderStatus(); @@ -675,11 +679,12 @@ function refreshPage(){ $("#awaitForRecycleTable").empty(); var id = $("#inputselect").val(); + var appType = $("#appTypeSelect").val(); $.ajax({ type:'post', url:WWWROOT + '/disinfectSystem/recyclingRecordAction!getAwaitForRecyclingInvoicePlan.do', dataType:'json', - data : {groupId:""+id+ ""}, + data : {groupId:""+id+ "",appType:"" + appType + ""}, success:function(msg){ getData(msg); }, @@ -817,6 +822,7 @@ var appType = $("#appTypeSelect").val(); CookieManager.setCookie("groupId",id); CookieManager.setCookie("groupText",txt); + CookieManager.setCookie("appType",appType); $.ajax({ type:'post', url:WWWROOT + '/disinfectSystem/recyclingRecordAction!getAwaitForRecyclingInvoicePlan.do',