|
@@ -229,7 +229,7 @@
|
|
|
<div class="formControls col-9">
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div style="margin-left: -27px;">
|
|
|
+ <#--<div style="margin-left: -27px;">
|
|
|
<#if billingInfo??>
|
|
|
<div class="row cl">
|
|
|
<label class="form-label col-2 col-sm-2"style="padding:0 0;margin-top: 2px;">开户支行:</label>
|
|
@@ -245,16 +245,6 @@
|
|
|
<label>${billingInfo.accountNum!''}</label>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <#-- <div class="row cl">
|
|
|
- <label class="form-label col-2 col-sm-2"style="padding:0 0;margin-top: 2px;">收款人姓名:</label>
|
|
|
- <div class="formControls col-2 col-sm-2"style="padding:0 0;">
|
|
|
- <label>${billingInfo.receivablesName!''}</label>
|
|
|
- </div>
|
|
|
- <label class="form-label col-2 col-sm-2"style="padding:0 0;margin-top: 2px;">收款人电话:</label>
|
|
|
- <div class="formControls col-2 col-sm-2"style="padding:0 0;">
|
|
|
- <label>${billingInfo.receivablesPhone!''}</label>
|
|
|
- </div>
|
|
|
- </div>-->
|
|
|
<#else>
|
|
|
<div class="row cl">
|
|
|
<label class="form-label col-1 col-sm-1"></label>
|
|
@@ -266,7 +256,33 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</#if>
|
|
|
+ </div>-->
|
|
|
+
|
|
|
+ <#--new billing start-->
|
|
|
+ <div class="mt-20" style="margin: 10px 20px 20px 20px;">
|
|
|
+ <input type="hidden" id="dockedContactInfoJson" name="dockedContactInfoJson">
|
|
|
+ <table class="table table-border table-bordered table-bg table-hover table-sort" style="width: 960px;" id="contactTable">
|
|
|
+ <thead>
|
|
|
+ <tr class="text-c">
|
|
|
+ <th width="100">开户支行</th>
|
|
|
+ <th width="100">账户名称</th>
|
|
|
+ <th width="100">账号</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="contactListId">
|
|
|
+ <#if billingInfo??>
|
|
|
+ <tr class="text-c">
|
|
|
+ <td>${billingInfo.accountOpeningBranch!''}</td>
|
|
|
+ <td>${billingInfo.accountName!''}</td>
|
|
|
+ <td>${billingInfo.accountNum!''}</td>
|
|
|
+ </tr>
|
|
|
+ <#else>
|
|
|
+ <tr class="text-c"><td colspan="9">暂无数据</td></tr>
|
|
|
+ </#if>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
</div>
|
|
|
+ <#--new billing end-->
|
|
|
|
|
|
<div class="row cl">
|
|
|
<label class="form-label col-3">
|
|
@@ -275,7 +291,7 @@
|
|
|
<div class="formControls col-9">
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div style="margin-left: -27px;">
|
|
|
+ <#--<div style="margin-left: -27px;">
|
|
|
<#if ticketOpeningInfo??>
|
|
|
<div class="row cl">
|
|
|
<label class="form-label col-2 col-sm-2" style="padding:0 0;margin-top: 2px;">发票类型:</label>
|
|
@@ -326,7 +342,48 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</#if>
|
|
|
+ </div>-->
|
|
|
+
|
|
|
+ <#--new ticketOpening start-->
|
|
|
+ <div class="mt-20" style="margin: 10px 20px 20px 20px;">
|
|
|
+ <input type="hidden" id="dockedContactInfoJson" name="dockedContactInfoJson">
|
|
|
+ <table class="table table-border table-bordered table-bg table-hover table-sort" style="width: 960px;" id="contactTable">
|
|
|
+ <thead>
|
|
|
+ <tr class="text-c">
|
|
|
+ <th width="100">发票类型</th>
|
|
|
+ <th width="100">开户支行</th>
|
|
|
+ <th width="100">开票账号</th>
|
|
|
+ <th width="100">企业名称</th>
|
|
|
+ <th width="100">纳税人识别号</th>
|
|
|
+ <th width="100">开票电话</th>
|
|
|
+ <th width="100">企业地址</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="contactListId">
|
|
|
+ <#if ticketOpeningInfo??>
|
|
|
+ <tr class="text-c">
|
|
|
+ <#assign isStatus=(ticketOpeningInfo.ticketType == 1)/>
|
|
|
+ <#if isStatus>
|
|
|
+ <td>专票</td>
|
|
|
+ <#else>
|
|
|
+ <td>普票</td>
|
|
|
+ </#if>
|
|
|
+ <#--<td>${ticketOpeningInfo.ticketType!''}</td>-->
|
|
|
+ <td>${ticketOpeningInfo.accountOpeningBranch!''}</td>
|
|
|
+ <td>${ticketOpeningInfo.ticketOpeningAccount!''}</td>
|
|
|
+ <td>${ticketOpeningInfo.enterpriseName!''}</td>
|
|
|
+ <td>${ticketOpeningInfo.taxpayerIdentificationNum!''}</td>
|
|
|
+ <td>${ticketOpeningInfo.ticketOpeningPhone!''}</td>
|
|
|
+ <td>${ticketOpeningInfo.enterpriseAddress!''}</td>
|
|
|
+ </tr>
|
|
|
+ <#else>
|
|
|
+ <tr class="text-c"><td colspan="9">暂无数据</td></tr>
|
|
|
+ </#if>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
</div>
|
|
|
+ <#--new ticketOpening end-->
|
|
|
+
|
|
|
<div class="row cl">
|
|
|
<label class="form-label col-3">
|
|
|
<div class="tit-2">客户备注</div>
|