seimin 1 year ago
parent
commit
790f9ca307

+ 10 - 6
src/app/views/quilt-washing-search/quilt-washing-search.component.html

@@ -30,16 +30,18 @@
30
         [nzLoading]="loading1">
30
         [nzLoading]="loading1">
31
         <thead>
31
         <thead>
32
           <tr class="thead">
32
           <tr class="thead">
33
-            <th nzWidth="6%">序号</th>
33
+            <th nzWidth="5%">序号</th>
34
             <th nzWidth="8%">关联科室</th>
34
             <th nzWidth="8%">关联科室</th>
35
             <th nzWidth="8%">批次号</th>
35
             <th nzWidth="8%">批次号</th>
36
             <th nzWidth="8%">被服类型</th>
36
             <th nzWidth="8%">被服类型</th>
37
-            <th nzWidth="8%">回收数量</th>
38
-            <th nzWidth="8%">送回数量</th>
39
-            <th nzWidth="8%">是否异常</th>
40
-            <th nzWidth="8%">回收人</th>
37
+            <th nzWidth="6%">回收数量</th>
38
+            <th nzWidth="6%">送回数量</th>
39
+            <th nzWidth="5%">是否异常</th>
40
+            <th nzWidth="6%">回收人</th>
41
+            <th nzWidth="6%">回收交接人</th>
41
             <th nzWidth="11%">回收时间</th>
42
             <th nzWidth="11%">回收时间</th>
42
-            <th nzWidth="8%">送回人</th>
43
+            <th nzWidth="6%">送回人</th>
44
+            <th nzWidth="6%">送回交接人</th>
43
             <th nzWidth="11%">送回时间</th>
45
             <th nzWidth="11%">送回时间</th>
44
             <th nzWidth="8%">状态</th>
46
             <th nzWidth="8%">状态</th>
45
           </tr>
47
           </tr>
@@ -54,8 +56,10 @@
54
             <td>{{ data.sendBackNum }}</td>
56
             <td>{{ data.sendBackNum }}</td>
55
             <td>{{ data.exception == 1 ? '是' : '否' }}</td>
57
             <td>{{ data.exception == 1 ? '是' : '否' }}</td>
56
             <td>{{ data.recyclersIdDTO?.name }}</td>
58
             <td>{{ data.recyclersIdDTO?.name }}</td>
59
+            <td>{{ data.recyclingHandoverDTO?.name }}</td>
57
             <td>{{ data.recyclingTime | date:'yyyy-MM-dd HH:mm' }}</td>
60
             <td>{{ data.recyclingTime | date:'yyyy-MM-dd HH:mm' }}</td>
58
             <td>{{ data.sendBackIdDTO?.name }}</td>
61
             <td>{{ data.sendBackIdDTO?.name }}</td>
62
+            <td>{{ data.sendHandoverDTO?.name }}</td>
59
             <td>{{ data.sendBackTime | date:'yyyy-MM-dd HH:mm' }}</td>
63
             <td>{{ data.sendBackTime | date:'yyyy-MM-dd HH:mm' }}</td>
60
             <td>{{ data.clothesState?.name }}</td>
64
             <td>{{ data.clothesState?.name }}</td>
61
           </tr>
65
           </tr>

+ 1 - 1
src/app/views/washing-batch-view/washing-batch-view.component.ts

@@ -264,7 +264,7 @@ export class WashingBatchViewComponent implements OnInit, AfterViewInit {
264
 
264
 
265
   // 表格数据
265
   // 表格数据
266
   getList() {
266
   getList() {
267
-    if(!this.searchDto.parent && !this.searchDto.child){
267
+    if(!this.searchDto.child){
268
       this.rows = [['id', 'clothesState', ''], [], ['','件数', '费用/元']];
268
       this.rows = [['id', 'clothesState', ''], [], ['','件数', '费用/元']];
269
       this.listOfData = [];
269
       this.listOfData = [];
270
       this.totalData = {};
270
       this.totalData = {};