|
|
@@ -17,6 +17,7 @@
|
|
|
border: #dae5fd 1px solid;
|
|
|
border-bottom: none;
|
|
|
margin-bottom: 0!important;
|
|
|
+ table-layout: fixed;
|
|
|
}
|
|
|
.invoice-com-tab thead{
|
|
|
height: 40px;
|
|
|
@@ -42,6 +43,9 @@
|
|
|
height: 50px;
|
|
|
vertical-align: middle;
|
|
|
text-align: center;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
}
|
|
|
.invoice-com-tab tbody>tr>td a.invoice-detail{
|
|
|
display: block;
|
|
|
@@ -169,8 +173,8 @@
|
|
|
<div class="ticket_record oder">
|
|
|
<div class="oder01">
|
|
|
<ul>
|
|
|
- <li ng-class="{'active': tab == 'buyer_invoice'}"><a ui-sref="buyer_invoice">开票信息</a></li>
|
|
|
- <li ng-class="{'active': tab == 'buyer_no_invoice'}"><a ui-sref="buyer_no_invoice">未开票</a></li>
|
|
|
+ <li ng-class="{'active': tab == 'buyer_invoice'}"><a ui-sref="buyer_invoice">发票信息</a></li>
|
|
|
+ <li ng-class="{'active': tab == 'buyer_no_invoice'}"><a ui-sref="buyer_no_invoice">待开票订单</a></li>
|
|
|
<li ng-class="{'active': tab == 'buyer_invoice-record'}"><a ui-sref="buyer_invoice-record">开票记录</a></li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
@@ -186,21 +190,21 @@
|
|
|
<table class="invoice-com-tab table" ng-table="billRecordTableParam">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th width="88">申请时间</th>
|
|
|
- <th width="130">商家名称</th>
|
|
|
- <th width="80">订单号</th>
|
|
|
- <th width="105">可开票金额(¥)</th>
|
|
|
- <th width="55" class="select-line">
|
|
|
+ <th width="100">申请时间</th>
|
|
|
+ <th width="140">商家名称</th>
|
|
|
+ <th width="190">订单号</th>
|
|
|
+ <th width="120">可开票金额(¥)</th>
|
|
|
+ <th width="60" class="select-line">
|
|
|
<select class="select-adder form-control" ng-model="invoiceType" ng-change="changeInvoiceType(invoiceType)">
|
|
|
<option value="">类型</option>
|
|
|
<option value="1206">普票</option>
|
|
|
<option value="1205">专票</option>
|
|
|
</select>
|
|
|
</th>
|
|
|
- <th width="100">发票抬头</th>
|
|
|
- <th width="50">收票人</th>
|
|
|
- <th width="55">联系电话</th>
|
|
|
- <th width="55">
|
|
|
+ <th width="115">发票抬头</th>
|
|
|
+ <th width="65">收票人</th>
|
|
|
+ <th width="120">联系电话</th>
|
|
|
+ <th width="90">
|
|
|
<select class="select-adder form-control" style="width: 60px;" ng-model="status" ng-change="changeStatus(status)">
|
|
|
<option value="">状态</option>
|
|
|
<option value="101">待开票</option>
|
|
|
@@ -211,19 +215,22 @@
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
<tr ng-repeat="item in billData">
|
|
|
- <td ng-bind="item.createTime | date : 'yyyy-MM-dd'"></td>
|
|
|
- <td><a ng-href="{{'store/' + item.storeid}}" ng-bind="item.sellername" target="_blank"></a></td>
|
|
|
+ <td ng-bind="item.createTime | date : 'yyyy-MM-dd'" title="{{item.createTime | date : 'yyyy-MM-dd'}}"></td>
|
|
|
+ <td><a ng-href="{{'store/' + item.storeid}}" ng-bind="item.sellername" target="_blank" title="{{item.sellername}}"></a></td>
|
|
|
<td>
|
|
|
- <a ng-href="user#/order/detail/{{orderid | EncryptionFilter}}" ng-repeat="orderid in item.orderids.split(',')" ng-bind="orderid" target="_blank" class="invoice-detail"></a>
|
|
|
+ <a ng-href="user#/order/detail/{{orderid | EncryptionFilter}}"
|
|
|
+ ng-repeat="orderid in item.orderids.split(',')"
|
|
|
+ ng-bind="orderid"
|
|
|
+ title='{{orderid}}' target="_blank" class="invoice-detail"></a>
|
|
|
</td>
|
|
|
- <td ng-bind="item.price"></td>
|
|
|
+ <td ng-bind="item.price" title="{{item.price}}"></td>
|
|
|
<td style="padding: 0;">
|
|
|
<span ng-bind="item.invoicetype==1206?'普票':'专票'"></span>
|
|
|
<b ng-click="lookInvoiceInfo(item)" class="invoice-info">开票信息</b>
|
|
|
</td>
|
|
|
- <td ng-bind="item.invoicetitle"></td>
|
|
|
- <td ng-bind="item.receiverName"></td>
|
|
|
- <td ng-bind="item.recTel"></td>
|
|
|
+ <td ng-bind="item.invoicetitle" title="{{item.invoicetitle}}"></td>
|
|
|
+ <td ng-bind="item.receiverName" title="{{item.receiverName}}"></td>
|
|
|
+ <td ng-bind="item.recTel" title="{{item.recTel}}"></td>
|
|
|
<td>
|
|
|
<span ng-bind="item.status==101?'待开票':'已开票'" ng-class="{'blue':item.status==101}"></span>
|
|
|
</td>
|