outMMWaitSubmit.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <div ng-controller='OutMMwaitSubmitCtrl' 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-offset-2 col-xs-10">客户:{{order.PI_TITLE}}</span>
  4. </div>
  5. <div class = "m-b-10">
  6. <a href="#/outMMOperation/{{order.PI_INOUTNO}}" n class=" btn btn-success btn-sm col-md-2 col-xs-2 col-sm-offset-1 col-xs-offset-1"> 返回 </a>
  7. <button type="button" ng-show="order" class="btn btn-success btn-sm col-xs-offset-2" ng-click='deleteAll()' >全部删除</button>
  8. <button type="button" ng-show="order" class="btn btn-success btn-sm col-xs-offset-2" ng-click='submitGet()' >提交采集</button>
  9. </div>
  10. <div>
  11. <table ng-show ="grid" 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="35%"></col>
  17. <col width="15%"></col>
  18. </colgroup>
  19. <tr >
  20. <th width="30%">条码/箱号</th>
  21. <th width="15%">数量</th>
  22. <th width="20%">料号</th>
  23. <th width="10%">名称</th>
  24. <th width="15%">操作</th>
  25. </tr>
  26. <tr ng-repeat="s in $data track by $index"
  27. ng-class="{'active': item.$selected} " >
  28. <td data-title="'条码/箱号'">{{s.bi_barcode}}{{s.bi_outboxcode}}</td><!-- filter="{ 'name': 'text' }" -->
  29. <td data-title="'数量'">{{s.bi_outqty}}</td>
  30. <td data-title="'料号名称'">
  31. <div class="text-num">
  32. <span>{{s.bi_prodcode}}</span>
  33. </div>
  34. <div class="text-muted text-overflow">
  35. <span>{{s.bi_prodname}}</span>
  36. </div>
  37. </td>
  38. <td data-title="'操作'">
  39. <div class="btn-group btn-group-xs">
  40. <button type="button" class="btn btn-default" ng-click="deleteWaitSubmitItem(s)">删除</button>
  41. </div>
  42. </td>
  43. </tr>
  44. </table>
  45. </div>
  46. <div class="m-b-10">
  47. <a ng-href="#/haveSubmitList/{{order.PI_ID}}/outMMWaitSubmit/{{order.PI_INOUTNO}}" class="btn btn-success btn-sm col-md-2 col-sm-offset-1 col-xs-offset-2">已提交列表</a>
  48. </div>
  49. </div>