countingMMWaitSub.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <div ng-controller='CountingMMCtrl' style="min-height: 400px;">
  2. <div class="row m-b-10 col-sm-offset-1" ng-show="grid">
  3. <span class="f-16 col-md-3 col-xs-8">盘点底稿编号:{{stocking.ST_CODE}}</span>
  4. <span class="f-16 col-md-2 ">仓库:{{stocking.ST_WHCODE}}</span>
  5. </div>
  6. <div class = "m-b-10">
  7. <a href="#/countingMM " class=" btn btn-success btn-sm col-md-2 col-sm-offset-1 col-xs-offset-1 col-xs-2"> 返回 </a>
  8. <button type="button" ng-show="grid" class="btn btn-success btn-sm col-xs-offset-2" ng-click='deleteAll()' >全部删除</button>
  9. <button type="button" ng-show="grid" class="btn btn-success btn-sm col-xs-offset-2" ng-click='submitGet()' >提交采集</button>
  10. </div>
  11. <table ng-table="tableParams"
  12. class="table table-bordered table-striped table-fixed col-xs-12 col-sm-6 col-sm-offset-1 ng-table-rowselected">
  13. <colgroup>
  14. <col width="35%"></col>
  15. <col width="15%"></col>
  16. <col width="30%"></col>
  17. <col width="20%"></col>
  18. </colgroup>
  19. <tr >
  20. <th width="35%">条码</th>
  21. <th width="15%">数量</th>
  22. <th width="30%">料号</th>
  23. <th width="20%">操作</th>
  24. </tr>
  25. <tr ng-repeat="item in $data track by $index"
  26. ng-class="{'active': item.$selected} " >
  27. <td >{{item.stb_barcode}}</td><!-- filter="{ 'name': 'text' }" -->
  28. <td >{{item.stb_qty}}</td>
  29. <td >
  30. <div class="text-num">
  31. <span ng-bind="::item.stb_prodcode"></span>
  32. </div>
  33. <div class="text-muted text-overflow">
  34. <span ng-bind="::item.pr_detail"></span>
  35. </div>
  36. </td>
  37. <td >
  38. <div class="btn-group btn-group-xs">
  39. <button type="button" class="btn btn-warning" ng-click="deleteWaitSubmitItem(s)">删除</button>
  40. </div>
  41. </td>
  42. </tr>
  43. </table>
  44. </div>