| | |
| | | top.Dialog.open({ URL: "/Pages/business/CorporateClientsDetail.aspx?Keyid=" + personId, Title: "查看客户", Width: 900, Height: 580 }); |
| | | } |
| | | |
| | | |
| | | /* |
| | | 确认受理 |
| | | */ |
| | | function ToAccept(orderId) { |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | top.Dialog.confirm('确认撤回申请?', function () { |
| | | DoAccept(orderId); |
| | | }); |
| | | } |
| | | |
| | | |
| | | /* |
| | | 处理受理订单 |
| | | */ |
| | | var DoAccept = function (orderId) { |
| | | |
| | | window.submitUrl = "/Pages/business/InvoicingConfirm.aspx"; //设置当前页的提交路径 |
| | | |
| | | CallServer({ Target: "AcceptOrder", id: orderId }, function (data, textStatus) { |
| | | if ('1' == data) { |
| | | alertMsg('操作成功!'); |
| | | RefreshDIVOpener(); //关闭页面 |
| | | } else { |
| | | alertMsg(data); |
| | | //dialog.close(); |
| | | } |
| | | }); |
| | | } |
| | | |
| | | |
| | | </script> |
| | | <style type="text/css"> |
| | |
| | | <th width="60"> |
| | | 开票状态 |
| | | </th> |
| | | <th width="160"> |
| | | <th width="180"> |
| | | 操作 |
| | | |
| | | </th> |
| | |
| | | <a href='javascript:void(0)' title='付款登记' class='a_under' onclick='ViewFukuan("<%#Eval("Keyid")%>")'> 付款登记 </a> |
| | | <a href='javascript:void(0)' title='催款' class='a_under' onclick='ViewCuishou("<%#Eval("Keyid")%>")'> 催款 </a> |
| | | <a href='javascript:void(0)' title='收款' class='a_under' onclick='ViewShoukuan("<%#Eval("Keyid")%>","<%#Eval("Shenqingleixing")%>")'> 收款 </a> |
| | | <a href='javascript:void(0)' title='收款' class='a_under' onclick='ViewShouru("<%#Eval("Keyid")%>","<%#Eval("Shenqingleixing")%>")'> 收入确认 </a> |
| | | <a href='javascript:void(0)' title='收款' class='a_under' onclick='ViewShouru("<%#Eval("Keyid")%>","<%#Eval("Shenqingleixing")%>")'> 收入确认 </a> |
| | | |
| | | <a href='javascript:void(0)' title='撤回' class='a_under' onclick='ToAccept("<%#Eval("Keyid")%>")'> 撤回 </a> |
| | | </td> |
| | | |
| | | </tr> |