countingFinWaitSub.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <div ng-controller='CountingFinishCtrl' 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="#/countingFinish" class=" btn btn-success btn-sm col-md-2 col-sm-offset-1 col-xs-offset-1"> 返回 </a>
  8. <button type="button" class="btn btn-success btn-sm col-xs-offset-2" ng-click='deleteAll()' >全部删除</button>
  9. <button type="button" class="btn btn-success btn-sm col-xs-offset-2" ng-click='submitGet()' >提交采集</button>
  10. </div>
  11. <table ng-show ="grid" ng-table="tableParams"
  12. class="table table-bordered table-fixed table-striped col-xs-12 col-sm-6 col-sm-offset-1 ng-table-rowselected">
  13. <colgroup>
  14. <col width="25%"></col>
  15. <col width="25%"></col>
  16. <col width="15%"></col>
  17. <col width="10%"></col>
  18. <col width="15%"></col>
  19. </colgroup>
  20. <tr >
  21. <th width="25%">序列号</th>
  22. <th width="25%">箱号</th>
  23. <th width="15%">总数</th>
  24. <th width="10%">料号</th>
  25. <th width="15%">操作</th>
  26. </tr>
  27. <tr ng-repeat="s in $data track by $index"
  28. ng-class="{'active': item.$selected} " >
  29. <td >{{s.stb_barcode}}</td><!-- filter="{ 'name': 'text' }" -->
  30. <td >{{s.stb_outboxcode}}</td>
  31. <td >{{s.stb_qty}}</td>
  32. <td class="text-overflow">{{s.stb_prodcode}}</div></td>
  33. <td >
  34. <div class="btn-group btn-group-xs">
  35. <button type="button" class="btn btn-default" ng-click="deleteWaitSubmitItem(s)">删除</button>
  36. </div>
  37. </td>
  38. </tr>
  39. </table>
  40. </div>