|
|
@@ -219,20 +219,20 @@
|
|
|
<tr class="order-bd" ng-repeat="item in accept.acceptItems">
|
|
|
<td class="product">
|
|
|
<div class="text-num text-bold">
|
|
|
- <span ng-bind="item.orderItem.product.code"
|
|
|
- ng-if="item.orderItem.product.code != null"></span> <span
|
|
|
- ng-bind="item.product.code"
|
|
|
- ng-if="item.orderItem.product.code == null"></span>
|
|
|
+ <span ng-bind="item.product.code"
|
|
|
+ ng-if="item.product.code != null"></span> <span
|
|
|
+ ng-bind="item.orderItem.product.code"
|
|
|
+ ng-if="item.product.code == null"></span>
|
|
|
</div>
|
|
|
<div>
|
|
|
<span ng-bind="item.orderItem.product.title"
|
|
|
- ng-if="item.orderItem.product.title != null"></span> <span
|
|
|
+ ng-if="item.product.title == null"></span> <span
|
|
|
ng-bind="item.product.title"
|
|
|
- ng-if="item.orderItem.product.title == null"></span>
|
|
|
+ ng-if="item.product.title != null"></span>
|
|
|
</div>
|
|
|
- <div class="text-muted" title="{{item.orderItem.product.spec}}"
|
|
|
- ng-bind="item.orderItem.product.spec"
|
|
|
- ng-if="item.orderItem.product.spec != null"></div>
|
|
|
+ <div class="text-muted" title="{{item.product.spec}}"
|
|
|
+ ng-bind="item.product.spec"
|
|
|
+ ng-if="item.product.spec != null"></div>
|
|
|
<div class="text-muted" title="{{item.product.spec}}"
|
|
|
ng-bind="item.product.spec"
|
|
|
ng-if="item.orderItem.product.spec == null"></div>
|