username@email.com
4 天以前 e8e3122fdc4844202fb9e05477d47139e47a8aae
CY_ECommercePlatform/CY.WebForm/js/business/Order.js
@@ -115,7 +115,7 @@
//            html += '</p>';
//            html += '<br/><div style=\'text-align:right;\' ><input type="button" class="button" value="受 理" onclick="DoAcceptAll(\'' + ids + '\')"/>&nbsp;&nbsp;<input type="button" class="button" value="取 消" onclick="parent.dialog.close()"/></span></div>';
            //            dialog.open({ InnerHtml: html, Title: '批量确认受理', Width: 400, Height: 100, Modal: false });
            var msg = !needPrice ? ('确认批量受理所选' + orderShowIds + '订单?') : ('受理所选线上订单需要支付¥' + Float2(price) + '服务费,是否确认批量受理' + orderShowIds + '订单?');
            var msg = !needPrice ? ('确认批量受理所选订单?') : ('受理所选线上订单需要支付¥' + Float2(price) + '服务费,是否确认批量受理订单?');
            top.Dialog.confirm(msg, function () {
                DoAcceptAll(ids);
            });
@@ -1019,6 +1019,12 @@
    }
}
function Save() {
    if (document.getElementById('printCount').value == "" || parseFloat(document.getElementById('printCount').value) <= 0) {
        alert("订单数量为0,不能保存!");
            return false;
    }
    if (document.getElementById('txtSumPrice').value == "" || parseFloat(document.getElementById('txtSumPrice').value) <= 0) {
        if (!confirm("订单总价为0,是否继续保存?"))
            return false;