|
|
@@ -1064,12 +1064,12 @@
|
|
|
应收金额:
|
|
|
<div style="display: inline-block;width: 130px;vertical-align: top;">
|
|
|
<p style="margin:0;" ng-repeat="type in check.checkAmountList" ng-if="check.checkAmountList.length > 0"><span>{{type.currency}}:{{type.amount | number: 2}}</span></p>
|
|
|
- <p style="margin:0;" ng-if="check.checkAmountList || check.checkAmountList.length === 0"><span>0</span></p>
|
|
|
+ <p style="margin:0;" ng-if="!check.checkAmountList || check.checkAmountList.length === 0"><span>0</span></p>
|
|
|
</div>
|
|
|
发货金额:
|
|
|
<div style="display: inline-block;width: 130px;vertical-align: top;">
|
|
|
<p style="margin:0;" ng-repeat="type in check.sendAmountList" ng-if="check.sendAmountList.length > 0"><span>{{type.currency}}:{{type.amount | number: 2}}</span></p>
|
|
|
- <p style="margin:0;" ng-if="check.sendAmountList || check.sendAmountList.length === 0"><span>暂无数据</span></p>
|
|
|
+ <p style="margin:0;" ng-if="!check.sendAmountList || check.sendAmountList.length === 0"><span>暂无数据</span></p>
|
|
|
</div>
|
|
|
</div>
|
|
|
<a ng-show="check.showDetail" class="order-count-click" ng-click="check.showDetail = !check.showDetail">收起 <i class="fa fa-angle-up"></i></a>
|