记得上下班打卡 | git大法好,push需谨慎

Commit b706ddbc authored by 胡佳晨's avatar 胡佳晨

admin 会员配置 金额可以为0

parent f75f346c
......@@ -158,7 +158,7 @@
var inputValue = $(td).find("input").val();
if (inputName == "priceDiscountMember") {//过滤修改列
performanceMemberAuditParam["ticketMemberAudit[" + i + "].priceDiscountMember"] = parseFloat(inputValue);
if (parseFloat($("td[name^='price']").text()) - parseFloat(inputValue) <= 0) {
if (parseFloat($("td[name^='price']").text()) - parseFloat(inputValue) < 0) {
canSubmit = 0;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment