| | |
| | | } |
| | | //删除 |
| | | function onDeles(orderid) { |
| | | top.Dialog.open({ URL: "/Pages/business/DeliverWorkBookPrintDetail.aspx?orderid=" + orderid, Title: "批量打印送货单", Width: 1000, Height: 900 }); |
| | | var keyid = ""; |
| | | var num = 0; |
| | | $(".SelectCheck:checked").each(function (ii, vv) { |
| | | keyid = keyid + "," + $(vv).attr("value_kid"); |
| | | num++; |
| | | }); |
| | | if (num == 0) { |
| | | alertMsg("未选中任何学校"); |
| | | return; |
| | | } |
| | | top.Dialog.open({ URL: "/Pages/business/DeliverWorkBookPrintDetail.aspx?orderid=" + keyid, Title: "批量打印送货单", Width: 1000, Height: 900 }); |
| | | |
| | | |
| | | } |
| | | |
| | | //批量删除 |
| | |
| | | <HeaderTemplate> |
| | | <table class="tableStyle"> |
| | | <tr> |
| | | <th width="25"></th> |
| | | <th width="30" style="text-align: center"> |
| | | 编号 |
| | | </th> |
| | |
| | | </HeaderTemplate> |
| | | <ItemTemplate> |
| | | <tr> |
| | | |
| | | <td> |
| | | <input type="checkbox" class="SelectCheck" value_kid="<%#Eval("id")%>" /> |
| | | </td> |
| | | <td style="text-align: center"> |
| | | <%#Container.ItemIndex + 1%> |
| | | </td> |