| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <style>
- .m-b-10 {
- margin-bottom: 10px;
- }
- .m-t-10 {
- margin-top: 10px;
- }
- .row {
- margin-left: 0px;
- margin-right: 0px;
- }
- .text-overflow {
- width:39px;
- word-break:keep-all;/* 不换行 */
- white-space:nowrap;/* 不换行 */
- overflow:hidden;/* 内容超出宽度时隐藏超出部分的内容 */
- text-overflow:ellipsis; /* 当对象内文本溢出时显示省略标记(...) ;需与overflow:hidden;一起使用。*/
- }
- tr strong,tr td {WORD-WRAP:break-word;overflow:hidden;}
- </style>
- <div ng-controller='InMMwaitSubmitCtrl' style="min-height: 400px;">
- <div class="row m-b-10 col-sm-offset-1" >
- <span class="f-16 col-md-3 col-xs-offset-2 col-xs-10">供应商:{{order.PI_TITLE}}</span>
- </div>
- <div class = "m-b-10">
- <a href="#/inMMOperation/{{order.PI_INOUTNO}}" n class=" btn btn-success btn-sm col-md-2 col-sm-offset-1 col-xs-offset-1"> 返回 </a>
- <button type="button" ng-show="order" class="btn btn-success btn-sm col-xs-offset-2" ng-click='deleteAll()' >全部删除</button>
- <button type="button" ng-show="order" class="btn btn-success btn-sm col-xs-offset-2" ng-click='submitGet()' >提交采集</button>
- </div>
- <div style="min-height: 250px;">
- <table ng-show ="grid" ng-table="tableParams"
- class="table table-bordered table-striped col-xs-12 col-sm-6 col-sm-offset-1 ng-table-rowselected">
- <tr >
- <th width="30%">条码/箱号</th>
- <th width="15%">数量</th>
- <th width="20%">料号</th>
- <th width="10%">名称</th>
- <th width="15%">操作</th>
- </tr>
- <tr ng-repeat="s in $data track by $index"
- ng-class="{'active': item.$selected} " >
- <td >{{s.bi_barcode}}</td><!-- filter="{ 'name': 'text' }" -->
- <td >{{s.bi_inqty}}</td>
- <td >{{s.bi_prodcode}}</td>
- <td ><div class="text-overflow">{{s.bi_prodname}}</div></td>
- <td >
- <div class="btn-group btn-group-xs">
- <button type="button" class="btn btn-default" ng-click="deleteWaitSubmitItem(s)">删除</button>
- </div>
- </td>
- </tr>
- </table>
- </div>
- <div class="m-b-10">
- <a ng-href="#/haveSubmitList/{{order.PI_ID}}/inMMWaitSubmit/{{order.PI_INOUTNO}}" class="btn btn-success btn-sm col-md-2 col-sm-offset-1 col-xs-offset-2">已提交列表</a>
- </div>
- </div>
|