Browse Source

修改BUG

shenjj 7 years ago
parent
commit
9e927f15ef

+ 1 - 1
src/main/webapp/resources/view/sso/ssoInvoice.html

@@ -715,7 +715,7 @@
               <a href="/help/helpList/19" target="_blank" style="color: #5078cb; font-size: 14px; position: relative;top: 2px;">《发票须知》</a>
             </div>
             <div class="form-btn">
-              <input type="button" value="取消" class="btn" ng-click="setChangeBillStatusFlag(false)">
+              <input type="button" value="取消" class="btn" ng-if="invoices.length > 0" ng-click="setChangeBillStatusFlag(false)">
               <input type="submit" value="保存" class="btn"
                      ng-click="saveBill(form.$invalid)">
             </div>

+ 3 - 2
src/main/webapp/resources/view/usercenter/forstore/bomDetail.html

@@ -857,8 +857,9 @@
                                                     <span>{{of.currency + of.replies[0].price | currencyStr}}</span>-->
                                                 </div>
                                                 <ul class="red-text">
-                                                    <li ng-repeat="re in of.replies">
-                                                        <span ng-bind="re.lapQty" title="{{re.lapQty}}">1+</span>
+                                                    <li ng-repeat="re in of.replies track by $Rekey">
+                                                        <span title="{{re.lapQty}}" ng-if="$Rekey === 0">{{re.lapQty}}+</span>
+                                                        <span title="{{re.lapQty}}" ng-if="$Rekey > 0">{{re.lapQty}}</span>
                                                         <span title="{{of.currency + re.price | currencyStr}}">{{of.currency + re.price | currencyStr}}</span>
                                                     </li>
                                                 </ul>