username@email.com
2025-01-26 a0b3492010949e0d044892b9bb6456b51ae0d458
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();
}