Commit 9f760b9b authored by agping's avatar agping

1

parent 5ba9dc11
...@@ -823,7 +823,8 @@ ...@@ -823,7 +823,8 @@
<input type="text" value=" " class="form_datetime form-control btn6-yuedaikan ld-Marheight" id="look_shop_date" readonly="readonly"> <input type="text" value=" " class="form_datetime form-control btn6-yuedaikan ld-Marheight" id="look_shop_date" readonly="readonly">
<div class="clear"></div> <div class="clear"></div>
<div class="ld-Marheight" style="color: #FF8018;font-size: 14px;"> <div class="ld-Marheight" style="color: #FF8018;font-size: 14px;">
注:从提交时间到预计到场时间,除了提交约带看的经纪人,其他 经纪人都不能联系客户! <!--注:从提交时间到预计到场时间,除了提交约带看的经纪人,其他 经纪人都不能联系客户!-->
注:预计到场时间当天0点到预计到场时间后的2小时,除了提交约带看的经纪人,其他经纪人都不能联系客户(包括关联客户)!
</div> </div>
<div class="textarea-con ld-Marheight"> <div class="textarea-con ld-Marheight">
<span class="fore-span">备注:</span> <span class="fore-span">备注:</span>
......
...@@ -1264,7 +1264,13 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css', ...@@ -1264,7 +1264,13 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css',
}; };
if($('#change_type').val() == 91){ if($('#change_type').val() == 91){
params.type_ext=$('#agency_fees_type').val(); params.type_ext=$('#agency_fees_type').val();
params.be_charged_party=$('#charge_side').val(); if($('#charge_side').val()){
params.be_charged_party=$('#charge_side').val();
}else{
alert('收取方必填');
return;
}
} }
//拼接jsonArray to jsonObject //拼接jsonArray to jsonObject
...@@ -1426,7 +1432,13 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css', ...@@ -1426,7 +1432,13 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css',
//判断是否是 案场费 //判断是否是 案场费
if ($('#intoType').val() == 91){ if ($('#intoType').val() == 91){
params.type_ext = $('#agency_fees_type_text').val(); params.type_ext = $('#agency_fees_type_text').val();
params.be_charged_party = $('#charge_side_detail').val();//收款详情 中介费 新增收取方 if($('#charge_side_detail').val()){
params.be_charged_party = $('#charge_side_detail').val();//收款详情 中介费 新增收取方
}else{
alert('收取方必填');
return;
}
}; };
//判断是否是 案场费 中介费 //判断是否是 案场费 中介费
if ($('#intoType').val() == 92 || $('#intoType').val() == 91){ if ($('#intoType').val() == 92 || $('#intoType').val() == 91){
......
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