username@email.com
2025-01-21 957344a47100f58ac7ac046ec5b2d5201a599d5c
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();
}