|
|
@@ -331,10 +331,18 @@
|
|
|
class="text-num" ng-bind="::order.code" ui-sref="purc.order_detail({id:order.id})" target="_self"></a></span>
|
|
|
</div>
|
|
|
</td>
|
|
|
- <td colspan="2" class="order-sum">{{::order.currency}}: <span
|
|
|
+ <td class="order-sum">{{::order.currency}}: <span
|
|
|
ng-bind="getOrderTotal(order.orderItems) | number : 2"
|
|
|
class="text-num text-bold"></span>
|
|
|
</td>
|
|
|
+ <td class="text-center">
|
|
|
+ <span ng-if="order.custPrint" class="label ng-scope operates-status" style="margin-right: 5px;background-color: #5D6C79">已打印</span>
|
|
|
+ <span ng-if="!order.custPrint" class="label ng-scope operates-status" style="margin-right: 5px;background-color: #CA3955">未打印</span>
|
|
|
+ <div class="operates">
|
|
|
+ <a ng-click="custPrint(order)" title="打印{{order.custPrint? '(已打印)':'(未打印)'}}" ng-class="{'unPrinted' : !order.custPrint, 'text-muted': order.custPrint}"><i
|
|
|
+ class="fa fa-print fa-lg"></i></a></a>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
<tr class="order-bd" ng-repeat="item in order.orderItems track by item.id"
|
|
|
ng-if="!order.$collapsed "><!-- && (!searchFilterXls.keyword || item.key || order.$showAll) -->
|