| | |
| | | <label class="text-left col-sm-1 col-md-1 control-label"> </label> |
| | | <label grouptype="Vdata" class="text-right col-sm-1 col-md-1 control-label">存入金额(元):<i class="red">*</i></label> |
| | | <div class="col-sm-2 col-md-2" grouptype="Vdata"> |
| | | <input class="form-control" label="存入金额(元)" name="Recievemoney" id="Recievemoney" labtype="txt" addvisible="true" editvisible="true" reg="" ismust="true" type="number" value="" oninput="if(value.length>8)value=value.slice(0,18)" onkeyup="CheckNum(this);"> |
| | | <input class="form-control" label="存入金额(元)" name="Recievemoney" id="Recievemoney" labtype="txt" addvisible="true" editvisible="true" reg="" ismust="true" type="text" value="" oninput="if(value.length>8)value=value.slice(0,18)" onkeyup="CheckNum(this);"> |
| | | |
| | | </div> |
| | | </div> |
| | |
| | | toastr.warning("收款科目不能为空"); |
| | | return; |
| | | } |
| | | if (parseFloat($("#Recievemoney").val()) < 0) { |
| | | toastr.warning("收款金额不能小于0"); |
| | | if (parseFloat($("#Recievemoney").val()) == 0) { |
| | | toastr.warning("收款金额不能等于0"); |
| | | return; |
| | | } |
| | | |