username@email.com
2025-01-20 dc7b6c75f98b6924b7e091ee7ac6551470652d78
CY_ECommercePlatform/CY.WebForm/js/business/Order.js
@@ -657,4 +657,10 @@
        return verfy_form(document.forms[0]);
    }
}
function Save() { return ValidateForm(); }
function Save() {
    if (document.getElementById('txtSumPrice').value == "" || parseFloat(document.getElementById('txtSumPrice').value) <= 0) {
        if (!confirm("订单总价为0,是否继续保存?"))
            return false;
    }
    return ValidateForm();
}