| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <div ng-controller='CountingMMCtrl' style="min-height: 400px;">
- <div class="row m-b-10 col-sm-offset-1" ng-show="grid">
- <span class="f-16 col-md-3 col-xs-8">盘点底稿编号:{{stocking.ST_CODE}}</span>
- <span class="f-16 col-md-2 ">仓库:{{stocking.ST_WHCODE}}</span>
- </div>
- <div class = "m-b-10">
- <a href="#/countingMM " class=" btn btn-success btn-sm col-md-2 col-sm-offset-1 col-xs-offset-1 col-xs-2"> 返回 </a>
- <button type="button" ng-show="grid" class="btn btn-success btn-sm col-xs-offset-2" ng-click='deleteAll()' >全部删除</button>
- <button type="button" ng-show="grid" class="btn btn-success btn-sm col-xs-offset-2" ng-click='submitGet()' >提交采集</button>
- </div>
- <table ng-table="tableParams"
- class="table table-bordered table-striped table-fixed col-xs-12 col-sm-6 col-sm-offset-1 ng-table-rowselected">
- <colgroup>
- <col width="35%"></col>
- <col width="15%"></col>
- <col width="30%"></col>
- <col width="20%"></col>
- </colgroup>
- <tr >
- <th width="35%">条码</th>
- <th width="15%">数量</th>
- <th width="30%">料号</th>
- <th width="20%">操作</th>
- </tr>
- <tr ng-repeat="item in $data track by $index"
- ng-class="{'active': item.$selected} " >
- <td >{{item.stb_barcode}}</td><!-- filter="{ 'name': 'text' }" -->
- <td >{{item.stb_qty}}</td>
- <td >
- <div class="text-num">
- <span ng-bind="::item.stb_prodcode"></span>
- </div>
- <div class="text-muted text-overflow">
- <span ng-bind="::item.pr_detail"></span>
- </div>
- </td>
- <td >
- <div class="btn-group btn-group-xs">
- <button type="button" class="btn btn-warning" ng-click="deleteWaitSubmitItem(s)">删除</button>
- </div>
- </td>
- </tr>
- </table>
- </div>
|