|
|
@@ -712,12 +712,13 @@
|
|
|
|
|
|
<thead ng-show="active === 'all'">
|
|
|
<tr class="header">
|
|
|
- <th width="200">客户名称</th>
|
|
|
- <th width="170">本月应收</th>
|
|
|
- <th width="170">本月未对</th>
|
|
|
- <th width="170">本月已对</th>
|
|
|
- <th width="170">应收总额</th>
|
|
|
- <th width="80">操作</th>
|
|
|
+ <th width="180">客户名称</th>
|
|
|
+ <th width="140">本月应收</th>
|
|
|
+ <th width="140">本月未对</th>
|
|
|
+ <th width="140">本月已对</th>
|
|
|
+ <th width="140">本月已收</th>
|
|
|
+ <th width="140">应收总额</th>
|
|
|
+ <th width="80">操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody ng-show="active === 'all'" ng-repeat="check in ALLList">
|
|
|
@@ -744,6 +745,13 @@
|
|
|
</td>
|
|
|
<td ng-if="check.thisMonthDoneCount.length === 0">-</td>
|
|
|
|
|
|
+ <td ng-if="check.apCheckAmounts.length > 0">
|
|
|
+ <div ng-repeat="count in check.apCheckAmounts">
|
|
|
+ <span ng-if="count.amount > 0">{{count.currency}}:{{count.amount | number:2}}</span>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ <td ng-if="check.apCheckAmounts.length === 0">-</td>
|
|
|
+
|
|
|
<td ng-if="check.totalCount.length > 0">
|
|
|
<div ng-repeat="count in check.totalCount">
|
|
|
<span ng-if="count.amount > 0">{{count.currency}}:{{count.amount | number:2}}</span>
|
|
|
@@ -813,6 +821,17 @@
|
|
|
</div>
|
|
|
</label>
|
|
|
</div>
|
|
|
+ <div style="text-align: left;margin-top: 20px">
|
|
|
+ <label>本期间未对总额:</label>
|
|
|
+ <label style="text-align:left;vertical-align: top;">
|
|
|
+ <div ng-if="dataInfo.thisMonthTodoCount.length > 0" ng-repeat="count in dataInfo.thisMonthTodoCount">
|
|
|
+ <span>{{count.currency}}:{{count.amount | number:2}}</span>
|
|
|
+ </div>
|
|
|
+ <div ng-if="dataInfo.thisMonthTodoCount.length === 0">
|
|
|
+ 0
|
|
|
+ </div>
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
<div style="text-align: left;margin-top: 20px">
|
|
|
<label>本期间已对总额:</label>
|
|
|
<label style="text-align:left;vertical-align: top;">
|
|
|
@@ -824,18 +843,18 @@
|
|
|
</div>
|
|
|
</label>
|
|
|
</div>
|
|
|
+
|
|
|
<div style="text-align: left;margin-top: 20px">
|
|
|
- <label>本期间未对总额:</label>
|
|
|
+ <label>本期间已收总额:</label>
|
|
|
<label style="text-align:left;vertical-align: top;">
|
|
|
- <div ng-if="dataInfo.thisMonthTodoCount.length > 0" ng-repeat="count in dataInfo.thisMonthTodoCount">
|
|
|
+ <div ng-if="dataInfo.thisMonthDoneCount.length > 0" ng-repeat="count in dataInfo.thisMonthDoneCount">
|
|
|
<span>{{count.currency}}:{{count.amount | number:2}}</span>
|
|
|
</div>
|
|
|
- <div ng-if="dataInfo.thisMonthTodoCount.length === 0">
|
|
|
+ <div ng-if="dataInfo.thisMonthDoneCount.length === 0">
|
|
|
0
|
|
|
</div>
|
|
|
</label>
|
|
|
</div>
|
|
|
-
|
|
|
<div style="text-align: left;margin-top: 20px">
|
|
|
<label>应收总额:</label>
|
|
|
<label style="text-align:left;vertical-align: top;">
|