username@email.com
2025-01-21 85c82e61104884a052893b2a642e732d1182707f
CY_ECommercePlatform/CY.WebForm/js/business/Order.js
@@ -546,6 +546,7 @@
            document.getElementById('txtDocumentName').value = document.getElementById('txtDocumentNameHide').value;
        }
       
        $("#Duiyinghetongbianhao").hide();
    }
    else {
        document.getElementById('tbFacing').style.display = '';
@@ -555,6 +556,7 @@
        document.getElementById('selVerifyWay321').style.display = '';
        document.getElementById('selVerifyWay1234').style.display = '';
        document.getElementById('selVerifyWay4321').style.display = '';
        $("#Duiyinghetongbianhao").show();
    }
}
@@ -657,4 +659,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();
}