username@email.com
2024-12-16 176106cf1be8bb0dfd9921180b26d7cc9efb7a3d
CY_ECommercePlatform/CY.WebForm/Pages/business/InvoicingConfirm.aspx
@@ -123,6 +123,40 @@
            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">
@@ -296,7 +330,7 @@
                         <th width="60">
                           开票状态
                        </th>
                         <th width="160">
                         <th width="180">
                          操作
                        </th>
@@ -380,7 +414,9 @@
                                         <a href='javascript:void(0)' title='付款登记' class='a_under' onclick='ViewFukuan("<%#Eval("Keyid")%>")'> 付款登记    </a>  &nbsp;&nbsp;&nbsp;
                                      <a href='javascript:void(0)' title='催款' class='a_under' onclick='ViewCuishou("<%#Eval("Keyid")%>")'> 催款    </a> &nbsp;&nbsp;&nbsp;
                                     <a href='javascript:void(0)' title='收款' class='a_under' onclick='ViewShoukuan("<%#Eval("Keyid")%>","<%#Eval("Shenqingleixing")%>")'> 收款    </a> &nbsp;&nbsp;&nbsp;
                                       <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> &nbsp;&nbsp;&nbsp;
                                      <a href='javascript:void(0)' title='撤回' class='a_under' onclick='ToAccept("<%#Eval("Keyid")%>")'> 撤回    </a>
                                </td>
                                
                            </tr>