|
@@ -174,9 +174,11 @@
|
|
}
|
|
}
|
|
//审定价
|
|
//审定价
|
|
var ShenDingJia = $("#ShenDingJia").val();
|
|
var ShenDingJia = $("#ShenDingJia").val();
|
|
- if(parseFloat(ZiXunShouRu) >= parseFloat(ShenDingJia)){
|
|
|
|
- parent.layer.msg("咨询营业收入金额应小于审定价!", {icon: 5});
|
|
|
|
- return false;
|
|
|
|
|
|
+ if(undefined != ShenDingJia && null != ShenDingJia && "" != ShenDingJia){
|
|
|
|
+ if(parseFloat(ZiXunShouRu) >= parseFloat(ShenDingJia)){
|
|
|
|
+ parent.layer.msg("咨询营业收入金额应小于审定价!", {icon: 5});
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
var list = [];
|
|
var list = [];
|
|
var size = $("#shangBaoList1 tr").length;
|
|
var size = $("#shangBaoList1 tr").length;
|
|
@@ -951,12 +953,28 @@
|
|
var projectType = $("#ProjectType").val()
|
|
var projectType = $("#ProjectType").val()
|
|
if (projectType == "10") {
|
|
if (projectType == "10") {
|
|
$("#ptDiv").show();
|
|
$("#ptDiv").show();
|
|
|
|
+ $("#heTongJiaDiv").find("label").eq(0).html("<span class=\"require-item\">*</span>合同价(万元):")
|
|
|
|
+ $("#HeTongJia").attr("class","form-control layui-input number judgment")
|
|
|
|
+ $("#songShenJiaDiv").find("label").eq(0).html("<span class=\"require-item\">*</span>送审价(万元):")
|
|
|
|
+ $("#SongShenJia").attr("class","form-control layui-input number judgment")
|
|
|
|
+ $("#shenDingJiaDiv").find("label").eq(0).html("<span class=\"require-item\">*</span>审定价(万元):")
|
|
|
|
+ $("#ShenDingJia").attr("class","form-control layui-input number judgment")
|
|
$(".overallProcessDiv").hide();
|
|
$(".overallProcessDiv").hide();
|
|
}else if(projectType == "19"){
|
|
}else if(projectType == "19"){
|
|
|
|
+ $("#heTongJiaDiv").find("label").eq(0).html("合同价(万元):")
|
|
|
|
+ $("#HeTongJia").attr("class","form-control layui-input number")
|
|
|
|
+ $("#songShenJiaDiv").find("label").eq(0).html("送审价(万元):")
|
|
|
|
+ $("#SongShenJia").attr("class","form-control layui-input number")
|
|
|
|
+ $("#shenDingJiaDiv").find("label").eq(0).html("审定价(万元):")
|
|
|
|
+ $("#ShenDingJia").attr("class","form-control layui-input number")
|
|
$(".overallProcessDiv").show();
|
|
$(".overallProcessDiv").show();
|
|
- $("#ptDiv").hide();
|
|
|
|
}else {
|
|
}else {
|
|
- $("#ptDiv").hide();
|
|
|
|
|
|
+ $("#heTongJiaDiv").find("label").eq(0).html("合同价(万元):")
|
|
|
|
+ $("#HeTongJia").attr("class","form-control layui-input number")
|
|
|
|
+ $("#songShenJiaDiv").find("label").eq(0).html("送审价(万元):")
|
|
|
|
+ $("#SongShenJia").attr("class","form-control layui-input number")
|
|
|
|
+ $("#shenDingJiaDiv").find("label").eq(0).html("审定价(万元):")
|
|
|
|
+ $("#ShenDingJia").attr("class","form-control layui-input number")
|
|
$(".overallProcessDiv").hide();
|
|
$(".overallProcessDiv").hide();
|
|
}
|
|
}
|
|
//有无合同监听器
|
|
//有无合同监听器
|
|
@@ -1118,12 +1136,28 @@
|
|
layui.form.on('select(ProjectType)',function(data) {
|
|
layui.form.on('select(ProjectType)',function(data) {
|
|
if (data.value == "10") {
|
|
if (data.value == "10") {
|
|
$("#ptDiv").show();
|
|
$("#ptDiv").show();
|
|
|
|
+ $("#heTongJiaDiv").find("label").eq(0).html("<span class=\"require-item\">*</span>合同价(万元):")
|
|
|
|
+ $("#HeTongJia").attr("class","form-control layui-input number judgment")
|
|
|
|
+ $("#songShenJiaDiv").find("label").eq(0).html("<span class=\"require-item\">*</span>送审价(万元):")
|
|
|
|
+ $("#SongShenJia").attr("class","form-control layui-input number judgment")
|
|
|
|
+ $("#shenDingJiaDiv").find("label").eq(0).html("<span class=\"require-item\">*</span>审定价(万元):")
|
|
|
|
+ $("#ShenDingJia").attr("class","form-control layui-input number judgment")
|
|
$(".overallProcessDiv").hide();
|
|
$(".overallProcessDiv").hide();
|
|
}else if(data.value == "19"){
|
|
}else if(data.value == "19"){
|
|
|
|
+ $("#heTongJiaDiv").find("label").eq(0).html("合同价(万元):")
|
|
|
|
+ $("#HeTongJia").attr("class","form-control layui-input number")
|
|
|
|
+ $("#songShenJiaDiv").find("label").eq(0).html("送审价(万元):")
|
|
|
|
+ $("#SongShenJia").attr("class","form-control layui-input number")
|
|
|
|
+ $("#shenDingJiaDiv").find("label").eq(0).html("审定价(万元):")
|
|
|
|
+ $("#ShenDingJia").attr("class","form-control layui-input number")
|
|
$(".overallProcessDiv").show();
|
|
$(".overallProcessDiv").show();
|
|
- $("#ptDiv").hide();
|
|
|
|
- }else{
|
|
|
|
- $("#ptDiv").hide();
|
|
|
|
|
|
+ }else {
|
|
|
|
+ $("#heTongJiaDiv").find("label").eq(0).html("合同价(万元):")
|
|
|
|
+ $("#HeTongJia").attr("class","form-control layui-input number")
|
|
|
|
+ $("#songShenJiaDiv").find("label").eq(0).html("送审价(万元):")
|
|
|
|
+ $("#SongShenJia").attr("class","form-control layui-input number")
|
|
|
|
+ $("#shenDingJiaDiv").find("label").eq(0).html("审定价(万元):")
|
|
|
|
+ $("#ShenDingJia").attr("class","form-control layui-input number")
|
|
$(".overallProcessDiv").hide();
|
|
$(".overallProcessDiv").hide();
|
|
}
|
|
}
|
|
layui.form.render("select");
|
|
layui.form.render("select");
|
|
@@ -2455,36 +2489,34 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <div id="ptDiv">
|
|
|
|
- <div class="layui-item layui-col-sm6 lw6">
|
|
|
|
- <label class="layui-form-label double-line">合同价(万元):</label>
|
|
|
|
- <div class="layui-input-block with-icon">
|
|
|
|
- <form:input path="recordsReported.HeTongJia" id="HeTongJia" placeholder="请输入合同价" htmlEscape="false" onkeyup="num(this)" class="form-control layui-input number"/>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <div class="layui-item layui-col-sm6 lw6" id="heTongJiaDiv">
|
|
|
|
+ <label class="layui-form-label double-line">合同价(万元):</label>
|
|
|
|
+ <div class="layui-input-block with-icon">
|
|
|
|
+ <form:input path="recordsReported.HeTongJia" id="HeTongJia" placeholder="请输入合同价" htmlEscape="false" onkeyup="num(this)" class="form-control layui-input number"/>
|
|
</div>
|
|
</div>
|
|
- <div class="layui-item layui-col-sm6 lw6">
|
|
|
|
- <label class="layui-form-label double-line"><span class="require-item">*</span>送审价(万元):</label>
|
|
|
|
- <div class="layui-input-block with-icon">
|
|
|
|
- <form:input path="recordsReported.SongShenJia" id="SongShenJia" placeholder="请输入送审价" htmlEscape="false" onkeyup="num(this)" class="form-control required layui-input number" onchange="JingHeJianValue()"/>
|
|
|
|
- </div>
|
|
|
|
|
|
+ </div>
|
|
|
|
+ <div class="layui-item layui-col-sm6 lw6" id="songShenJiaDiv">
|
|
|
|
+ <label class="layui-form-label double-line">送审价(万元):</label>
|
|
|
|
+ <div class="layui-input-block with-icon">
|
|
|
|
+ <form:input path="recordsReported.SongShenJia" id="SongShenJia" placeholder="请输入送审价" htmlEscape="false" onkeyup="num(this)" class="form-control layui-input number" onchange="JingHeJianValue()"/>
|
|
</div>
|
|
</div>
|
|
- <div class="layui-item layui-col-sm6 lw6">
|
|
|
|
- <label class="layui-form-label double-line"><span class="require-item">*</span>审定价(万元):</label>
|
|
|
|
- <div class="layui-input-block with-icon">
|
|
|
|
- <form:input path="recordsReported.ShenDingJia" id="ShenDingJia" placeholder="请输入审定价" htmlEscape="false" onkeyup="num(this)" class="form-control required layui-input number" onchange="JingHeJianValue()"/>
|
|
|
|
- </div>
|
|
|
|
|
|
+ </div>
|
|
|
|
+ <div class="layui-item layui-col-sm6 lw6" id="shenDingJiaDiv">
|
|
|
|
+ <label class="layui-form-label double-line">审定价(万元):</label>
|
|
|
|
+ <div class="layui-input-block with-icon">
|
|
|
|
+ <form:input path="recordsReported.ShenDingJia" id="ShenDingJia" placeholder="请输入审定价" htmlEscape="false" onkeyup="num(this)" class="form-control layui-input number" onchange="JingHeJianValue()"/>
|
|
</div>
|
|
</div>
|
|
- <div class="layui-item layui-col-sm6 lw6">
|
|
|
|
- <label class="layui-form-label double-line">审核增减额(万元):</label>
|
|
|
|
- <div class="layui-input-block with-icon">
|
|
|
|
- <form:input path="recordsReported.JingHeJianE" id="JingHeJianE" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
|
|
- </div>
|
|
|
|
|
|
+ </div>
|
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
|
+ <label class="layui-form-label double-line">审核增减额(万元):</label>
|
|
|
|
+ <div class="layui-input-block with-icon">
|
|
|
|
+ <form:input path="recordsReported.JingHeJianE" id="JingHeJianE" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
</div>
|
|
</div>
|
|
- <div class="layui-item layui-col-sm6 lw6">
|
|
|
|
- <label class="layui-form-label double-line">审核增减率(%):</label>
|
|
|
|
- <div class="layui-input-block with-icon">
|
|
|
|
- <form:input path="recordsReported.JingHeJianLv" id="JingHeJianLv" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
|
|
- </div>
|
|
|
|
|
|
+ </div>
|
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
|
+ <label class="layui-form-label double-line">审核增减率(%):</label>
|
|
|
|
+ <div class="layui-input-block with-icon">
|
|
|
|
+ <form:input path="recordsReported.JingHeJianLv" id="JingHeJianLv" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|