问题描述
用js在前端写了打印选择模版的代码,目前只能选中一条进行打印,但是现在出现需要将多选的记录全都打印出来,那需要如何修改,我更改过后例如我选择两条记录会将ID直接传到同个页面,不会自动分成两个打印的界面。现在代码:varseaExportBillLadingId=GetSelectedIds();if(!seaExportBillLadingId||seaExportBillLadingId==""||seaExportBillLadingId.indexOf(",")>0){alert("请选择一条信息进行打印!");returnfalse;}varcommand=ShowDialog("~/SeaExport/SeaExportBillLadingForPrint.htm",null,130,250);if(command){if(command["overWidth"]){window.open(systemValue.FineReportUrl+"xmnsea/"+command["args"]+".cpt&op=write&SeaExportBillLadingId="+seaExportBillLadingId);window.open(systemValue.FineReportUrl+"xmnsea/BillLading_attachment.cpt&op=write&SeaExportBillLadingId="+seaExportBillLadingId);}else{window.open(systemValue.FineReportUrl+"xmnsea/"+command["args"]+".cpt&op=write&SeaExportBillLadingId="+seaExportBillLadingId);}}returnfalse;}