|
|
@@ -83,19 +83,20 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="title-div" style="border-bottom: 1px dashed #327ebe;">
|
|
|
- <span class="f14">商品清单</span>
|
|
|
+ <span class="f14">产品清单</span>
|
|
|
</div>
|
|
|
<div class="block">
|
|
|
<table class="block table table-default table-striped table-hover" style=" margin-bottom: 0">
|
|
|
<thead>
|
|
|
<tr class="header">
|
|
|
- <th width="50">行号</th>
|
|
|
- <th width="200">商品</th>
|
|
|
+ <th width="50">序号</th>
|
|
|
+ <th width="200">产品</th>
|
|
|
<th width="80">单价</th>
|
|
|
<th width="80">税率</th>
|
|
|
- <th width="100">数量</th>
|
|
|
+ <th width="110">数量</th>
|
|
|
+ <th width="50">单位</th>
|
|
|
<th width="120">交货日期</th>
|
|
|
- <th width="180">回复状态</th>
|
|
|
+ <th width="120">回复状态</th>
|
|
|
<th width="100">操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
@@ -123,14 +124,17 @@
|
|
|
<td class="text-center" width="80">
|
|
|
<div class="text-muted">{{::item.taxrate || 0}}%</div>
|
|
|
</td>
|
|
|
- <td class="text-center" width="100">
|
|
|
- <div class="text-num" ><span ng-bind="::item.qty"></span><span ng-bind="::item.product.unit"></span></div>
|
|
|
+ <td class="text-center" width="110">
|
|
|
+ <div class="text-num" ><span ng-bind="::item.qty"></span></div>
|
|
|
<div style="margin-top: 20px" ng-if="item.$editing">
|
|
|
<input type="text" ng-model="item.reply.qty" min="0" max="{{item.qty}}"
|
|
|
ng-init="item.reply.qty=item.qty-item.replyQty"
|
|
|
class="form-control input-xs" placeholder="0~{{item.qty-item.replyQty}}">
|
|
|
</div>
|
|
|
</td>
|
|
|
+ <td class="text-center" width="50">
|
|
|
+ <div class="text-num" ><span ng-bind="::item.product.unit"></span></div>
|
|
|
+ </td>
|
|
|
<td class="text-center" width="120">
|
|
|
<div class="text-num"
|
|
|
ng-bind="::item.delivery | date:'yyyy-MM-dd'"></div>
|
|
|
@@ -152,7 +156,7 @@
|
|
|
</span>
|
|
|
</div>
|
|
|
</td>
|
|
|
- <td width="180">
|
|
|
+ <td width="120">
|
|
|
<div ng-show="!item.$editing">
|
|
|
<div ng-if="!item.replyQty" class="text-muted text-center">未回复</div>
|
|
|
<div ng-if="item.replyQty > 0 && item.replyQty < item.qty">
|