username@email.com
2024-10-17 b95525c2b6e4409a6b0ef3e9e598123828a4f73a
CY_ECommercePlatform/CY.WebForm/js/business/Order.js
@@ -50,6 +50,28 @@
    });
}
/*
确认受理
*/
function ToSuodan(orderId, orderShowId) {
    var msg ='确认锁单订单:' + orderShowId + '?';
    top.Dialog.confirm(msg, function () {
        CallServer({ Target: "SuodanOrder", id: orderId }, function (data, textStatus) {
            if ('1' == data) {
                alertMsg('操作成功!');
                RefreshDIVOpener();   //关闭页面
            } else {
                alertMsg('-1' == data ? '锁单过程中发生异常,请重新受理!' : '锁单失败!');
                //dialog.close();
            }
        });
    });
}
///批量受理
function ToAllAccept() {
    var commission = parseFloat(document.getElementById('txtCommission').value);